‎2007 Oct 25 5:36 PM
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
‎2007 Oct 25 5:49 PM
Hi satish,
Do you have below statement in your program if not then add it.
TABLES pernr.
Regards,
Atish
‎2007 Oct 25 5:49 PM
Hi satish,
Do you have below statement in your program if not then add it.
TABLES pernr.
Regards,
Atish
‎2007 Oct 25 7:49 PM
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.
‎2007 Oct 25 8:26 PM
‎2007 Oct 26 5:05 AM
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