‎2008 Oct 28 8:03 PM
Hi Experts,
I need to call a standard report "RVSCD100" in my ZRFC program.
In that report there is no Export to memory Id command is there .. so how can i get the output in my t_data structure of my RFC?
valuable inputs will be very helpful
Giri
‎2008 Oct 28 8:06 PM
Hi,
Check with SUBMIT stmt.
SUBMIT REPORT01
VIA SELECTION-SCREEN
USING SELECTION-SET 'VARIANT1'
USING SELECTION-SETS OF PROGRAM 'REPORT00'
AND RETURN.
‎2008 Oct 28 8:06 PM
if you know you wouldnt get the data back from the report then how you decided on using that report in RFC?
‎2008 Oct 28 8:13 PM
Hi MxG,
I need to pass the data of that report to Portal thru RFC... i know i cant pass...but there may be some other method from all of you guys with tons of experience.
Giri
‎2008 Oct 28 8:16 PM
Only way I can think of is to use enhancement-point in the reprot to do what you want. go thru the code and see if you can get the data in some internal table, then export that in the enhacement
‎2008 Oct 29 12:30 AM
you can export the list to memory addition when you are using submit, and then read the list from memory using the function module LIST_FROM_MEMORY, then convert the listobject to ASCI format LIST_TO_ASCI. the ASCI format will hold the data. you can analyze the data, it will be the same as output, so you have to code and get the data from it.
‎2008 Dec 22 8:32 PM
Vijay,
how cna i export the list to memory thru SUBMIT statement?
Can you provide some more information on it?
Thanks
Giri
‎2008 Dec 23 3:17 AM
submit Ztest_program and return
exporting list to memory.
CALL FUNCTION 'LIST_FROM_MEMORY'
TABLES
LISTOBJECT = itab_data
EXCEPTIONS
NOT_FOUND = 1
OTHERS = 2
.
Best regards,
Prashant