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: 

call transaction with select options

Former Member
0 Kudos

Hi,

I need to call a transaction which has select-options and a checkbox on the selection screen.

When I call the transaction how can I set the values for the select options field and the checkbox.

The transaction to be called is a Ztcode. Can it be done using set parameter id. If yes, then how?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

use submit statement

submit <report name& not tcode> via selection screen

check the syntax u can also pass values for parameters and select options.

5 REPLIES 5

Former Member
0 Kudos

Use submit instead of call transaction.

post the problem if it comes

Former Member
0 Kudos

use submit statement

submit <report name& not tcode> via selection screen

check the syntax u can also pass values for parameters and select options.

Former Member
0 Kudos

Hi Harmeet Singh,

write code write a program in se38

Tables: spfli.

Select-options s_carrid for spfli-carrid.

parameters:

parameters check as checkbox USER-COMMAND fcode.

activate it and now go to se93

1. Give tcode as [Ztest] what ever you want

2. give short test

3. select radiobytton program and selection screen ( Report transaction )

4. press enter

5. give your program name ( ycl_test is my program name )

6. screen number is 1000

7. save it

8. use the transaction

Plzz Reward if it is usrful,

Mahi.

Former Member
0 Kudos

Hi Harmeet Singh,

write code write a program in se38

Tables: spfli.

Select-options s_carrid for spfli-carrid.

parameters:

parameters check as checkbox USER-COMMAND fcode.

activate it and now go to se93

1. Give tcode as [Ztest] what ever you want

2. give short test

3. select radiobytton program and selection screen ( Report transaction )

4. press enter

5. give your program name ( ycl_test is my program name )

6. screen number is 1000

7. save it

8. use the transaction

Plzz Reward if it is usrful,

Mahi.

Former Member
0 Kudos

Thanks to all..