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

select from internal table

Former Member
0 Likes
1,711

Hi,

i need to select data from some internal table.

data : wa_vcera type /BIC/ASUSP00 .

"VCERA" is not defined in the ABAP Dictionary as a table, projection view, or database view.

What should I do?

Thanks

Radka

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
946

Hello,

You cannot SELECT data from an internal table. you can get the data from which meets specific conditions from one internal table to another.

By the way, how are you getting the data populated in this internal table ?

Regards,

Anand Mandalika.

6 REPLIES 6
Read only

Former Member
0 Likes
947

Hello,

You cannot SELECT data from an internal table. you can get the data from which meets specific conditions from one internal table to another.

By the way, how are you getting the data populated in this internal table ?

Regards,

Anand Mandalika.

Read only

Former Member
0 Likes
946

Hi

You can also use SELECT for table view.

Max

Read only

Former Member
0 Likes
946

Hi Radka,

If you want to process itab records you can loop at itab or you can read the records.

You declared work area not a internal table, it cant hold multiple records.

Can you please bit clear?

Siri.

Message was edited by: Srilatha T

Read only

Former Member
0 Likes
946

Radka,

what type is this '/BIC/ASUSP00' ????

When i checked out in the Dictionary, I am unable to find it???

Thanks

Kam

Message was edited by: Kam

Read only

jayanthi_jayaraman
Active Contributor
0 Likes
946

Hi,

If you define

data : wa_vcera type /BIC/ASUSP00 .

then wa_vcera is thw workarea referring to the table or structure /BIC/ASUSP00.

If you selected data from database table and populated it into your internal table,then you can read the data from the internal table.

Kindly reward points by clicking the star on the left of reply,if it helps.

Read only

Former Member
0 Likes
946

Thanks,

I have done it using loop.

Radka