Application Development 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: 

select from internal table

Former Member
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

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.

Former Member
0 Kudos

Hi

You can also use SELECT for table view.

Max

Former Member
0 Kudos

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

Former Member
0 Kudos

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

jayanthi_jayaraman
Active Contributor
0 Kudos

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.

Former Member
0 Kudos

Thanks,

I have done it using loop.

Radka