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

Pooled table

Former Member
0 Likes
569

Hi all,

I'd like to query the dunning clerk's name in customer master's company code view.

And the pooled table T001S is found.

Could/should I make the SQL statement as usual in my ABAP? i.e.

select sname from T001S

into itab-sname

where bukrs = 3000 and busab = '01'.

3 REPLIES 3
Read only

suresh_datti
Active Contributor
0 Likes
521

Hi Macy,

Your SELECT statement will work. Ofcourse you need to close it with ENDSELECT..

Regards,

Suresh Datti

Read only

former_member186741
Active Contributor
0 Likes
521

as far as abap is concerned a pooled table is just another table to be selected from. Technically, the data is held in the ATAB pool but it makes no difference to your program.

Read only

Former Member
0 Likes
521

Only disadvantage is that you cannot use it in a JOIN statement.