Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

IMPORT FROM MEMORY from a report painter.

Former Member
0 Kudos

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.

2 REPLIES 2

Former Member
0 Kudos

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.

0 Kudos

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