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: 

pnpce ldb

Former Member
0 Kudos
201

i hav requirement using pnpce ldb. could anybody give me the structure of RT_PERSON & CRT_PERSON.

points will be rewarded.

thanx in advance

1 ACCEPTED SOLUTION

Former Member
0 Kudos
164

Hi

hrpay99_rt is structure pc207

hrpay99_crt is structure pc208

Regards,

Venkat

14 REPLIES 14

Former Member
0 Kudos
165

Hi

hrpay99_rt is structure pc207

hrpay99_crt is structure pc208

Regards,

Venkat

0 Kudos
164

is RT_PERSON & CRT_PERSON r same as RT & CRT.

I dont think so. plz guide me

0 Kudos
164

Hi

hrpay99_rt is structure PC2RT_PERSON

hrpay99_crt is structure PC2CRT_PERSON

check this standard program RPCALCX0_CE.

Regards,

Venkat

0 Kudos
164

Hi,

RT_PERSON & CRT_PERSON are not same as RT & CRT.

To confirm this, Go to transaction code SE11 and check the dat types PC2RT_PERSON and PC2CRT_PERSON.

PC207 is the part of PC2RT_PERSON.

0 Kudos
164

actually wht i know is RT_PERSON & CRT_PERSON

r the tables v go through in Concurrent Employment using pnpce ldb. i want the structure of these tables.

Ex: RT type PC207.

0 Kudos
164

RT_PERSON type PC2RT_PERSON

CRT_PERSON type PC2CRT_PERSON

0 Kudos
164

when am declaring

data : RT_PERSON like line of PC2RT_PERSON.

am getting an error msg that

"FIELD 'PC2RT_PERSON' is unknown .it is neither in the specified tables, nor in the DATA statement".

whatz the error .what should i do.

0 Kudos
164

declare as :

data : RT_PERSON like PC2RT_PERSON.

0 Kudos
164

thanks for ur reply.

i hav another errror like.,when am looping the payroll results

i.e, like

"LOOP AT payroll-inter-rt_person INTO wa_rt."

where DATA : wa_rt like PC2RT_PERSON.

DATA : PAYROLL type PAYUS_RESULT.

and the error msg is:

data object PAYROLL-INTER doesn't hav a component called

RT_PERSON

Edited by: Vaishu.P on Mar 24, 2008 1:07 PM

0 Kudos
164

Write as :

LOOP AT payroll-inter-PC2RT_PERSON INTO wa_rt.

0 Kudos
164

hi Srinivas Gurram..,but am still getting same type of error.

and i hav also tried LOOP AT PAYROLL-INTER-RT_PERSON.

same type of error is repeating. am i hav to include any field in TABLES.

thanks in advance.

0 Kudos
164

declare rt_person as type HRPAY99_RT_PERSON ...

data: rt_person type HRPAY99_RT_PERSON .

0 Kudos
164

data: rt_person type HRPAY99_RT_PERSON .

there r some more errors occuring with this syntax.

i think v hav to declare

data: rt_person type line of HRPAY99_RT_PERSON .

but in both cases common error is

"data object PAYROLL-INTER doesn't hav a component called

RT_PERSON"

Edited by: Vaishu.P on Mar 24, 2008 2:28 PM

Former Member
0 Kudos
164

hi ,

you will find all the structures in these includes..for the payroll

  • SAP delivered Includes for to access payroll clusters

INCLUDE RPC2RUU0. " Cluster RU Data-Definition

INCLUDE RPC2RX09. " Cluster RU Data-Definition internat. part

INCLUDE RPC2CD09. " Cluster CD Data-Definition

INCLUDE RPPPXD00. " Data befinition buffer PCL1/PCL2

INCLUDE RPPPXD10. " Common part buffer PCL1/PCL2

INCLUDE RPPPXM00. " Buffer handling routine

regards,

venkat.