To get names of the TABLES from T.Code in SAP--------URGENT
Hello,
I wanted to know can i get the information of a transaction code accessing which particular tables.
How do i get the names of the tables.
( For e.g T.Code SM51 accesses which tables, how do i come to know )
Hello Bayya,
after execute transaction, go to System --> status here you will get program name , using this program you will find which tables used to get data by TCode.
Enter into debug with /HS and sett he breakpoint at SELECT and IMPORT. or you can try a trace or runtime analysis in SE30.
But in some cases like SM51 some of the data comes from runtime variable and there is no table.
I think a trace is the best option, but as John Jarboe said most data in sm51, sm50 and others monitoring transactions come from runtime variables, not from tables, there are a lot of FM's that tou can use in abap programs to get the information, for example you can use FM RZL_SYSTEMWIDE_WPINFO to get information of sm50... if you know nothing of abap ask for help to your abappers.
Good Luck
Hi Rohit,
Try using tcode SE49, which might help. If any tcode is using runtime variables, then obviously you will not get that info.
Hope this helps.