2008 Dec 29 2:49 AM
hello guru's,
I am using the tcode AW01N , In that i need to fetch a field that field contanis structure named
AW01_DEP_PAR. My field name is RSTNDJ,RSTNDP . can u tell me from which table its stored .
AW01_DEP_PAR-RSTNDJ, AW01_DEP_PAR-RSTNDP.
Regards
vinoth.v
2008 Dec 29 3:24 AM
Hi,
There is no straight rule to know this......Debugg the Code or you can do the where used list on the Structure and have some guess...
Normally SAP pulls records from couple of tables and fills a strucutre via a FM.
Put a Watchpoint on your structure and observe the code/FM where the values are getting populated.
2008 Dec 29 3:24 AM
Hi,
There is no straight rule to know this......Debugg the Code or you can do the where used list on the Structure and have some guess...
Normally SAP pulls records from couple of tables and fills a strucutre via a FM.
Put a Watchpoint on your structure and observe the code/FM where the values are getting populated.
2008 Dec 29 3:36 AM
2008 Dec 29 4:14 AM
hi ,
the F.M also dont have the field RSTNDP & RSTNDJ . can tell me from which table this field value is stored or guide me find the table name.
regards
vinoth.v
2008 Dec 29 5:17 AM
hi,
if you check the program SAPMA03W you can get those details.
the value is hard coded as 0 or 12 in some cases and for the rest
it is getting captured from T009 table and ANZBP field.
2008 Dec 29 4:28 AM
Vinoth,
We can find it using ST05.
Activate the trace in ST05
Run the transaction in which you want to find the table for the corresponding structure.
After completing the entire transaction Process go to ST05 decactivate the trace and display the trace.
Now in the menu bar go to Trace List>>Summarise trace by tables or press Ctrl+F8.This you will get to know all the tables that are getting updated when a particular transaction is Executed.If you explore it then you will be able to find out the corresponding table for a structure.Hope this may give you some lead.
K.Kiran.
2010 Jun 14 4:54 AM