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: 

Skip some screens when we run the Standard Tcode

vamsilakshman_pendurti
Active Participant
0 Kudos

Hi Experts,

I need to perform some actions in background and in one shot my required Screen should be come if i run the standard Tcode CU50.

If i execute the Tcode CU50 One screen will display

There i need to give one material in material field...

Then i press F8(Configuration) button..one screen will be come .....

Then i press CTRL+F9(RESULT) button ...other screen will be come..

Then there we can see the push button with the name LIST ...click on that button....One LIST will be displayed....

How to skip all the above highlighted actions and i need to get after pressing that list button

it will display one LIST for that Material ...

That List  i need in one shot when i give Tcode CU50....

Thanks,

Vamsi.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Vamsi

Have you looked at using an LSMW Screen Recording?

Could that solve your requirement?

Regards

Arden

2 REPLIES 2

Former Member
0 Kudos

Hi Vamsi

Have you looked at using an LSMW Screen Recording?

Could that solve your requirement?

Regards

Arden

raymond_giuseppi
Active Contributor
0 Kudos

Build a small wrapper report with a selection-screen similar to the transaction that will execute the transaction with a small BDC, and don't close the transaction at BDC end.


               ctu_params-dismode = 'E'.
               ctu_params-nobinpt = abap_true.
               ctu_params-nobiend = abap_true.
               call transaction 'XXXX' using bdcdata options from ctu_params.

Regards,

Raymond