‎2006 Aug 29 2:51 PM
Hi,
How can we get the table name and the fields from a structure.
for eg:
vbstt-gbsta_bez is a field in a structure
vbstt is the structure and gbsta_bez is a filed in the structure.
Need to know the method for finding the table&field from a structure
‎2006 Aug 29 2:58 PM
Well, this is sometimes not an easy task. You can start by doing a SQL trace using ST05. You can then see all of the tables that are hit in a tranactions. Yes, this will be cumbersome. Next, you can try debugging the program, to find how the structure is filled at runtime.
You can also do a where used on the structure, and maybe it is used in a function module somewhere.
Regards
Rich HEilman
‎2006 Aug 29 3:00 PM
‎2006 Aug 29 3:03 PM
select from DD03L where tabname = VBSTT
Check SE11->VBSTT
View Entries and enter in field tabname VBSTT
-> you'll see the fields.