what is diffrence subroutine in report and subroutine in
script.....
Answers were Sorted based on User's Feedback
Answer / arjun manglekar
1. in SCRIPT we nedd to give name of the Include Program in
the PERFORM statement.
e,g. PERFORM F_GET_ADDRESS IN PROGRAM ZRETURNORDER.
....
ENDPERFORM
In report program we nedd not give any program name
e.g. PERFORM f_get_data
2.In script we need to write command PERFORM....ENDPERFORM
In report program we dont use PERFORM...ENDPERFORM but only
the PERFORM 'name_of_form'.
3.In script the PERORM ...ENDPERFORM will be in window of
script (SE71)and there is separate INCLUDE prorame(SE38)
In report we can write PERFORM and FORM in the same program
(SE38)
kindly let me know if iam wrong
Is This Answer Correct ? | 20 Yes | 0 No |
Answer / sai
In reports, we use subroutines as a modularization
Technique.
In scripts, we use Subroutine pool programs to add extra
functionality to the standard Driver program.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / vineet kumar
HI SAPGURU,
Basically in script, when you write a sub routine it means you make a include program so you can use this sub routine in another program also.
but in report your can not use this sub routine in any other program
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / us
in script we need to call subrotine by using command and
then call that subroutine in print program
like /: perform call_us.
Is This Answer Correct ? | 1 Yes | 2 No |
What are the three components of a work process?
What is the basic difference internal tables and database tables? : abap data dictionary
While doing bdc exp va01 transaction sometime in the item level data shows only 4 items and other times it will show 6 line items, how will you maintain this kind of screen resolutions scenerio? : abap bdc
what is session and what is the use of that one?
Difference between Drill Down and Interactive Reports, Events triggered in both reports
Explain what is sap script? What is the purpose of sap script?
How to debug an Idoc at runtime?
What is the relationship existing between the various data elements in data dictionary? : abap data dictionary
What is the process of project flow n sap?In context to project flow what are the role of an abapper?
What is a 'z' report?
What are conversion routines? : abap data dictionary
write a program for creation of customer quotation using BAPI 'BAPI_QUOTATION_CREATEFROMDATA'.