‎2007 Apr 24 3:01 PM
I wanted to view structure SOS_OBJLST data. Data tables data could be viewed eg. with transactions SE16, SE17. Is there available these kind of transactions to see similar way structure data?
‎2007 Apr 24 3:08 PM
Hi
Structure won't contain any data .
It contains data at runtime only.
Please specify your requirement clearly.
Regards,
Sreeram
‎2007 Apr 24 3:02 PM
Structures do not hold any data.
They get the data only at run time .
Regards,
Ravi
‎2007 Apr 24 3:03 PM
Hi
Data will not be stored in a structure. The data gets stored in a database table.
Regards
Haritha.
‎2007 Apr 24 3:03 PM
hi,
a structure do not hold any data it contains data only when we run the program.....so we cant see the contents of an structure..
ravi
‎2007 Apr 24 3:03 PM
Hi Kuki,
A structure is some what a snap shot of a data base table... Which means it does not store or contain data by itself.
Hence, you cannot and dont have an option to view the data of a structure.
‎2007 Apr 24 3:04 PM
Hello
A structure is a data structure that may or may not contain data and ONLY at runtime.
You could find a place in the code where your structure is used and set a breakpoint. Then use the debugger to see the data that the program has populated the structure with.
Regards
Greg Kern
‎2007 Apr 24 3:08 PM
Hi
Structure won't contain any data .
It contains data at runtime only.
Please specify your requirement clearly.
Regards,
Sreeram
‎2007 Apr 26 8:03 AM
Thank you for your answers!
After all, I managed to get information via the GUI.
‎2008 Mar 31 12:24 PM
Hi Kuki,
that is nice to hear from you tat u managed to get the data from the gui actually i'm goin throught the same kind of problem, gettin the structure name but not the table name,.. can u help me in this matter.
Cheers
Mayank
‎2013 Nov 27 5:53 AM
hello MAYANK.
i ll help you out. follow this
let me tell you the basic diffrence between table and structure
Table : stores value.
structure : doesnot store value. it is just a skeleton for the table.
to identify any field in structure from which table it is picking.
go to se84 tcode choose ABAP DICTIONARY->CHOOSE FIELDS->CHOOSE STRUCTURE FIELDS---> PUT YOUR FIELD NAMES -->EXECUTE
you will get all the tables from which structure is made of.
thanku