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

PNPCE selection screen

Former Member
0 Likes
1,349

Hi All,

For my requirement, I am using PNPCE LDB and also created own report category and assigned it to the Z report. The problem is, the selection screen (based on the PNPCE) is not being displayed when executing the report.

Please guide me.

Thanks in advance.

Satish

1 ACCEPTED SOLUTION
Read only

Former Member
787

Hi satish,

Do you have below statement in your program if not then add it.

TABLES pernr.

Regards,

Atish

4 REPLIES 4
Read only

Former Member
788

Hi satish,

Do you have below statement in your program if not then add it.

TABLES pernr.

Regards,

Atish

Read only

Former Member
0 Likes
787

Read this weblog...

<a href="/people/alvaro.tejadagalindo/blog/2006/02/19/how-to-deal-with-hr-payroll-reports to deal with HR Payroll reports</a>

Greetings,

Blag.

Read only

0 Likes
787

Use sentence : TABLES pernr. for logical database pnpce

Read only

abhijitzope
Active Participant
0 Likes
787

Hi Satish,

Just add the following line in your code.

<b>tables: pernr.</b>

for example i am giving you the following code.

REPORT z_temp.

tables: pernr.

nodes: peras.

infotypes: 0001.

start-of-SELECTION.

get peras.

rp_provide_from_last p0001 space pn-begda pn-endda.

write:/ p0001-pernr, p0001-ename.

end-of-SELECTION.

hope it will help you.

regards,

ABHIJIT ZOPE