2010 Mar 01 10:09 AM
Hi experts.
I have a report painter that calls an ABAP program.
In the abap code, am I able to get the data shown on the report painter? Or the selections performed?
I know that this might be with some kind of IMPORT FROM MEMORY but i cannot find any documentation about that. Cone someone please help me with that?
Thank.you very much,
Artur.
2010 Mar 01 10:46 AM
Finally i found it myself, i share this with all of you:
CONSTANTS:
con_sel_data_mem_id(32) VALUE 'COMMUNICATION-HANDLER-SELDATA'.
DATA: it_sel LIKE TABLE OF rstisel WITH HEADER LINE.
DATA: it_fields LIKE TABLE OF rstifields WITH HEADER LINE.
IMPORT it_sel it_fields FROM MEMORY ID con_sel_data_mem_id.
2024 May 08 9:01 AM
Hi,
I am looking for a similar kind of functionality, Could you please help to identify from where i can get the related memory id.
Thanks