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

Retreive Data from the structure

Former Member
0 Likes
1,331

Hi all

I have a structure KAEP_COAC.Now i need to retreive data from this structure but if i use the SELECT statement am getting KAEP_COAC is not defined in ABAP Dictionary.Please tell me how can i retreive dats from the structure..

With Regards

Vijay

Hi all

I have a structure KAEP_COAC.Now i need to retreive data from this structure but if i use the SELECT statement am getting KAEP_COAC is not defined in ABAP Dictionary.Please tell me how can i retreive dats from the structure..

With Regards

Vijay

3 REPLIES 3
Read only

former_member386202
Active Contributor
0 Likes
949

Hi,

Structure is not a database table, it does not contain any data so how can u retreive the data from structure. plz clear ur requirement

regards,

Prashant

Read only

0 Likes
949

Hi Vijay ,

Structure does not contain any data .to make you very clear ,they are like the internal tables at global level .You need to retrive data from the tables and populate the data in to the structure the same way how you do with your internal tables .

The structures contain data at runtime .

Sail

Read only

Former Member
0 Likes
949

hi,

you cannot retrieve data from structure. For retrieving the data, open the structure,

find the key fields which you need. for those fields use where used list to find in which tables they are used and where there value is stored. Then fetch data from the relevant table.

Regards,

Mallick