‎2008 Jan 03 10:50 AM
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
‎2008 Jan 03 11:17 AM
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...
‎2008 Jan 03 11:05 AM
Hi
S021Z is a structure, not an internal table. structure doesn't hold any data. thts y u got that error
‎2008 Jan 03 11:12 AM
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
‎2008 Jan 03 11:17 AM
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...