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

Need Table name for the structure

Former Member
0 Likes
2,159

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,604

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.

6 REPLIES 6
Read only

Former Member
0 Likes
1,605

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.

Read only

Former Member
0 Likes
1,604

Hi Vinoth,

Check FM :- RA03W_FUELLEN

Regards,

Darshan Mulmule

Read only

0 Likes
1,604

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

Read only

0 Likes
1,604

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.

Read only

kiran_k8
Active Contributor
0 Likes
1,604

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.

Read only

Former Member
0 Likes
1,604

thanks