2007 Oct 31 3:46 PM
Hi Experts,
I have developed a custom program which is working fine in Developement and Quality but not working in production.
FYI.
Submit the report ROIADELSTA and export output list to memory
SUBMIT roiadelsta WITH SELECTION-TABLE
t_select_tab EXPORTING LIST TO MEMORY
AND RETURN.
The control is not returning to main program.
is there any display setting parametes to be set.
Please help me to resolve this isue.
Regards,
Nava
*
Hi Experts,
I have developed a custom program which is working fine in Developement and Quality but not working in production.
FYI.
Submit the report ROIADELSTA and export output list to memory
SUBMIT roiadelsta WITH SELECTION-TABLE
t_select_tab EXPORTING LIST TO MEMORY
AND RETURN.
The control is not returning to main program.
is there any display setting parametes to be set.
Please help me to resolve this isue.
Regards,
Nava
*
2007 Oct 31 3:50 PM
Hi,
There could be an authorization issue. just check out in debugging on why it is failing.
Satish
2007 Oct 31 3:56 PM
The program is displaying the output but not exporting to the list and not returning to main program. It should not display the output in the screen.
2007 Oct 31 5:33 PM
2007 Nov 02 10:51 AM
2007 Nov 02 1:23 PM
I don't think ALV grid programs work well when submitted exporting list to memory. Try submitting it directly instead.
Rob
2007 Nov 02 12:27 PM
You need to do this:
DATA: wa_rspar TYPE rsparams.
DATA: t_rspar LIKE TABLE OF wa_rspar.
CLEAR wa_rspar.
wa_rspar-selname = 'P_IDOC'.
wa_rspar-kind = 'P'.
wa_rspar-sign = 'I'.
wa_rspar-option = 'EQ'.
wa_rspar-low = wa_docnum-docnum.
APPEND wa_rspar TO t_rspar.
SUBMIT rbdagaie WITH SELECTION-TABLE t_rspar AND RETURN
EXPORTING LIST TO MEMORY.
Please reward points if helpful.
2007 Nov 06 1:00 PM
i am happy with workaround by pressing the Print Preview button.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |