2010 Sep 09 12:53 PM
HI,
i am using the below statement to send the output to memory.
even i use the return statement the program is going to output of the report.
it is not coming back automatically from report output.
can any one correct it if i am wrong.
SUBMIT RCNPE000
USING SELECTION-SET 'TEST_K'
USING SELECTION-SETS OF PROGRAM 'RCNPE000'
EXPORTING LIST TO MEMORY AND RETURN.
Thanks,
khasimsa.
2010 Sep 09 2:05 PM
HI,
if you are using the list than do the following changes.
SUBMIT RCNPE000 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.
if your using selection screen
SUBMIT RCNPE000 USING SELECTION-SCREEN '1100'
AND RETURN.
Thanks and Regards
Anna
HI,
if you are using the list than do the following changes.
SUBMIT RCNPE000 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.
if your using selection screen
SUBMIT RCNPE000 USING SELECTION-SCREEN '1100'
AND RETURN.
Thanks and Regards
Anna
2010 Sep 09 1:13 PM
Hi,
Are you using the function module LIST_FROM_MEMORY to get the return ??
2010 Sep 09 2:05 PM
HI,
if you are using the list than do the following changes.
SUBMIT RCNPE000 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.
if your using selection screen
SUBMIT RCNPE000 USING SELECTION-SCREEN '1100'
AND RETURN.
Thanks and Regards
Anna
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |