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: 

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.

1 REPLY 1

former_member611006
Active Participant
0 Kudos

Hi all,

nobody ?

Best Regards,

David Cerati