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

skipping the selection screen

Former Member
0 Likes
668

Moved to correct forum by moderator. Please take care to post in the right forum

Hi Gurus,

I have a situation. I have created a zprogram and want to use it in a std txn LI04, and want to run it as individually as well.

But when it is calling from the std txn it should skip the selection screen and get the values of teh parameters

as teh same in LI04.

Please Advice.

Thanks

Guarav Kapse.

Edited by: Matt on Feb 3, 2009 9:54 AM

6 REPLIES 6
Read only

Former Member
0 Likes
641

Hi,

Use the submit statement to run the zreport and in zreport using the EXPORT statement export the varaibles which are required and IMPORT them in the transaction.

Read only

ThomasZloch
Active Contributor
0 Likes
641

Create a transaction for your report and check the ABAP online help for CALL TRANSACTION.

Thomas

Read only

matt
Active Contributor
0 Likes
641

Please take care to post in the right forum

Read only

Former Member
0 Likes
641

Hi,

You can use parameter id and write


call transaction 'XXX' and skip first screen.

Regards

sandipan

Read only

Former Member
0 Likes
641

Hi,

To call your custom code in the standard tcode, refer this link, they hv done similar to your requirements,

http://knguyentu.com/wordpress/2008/01/modifying-tarif-feature/

Read only

Former Member
0 Likes
641

Hi,

Do you have any exit from which u'll call your Z prorgram. If yes, you can use the following statements

set parameter id ' id ' field <field name>.

submit <your Z program> and return.

In your zprogram write:

get parameter id ' id ' field <field name>.

It will work.

cheers

gaurav