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

*Table

Former Member
0 Likes
573

Hello Experts,

I have seen some programs in which <b>*table</b> (for eg: *AFRD in program SAPLCORU - tcode: COR6) are used. Can anybody please let me know what is the functionality of these tables. Thanks a ton for your help.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
542

You can use the database table twice

Select * single From bkpf where bukrs = '0001'

and belnr = '0000001'

and gjahr = '2007.

Select * single From *bkpf where bukrs = '0001'

and belnr = '0000002'

and gjahr = '2007'.

the BKPf and *BKPF have differents values

4 REPLIES 4
Read only

Former Member
0 Likes
542

Hi Sam,

Tables prefixed with * are older versions.

Reward if it helps,

Satish

Read only

Former Member
0 Likes
543

You can use the database table twice

Select * single From bkpf where bukrs = '0001'

and belnr = '0000001'

and gjahr = '2007.

Select * single From *bkpf where bukrs = '0001'

and belnr = '0000002'

and gjahr = '2007'.

the BKPf and *BKPF have differents values

Read only

ferry_lianto
Active Contributor
0 Likes
542

Hi,

It is used as work area (in older version).

Regards,

Ferry Lianto

Read only

0 Likes
542

Thanks for the replies.