Application Development 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: 

set parameter is working but can not able to skip first screen US01

pashasapcha
Participant
0 Kudos
344

HI GURUS,

I have requirement where I have generated report program. I am using handle_hotspot_click method . When I clicked on the bname I could

able to go to SU01 transaction but it is not skipping the first screen.

kindly please help me with skipping the first screen.

It should directly take me to display page (F7).

I want this page to be displayed upon clicking on row of alv grid.

1 ACCEPTED SOLUTION

raymond_giuseppi
Active Contributor
262

Basically the initial dynpro of SU01 is defined with its own dynpro number entered as the static next dynpro, and the AND SKIP FIRST SCREEN option is not available (next screen = first screen)

So create a small BDC and call the transaction with this BDC and the options required to continue transaction execution after end of the DATA (sample)

Alternative: Use FM SUID_IDENTITY_MAINT (or SUSR_ZBV_CALL_SU01 which wraps also authorization check)

4 REPLIES 4

Sandra_Rossi
Active Contributor
262

SKIP FIRST SCREEN is in fact misleading name because it's only simulating the ENTER key, which does not skip the first screen in the case of SU01.

fprokopiuk
Active Participant
262

You can try to use CALL TRANSACTION with usage of BDC. Documentation for it is here. You can use SHDB transaction to record steps and prepare proper code for the call.

raymond_giuseppi
Active Contributor
263

Basically the initial dynpro of SU01 is defined with its own dynpro number entered as the static next dynpro, and the AND SKIP FIRST SCREEN option is not available (next screen = first screen)

So create a small BDC and call the transaction with this BDC and the options required to continue transaction execution after end of the DATA (sample)

Alternative: Use FM SUID_IDENTITY_MAINT (or SUSR_ZBV_CALL_SU01 which wraps also authorization check)

0 Kudos
262

SUID_IDENTITY_MAINT is working for me.