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: 

Hi, Is there a way to export the output of a transaction to Memeory .

Former Member
0 Kudos

Dear All , Here is the question

SUBMIT ws_monitor_outb_del_free

WITH it_vkorg = r_vkorg

WITH it_vtweg IN svtweg

WITH it_spart IN sspart

WITH it_kunag = kna1-kunnr SIGN 'I'

WITH it_wbstk NE 'C'

EXPORTING LIST TO MEMORY

AND RETURN.

This is possible and fine ?

Is this possible Similarly

SET PARAMETER ID 'VAG' FIELD kna1-kunnr.

SET PARAMETER ID 'KUN' FIELD space.

SET PARAMETER ID 'MAT' FIELD space.

SET PARAMETER ID '0BT' FIELD 'X '.

SET PARAMETER ID 'VON' FIELD space.

SET PARAMETER ID 'BIS_VA05' FIELD sy-datum.

SET PARAMETER ID 'VC2' FIELD 'X'.

CALL TRANSACTION 'VA05' AND SKIP FIRST SCREEN [ <b>EXPORTING LIST TO MEMEORY</b> ].

Hope its Clear i want the output to be saved in memory not to be displayed.

Note : you cannot use the program triggered by VA05 and submit it as i have done in the first case because it is not a executable prog.

With Best Regards.

Md Iqbal

1 REPLY 1

Former Member
0 Kudos

use this

in the calling program

declare

DATA : listobject LIKE abaplist OCCURS 0 WITH HEADER LINE.

after submit use this

IMPORT listobject FROM MEMORY ID '%_LIST'.

to fetch the data to memory.

regards,

vijay