‎2011 Feb 15 10:34 AM
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.
‎2011 Feb 15 10:44 AM
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
‎2011 Feb 15 11:42 AM
Hi ,
Use function module RS_PARAMETER_TRANSACTION_GET
pass
P_PARAMETERS-FIELD = 'VIEWNAME'
P_PARAMETERS-VALUE = "Z table name"
‎2011 Feb 15 12:17 PM
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.
‎2011 Feb 15 12:22 PM
Hi,
It has a importing parameter name P_PARAMETERS which is referred to a table type S_PARAM.
This function works fine.
‎2011 Feb 16 9:38 AM
Hi Keshav,
Thanks for the solution. It works out. Have rewarded you the points.