2006 Sep 19 5:48 AM
Hi all,
I am using the submit statement in my program to execute a report. that report name is stored in a variable because it is an input field. but when the processing comes to submit statement ,the program is terminated? help please urgent.
my code:
data progname(30) TYPE c.
SUBMIT progname.
Regards,
Sathya
2006 Sep 19 5:56 AM
HI,
try this now.
data progname(30) TYPE c.
<b>SUBMIT (progname).</b>
Regards,
Hi all,
I am using the submit statement in my program to execute a report. that report name is stored in a variable because it is an input field. but when the processing comes to submit statement ,the program is terminated? help please urgent.
my code:
data progname(30) TYPE c.
SUBMIT progname.
Regards,
Sathya
2006 Sep 19 5:54 AM
hi,
try this.
data progname(30) TYPE c.
progname = 'zreport'.
*Submit report via its own selection screen
<b> SUBMIT progname VIA SELECTION-SCREEN.</b>
OR
*Submit report and return to current program afterwards
<b>SUBMIT progname AND RETURN.</b>
rgds
anver
if hlped mark points
Message was edited by: Anversha s
2006 Sep 19 5:56 AM
HI,
try this now.
data progname(30) TYPE c.
<b>SUBMIT (progname).</b>
Regards,
2006 Sep 19 6:35 AM
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |