‎2020 Feb 18 1:56 PM
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?
‎2020 Feb 18 2:03 PM
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
‎2020 Feb 18 2:03 PM
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
‎2020 Feb 18 2:09 PM
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)
‎2020 Feb 18 2:11 PM
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)
‎2020 Feb 18 2:14 PM
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
‎2020 Feb 18 2:53 PM
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
‎2020 Feb 18 3:08 PM
... USING ...
It is exactly like a batch input
https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/abapcall_transaction.htm