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

Structure

Former Member
0 Likes
1,229

Hi

All

I want to see what values my structure has..

to view the fileds in Structure we use TCODE- SE16.

is there any TCODE with which we can see the values of the filed.

Thanks

Lokesh Tibbani

9 REPLIES 9
Read only

Former Member
0 Likes
1,192

Hi Lokesh,

SE11 also there . select the table and give the name of the structure and click on display.

Sunil:)

Read only

Former Member
0 Likes
1,192

Hi,

structures doesn't hold any value......

Read only

Former Member
0 Likes
1,192

hi,

we cant see values of the structures in SAP

instead we can see the values for DB tables.

through SE16.

apart from this we can use SE11/ SE12 to see the values but after executing the SE11/SE12, give the table name and then we have to select browser icon on the application toolbar to see the values for DB tables

<i><b>Reqward points if useful</b></i>

Read only

Former Member
0 Likes
1,192

Hi Lokesh

Structures never hold values so you cnt see values in that structure. But if you want to know the values in each individual field ..You have to check in which table that field is used and then can view values of fields in those particular tables.

Try using following

se84-> abapdictionary-> fields->table fields(structure fields)->give your field name and execute

Read only

Former Member
0 Likes
1,192

Hi

structure does't capture any values

if you want to see the fileds list then you can go for SE11

in SE16 the structure won't give or won't show ant values

by useing structures you can see the fields don't see the values

reward if usefull

Read only

Former Member
0 Likes
1,192

Hi All

Thanks for ur Ans.

is there any way so that we can find a name of a TABLE of which that structure is

updating the fileds.

Thanks

Lokesh Tibbani

Read only

0 Likes
1,192

Hi Lokesh

A structure retrieve data from different different tables . What I think is you can check in which tables these structure fields are used...and the way to do that is SE84:

From these tables field values can be checked.

Hope it will help you

Read only

0 Likes
1,192

HI

structure is collection of fields from different tables or same tables,it can store single record at a time but not directly in R/3 ,if u want u can have the structure of that structure and then u can use it in program.

for ex

work area we can say as structure it can hold single record at a time.

i think it is clear

if any questions on this welcome

Read only

KN-Nampoothiry
Active Participant
0 Likes
1,192

Hi Lokesh,

All posts above make clear that a structure is just to hold the values at runtime.Its not a database table.

To find out the tables gettin updated :: One way out could be to go to SE11. Give structure name in the Data Type field and then click on the where used list. and select Programs.

See the code ( in editor or debugger...depends ) where the structure values is used to update.

<b>One info :</b>

Structures usually are used to create temp variables. So you can look for variables starting with X like

KOMV is a structure. But in programs varaible name wat you'll find is XKOMV declared as type KOMV.

Reward points if useful.