Structure to Tables
Hi all,
Just a basic question. I know structures are runtime objects, but when structure fields are used as long text input fields, then after the transaction is saved, how would I find the data in the data dictionary. Is there any way to find out where the structure field sends the data to (which table in the ddic).
Example: I need to know where the data in the long text field (structure AFRUD and field LTXA1) sends the data in the data dictionary.
Thanks.
Sanj.
Hi all,
Example: I need to know where the data in the long text field (structure AFRUD and field LTXA1) sends the data in the data dictionary.
Option 1 : Find table with similar name and/or similar description and check the fields ( in your example its table AFRU and field LXTA1). You can also do a Where-used list on the data element of the field.
Option 2: Set the SQL trace on, make a change to the field with the appropriate transaction, and check the update statement in the SQL Trace. So you'll see all the updated tables and can check in wich table/field your new value is stored.
CaKe
Search the forum next time. This question is asked about once a week...