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

How to view structure data?

former_member212731
Participant
0 Likes
29,617

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?

1 ACCEPTED SOLUTION
Read only

sreeramkumar_madisetty
Active Contributor
11,337

Hi

Structure won't contain any data .

It contains data at runtime only.

Please specify your requirement clearly.

Regards,

Sreeram

9 REPLIES 9
Read only

Former Member
0 Likes
11,337

Structures do not hold any data.

They get the data only at run time .

Regards,

Ravi

Read only

Former Member
0 Likes
11,337

Hi

Data will not be stored in a structure. The data gets stored in a database table.

Regards

Haritha.

Read only

Former Member
0 Likes
11,337

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

Read only

Former Member
0 Likes
11,337

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.

Read only

Former Member
0 Likes
11,337

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

Read only

sreeramkumar_madisetty
Active Contributor
11,338

Hi

Structure won't contain any data .

It contains data at runtime only.

Please specify your requirement clearly.

Regards,

Sreeram

Read only

0 Likes
11,337

Thank you for your answers!

After all, I managed to get information via the GUI.

Read only

0 Likes
11,337

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

Read only

11,337

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