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

About AUKO table.

Former Member
0 Likes
1,041

Hi,

How does the allocation table(AUKO) get filled up and what is the method to read some values from the table based upon certain criteria?

e.g. read the bezch value from AUKO where abeln is equal to some abeln value in ekpo table.

Please help.

Thanks.

Hi,

How does the allocation table(AUKO) get filled up and what is the method to read some values from the table based upon certain criteria?

e.g. read the bezch value from AUKO where abeln is equal to some abeln value in ekpo table.

Please help.

Thanks.

3 REPLIES 3
Read only

Former Member
0 Likes
813

Hi

if not i_ekpo[] is initia.

Select ABELN BEZCH from AUKO

into table ITAB

where ABELN = i_EKPO-ABELN.

endif.

Reward points if useful

Regards

Anji

Read only

Former Member
0 Likes
813

Hi Sandeep,

Using Select Query You can read or retrieve the values from the AUKO table.

Consider this select query,

Select bezch from AUKO into ITAB where abeln = ekpo-abeln.

Thanks.

Read only

0 Likes
813

Hi,

I tried it but I think we cannot read the values through a simple SELECT query.

Could you explain to me the details about AUKO table?

Thanks,

Sandeep.