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: 

HCM : PNPCE LDB via SE36 > error

former_member183909
Active Participant
0 Kudos

Hi

I want to view the contents of LDB PNPCE via SE36. I want to see if it will be able to show Future dated employees.

I receive this error "“Error HRBAS00_PNPCE003    Do not use the GET PERNR event”

I do not want to write any code!.   I just want to view the contents but obviously the SAP standard tries to use obsolete event.

In Dev I can set a debug to get around this but in Test my authority is not enough.

So does somebody know how to get around this error?. (apart from debugging into program DBPNPCEFXXX set a breakpoint at line 102  and overwriting sy-subrc)

Repeating that I do not want to write any code.

thanks

1 ACCEPTED SOLUTION

former_member183909
Active Participant
0 Kudos

Thanks for the replies anyway.

3 REPLIES 3

Former Member
0 Kudos

Hi,

You know you cant execute the logical database. It is not a database its a program. inoder to fetch the data you need to use it in the atributes of a report program.Logical database is a program that help us to fecth the data from HR master table. Predefined selecet quires are there inside the logical database to fetch the data. So to make use of it you need to use it inside report program(Add the name in the atribute list of a report program).

Regards,

Alenlee MJ

former_member212705
Active Participant
0 Kudos

HI JW,

LDB are basically ABAP programs having screens and data fetching logic with authorizations. And also you should not use GET PERNR in the case of PNPCE as PNPCE is used for concurrent employemt. Baiscally GET PERAS will be useful.

If you do not want write any code then

also in my case if i am trying to exceute the PNPCE via SE36 ,same error is coming as yours.

SO

Execute this report directly -   SAPDBPNPCE , you will be able to see screen.

Thanks,

A. Trivedi

former_member183909
Active Participant
0 Kudos

Thanks for the replies anyway.