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

radiobutton with tcode sm30

Former Member
0 Likes
1,793

how to connect a radiobutton to the sm30 tcode by skipping the first page, or by going directly into the table in which to insert the data?

1 ACCEPTED SOLUTION
Read only

FredericGirod
Active Contributor
1,654

The question is not very clear.

You could by pass the selection screen by creating a transaction code & passing value

https://wiki.scn.sap.com/wiki/display/Snippets/Create+Transaction+Code+for+a+View

6 REPLIES 6
Read only

FredericGirod
Active Contributor
1,655

The question is not very clear.

You could by pass the selection screen by creating a transaction code & passing value

https://wiki.scn.sap.com/wiki/display/Snippets/Create+Transaction+Code+for+a+View

Read only

0 Likes
1,654

I don't have to create a transaction, when a radiobutton is pressed the transaction sm30 must be called (somehow passing the table to be used)

Read only

1,654

Radiobutton is a choice between several possibility. What are the other possibilities ?

If you need to manage an action, you have to create a program that will call the SM30 transaction. You could use the statement CALL TRANSACTION ... USING BDCDATA_TAB .... (you will find a lot of example in the net)

Read only

0 Likes
1,654

I have seen the "call transaction sm30 and skip the first screen 'mode but how do I pass the DB to use so that it automatically puts the name of the table and skips the first screen of the sm30 transaction

Read only

0 Likes
1,654

You create a transaction with parameters and provide Transaction = SM30.

Check the 'Skip initial screen' option

In the default values table at the bottom provide the table name and the enable update as below

VIEWNAME <your table name>

UPDATE X

Read only

0 Likes
1,654