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 rpsco

Former Member
0 Likes
955

What is the table rpsco used for? what is the bussiness logic of the following code?

DATA: t_rpsco_mod LIKE rpsco OCCURS 0 WITH HEADER LINE.

SELECT * INTO TABLE t_rpsco_mod

FROM rpsco WHERE ( ( wrttp = '04' AND objnr LIKE 'NV%' AND

( vorga = 'COIN' OR vorga = 'KOAO'

OR vorga = 'KOAL' ) )

OR ( wrttp = '04' AND objnr LIKE 'OR%' AND

( vorga = 'COIN' OR vorga = 'KOAO'

OR vorga = 'KOAL' ) )

OR ( wrttp = '04' AND objnr LIKE 'PR%' AND

( vorga = 'COIN' OR vorga = 'RKL ' ) ) )

AND gjahr IN s_year.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
814

Hi,

Table RPSCO is used to give details related to Project info database: Costs, revenues, finances.

If you go to table and verify based on select criteria below you will come to klnow the locgic of select query.

Hope this may be helpful..

Regards,

Prashant

1 REPLY 1
Read only

Former Member
0 Likes
815

Hi,

Table RPSCO is used to give details related to Project info database: Costs, revenues, finances.

If you go to table and verify based on select criteria below you will come to klnow the locgic of select query.

Hope this may be helpful..

Regards,

Prashant