‎2007 Aug 24 12:19 PM
Hi i have a report in wich i have a selection-screen.
I need to create a transaction for this report, and i need this transaction to skip this selection-screen and execute the report.
Is there any way to do that??
Thanks.
‎2007 Aug 24 12:22 PM
‎2007 Aug 24 12:22 PM
‎2007 Aug 24 12:26 PM
Hi,
Use CALL TRANSACTION 'SP01' AND SKIP FIRST SCREEN code but if this screen have compulsory field at that time u have to pass value of this by set parameter id and get in that by get paramenter id.
Rewards points if it is useful.
‎2007 Aug 24 12:28 PM
Hi,
If you have desinged a selection screen in your report and created a Tcode for that, you cant skip the selection screen for that..
But you can do this way.
First create a report with a selection , make a Tcode for that using SE93. eg 'ZTCODE'
Now create a another report call that Tcode "ZTCODE'
Write this
CALL transaction 'TCODE' and skip first screen. in report 2.
Prepare a Transaction code for this report2.
rewards if useful,
regards,
nazeer
‎2007 Aug 24 12:30 PM
Hi,
try this:
REPORT Z_TEST1 MESSAGE-ID ZZ.
*
tables: mara.
parameters: P_matnr like mara-matnr.
*
select * from mara up to 10 rows.
write: / p_matnr, mara-matnr.
endselect.
*
REPORT Z_TEST2 MESSAGE-ID ZZ.
submit Z_TEST1 and return.
‎2007 Aug 24 12:35 PM
Hii.. This is one solution try this..
Report ZZZZZ.
SELECTION-SCREEN : BEGIN OF SCREEN 10.
PARAMETERS: p_vbeln TYPE vbak-vbeln,
p_posnr TYPE vbap-posnr.
SELECTION-SCREEN : END OF SCREEN 10.
START-OF-SELECTION.
IF SY-TCODE NE 'ZRE1'.
CALL SELECTION-SCREEN 10.
ENDIF.
WRITE:/ 'HI LIST OUTPUT' .
Create a Tcode in SE93 with Name ZRE1 type REPORT TRANSACTION.
It may work for u.
<b>reward if Helpful</b>
<b></b>
‎2007 Aug 24 12:41 PM
if u want suppress selection screen
use submit key word
submit "tcode' via selection screen.
If this addition is specified, the selection screen is displayed on the screen. Otherwise, background selection screen processing takes place. In background selection screen processing, the selection screen events are triggered without the selection screen being displayed
hope this will resolve u r problem
regards
Nagesh.Paruchuri