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

Finding Tcode with the table name

Former Member
0 Likes
1,481

Hi,

Is it possible to find Tcode with the given table name?

I have created a tcode for my table via table maintenance. Likewise for other tables (not created by me), I need to find out the respective Tcode, which will allow maintenance.

Thanks in Advance.

5 REPLIES 5
Read only

Former Member
0 Likes
765

Hello,

Search table TSTC with TCODE = Z* and PGMNA = SPACE. This will fetch all the custom transactions maintained for table maintenance.

Hope this helps

Regards

Shiva

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
765

Hi ,

Use function module RS_PARAMETER_TRANSACTION_GET

pass

P_PARAMETERS-FIELD = 'VIEWNAME'

P_PARAMETERS-VALUE = "Z table name"

Read only

0 Likes
765

Hi Keshav,

The FM "RS_PARAMETER_TRANSACTION_GET" doesn't have the import parameters you have specified. Its not working out.

Hope I am clear with my query. I need to find the Tcode for a given table with that table name as input.

Thanks.

Read only

0 Likes
765

Hi,

It has a importing parameter name P_PARAMETERS which is referred to a table type S_PARAM.

This function works fine.

Read only

0 Likes
765

Hi Keshav,

Thanks for the solution. It works out. Have rewarded you the points.