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
638

Hi all

How to select data from S021z or IOITEM am using the general select statememnt but it is giving an error that ABAP dictionary not defined.Please Help

Vijay

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
614

Hi,

Both s021z & IOITEM are structures.

Data will not be stored in structures as like data base tables.

Mainly these we use to store data at program runtime only.Stnd programs use these structures.

You can use other related tables to get data you wanted.

Exactly what data you want to fetch for your reqt?

Regds

Sivaparvathi

Please reward points if helpful...

3 REPLIES 3
Read only

Former Member
0 Likes
614

Hi

S021Z is a structure, not an internal table. structure doesn't hold any data. thts y u got that error

Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
614

Hi,

Looks like the data you are looking for is in table S023. You need to read into a internal table whose line type is S021Z.

Regards,

Sesh

Read only

Former Member
0 Likes
615

Hi,

Both s021z & IOITEM are structures.

Data will not be stored in structures as like data base tables.

Mainly these we use to store data at program runtime only.Stnd programs use these structures.

You can use other related tables to get data you wanted.

Exactly what data you want to fetch for your reqt?

Regds

Sivaparvathi

Please reward points if helpful...