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

table maintenance generator

Former Member
0 Likes
575

Hi,

I am calling SM30 using CALL TRANSACTION in my ABAP pgm. Its working fine.

In the maintenance screen of SM30 when user says "/n" in the command line (transaction field), system generates an error message as "The transaction was terminated by the user" in a pop up window with pushbotton option of EXIT. When EXIT is selected, system takes the control to the selection screen of the ABAP pgm (from which SM30 was called). Can this error message (pop up window) be avoided and on entering "/n", could system directly brings the control to the selection screen of ABAP pgm?

Thanks.

Pankaj.

5 REPLIES 5
Read only

Former Member
0 Likes
550

Hi,

Use call transaction .... and return.

Regds,

Vinsa.R

Read only

0 Likes
550

Hi,

Thanks.

Could you please give the sample code of 'AND RETURN' with CALL TRANSACTION?

Regards,

Pankaj.

Read only

0 Likes
550

Hi,

you can write CALL Transaction 'Tcode' and return

Read only

0 Likes
550

You can use as justin said, call transaction 'SM30'. If user enters '/n' in command line, if it gives an error, check the transaction 'su53', is there any authorization issues

Read only

Former Member
0 Likes
550

Hi,

First,create a Transaction Code for the Table maintenance screen generated.

Now use : CALL Transaction 'Tcode' and return

It works perfectly