cancel
Showing results for 
Search instead for 
Did you mean: 

Report SDLIPL02: Scheduling Agreement: Reorg. of Cum. Delivered/Issued Qty

former_member611006
Active Participant
0 Kudos

Hi Experts,

I'm trying to save the list generated by the Report SDLIPL02 into the memory. It doen't work...

Here is the code source.:

REPORT  ztest.

rspar_line-selname = 'VGBEL'.
rspar_line-kind    = 'S'.
rspar_line-sign    = 'I'.
rspar_line-option  = 'EQ'.
rspar_line-low     = '9999933960'.
APPEND rspar_line TO rspar_tab.

SUBMIT sdlipl02 WITH SELECTION-TABLE rspar_tab
                WITH tracs EQ 'X'
                EXPORTING LIST TO MEMORY
                AND RETURN.

CALL FUNCTION 'LIST_FROM_MEMORY'
  TABLES
    listobject = list_tab
  EXCEPTIONS
    not_found  = 1
    OTHERS     = 2.

IF sy-subrc = 0.
  CALL FUNCTION 'WRITE_LIST'
    TABLES
      listobject = list_tab.
ENDIF.

Any idea?

With regards,

David Cerati.

Accepted Solutions (0)

Answers (1)

Answers (1)

Lakshmipathi
Active Contributor
0 Kudos

This should have been posted in ABAP forum where you can get suitable suggestions

thanks

G. Lakshmipathi