Suppose in the Report Program I want to pass data to
another Report Program ..how will you do that one?
Answers were Sorted based on User's Feedback
Answer / naveen
SUBMIT is a keyword to call a report from a report.wWith
submit statement all internal sessions are deleted nothing
but the data of the calling program is lodt.when with SUBMIT
AND RETURN the data of the calling program is restored when
we go back.
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / d.goldie
Totally there are two ways::::
1. By using set/get parameter.
2. By using Submit command.
Submit <Programname> using via selection-screen and return.
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / norty_n
U can do this by EXPORT IMPORT concept...
u export all the data which you want may it be an internal
table or just a structure or some data object using the
command...
EXPORT <f1> <f 2> ... TO MEMORY ID <key>. for individual
variables and for exporting internal table the command is
EXPORT <Table name> to MEMORY ID <Key>.
Then, u can import them in some other program by using the
command ...
IMPORT <f1> [TO <g 1>] <f 2> [TO <g 2>] ... FROM MEMORY ID
<key>.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / gvkreddy
the above said i think IT is wrong.
by using the READ and INSERT statement possible
READ stmt: READ REPORT <REPORT NAME> INTO <INTAB>
INSERT stmt: INSERT REPORT <REPORT NAME> FROM <INTAB>
Is This Answer Correct ? | 0 Yes | 5 No |
In material report output,if i click on any material i have to open MM01 with that material in the field how?and from mm01 screen i have to come out what i have to do?
What is a view in sap? : abap data dictionary
What is repository info. Systems? : abap data dictionary
What are the techniques involved in using SAP supplied programs? Do you prefer to write your own programs to load master data? Why?
Difference between transparent tables and pooled tables? : abap hr
What are the various types of the Internal tables used?
Can I create a Transaction code for a custom Table ? If Yes How can I ?
what are various ways of triggering a new page in reports ?
how to create view in bdc..??
what is the difference between select single * and slect upto 1 rows...
How to maintain subtotals n grand totals in smart forms?
What is the syntax for ‘call transaction’?