Application Development and Automation 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: 
Read only

Skip selection screen.

Former Member
0 Likes
1,635

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
978

CALL TRANSACTION 'SP01' AND SKIP FIRST SCREEN

6 REPLIES 6
Read only

Former Member
0 Likes
979

CALL TRANSACTION 'SP01' AND SKIP FIRST SCREEN

Read only

Former Member
0 Likes
978

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.

Read only

Former Member
0 Likes
978

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

Read only

Former Member
0 Likes
978

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.

Read only

varma_narayana
Active Contributor
0 Likes
978

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>

Read only

paruchuri_nagesh
Active Contributor
0 Likes
978

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