‎2007 May 18 3:00 PM
Hi all,
I've to get a selection screen like that of LDB PNP.
but i should not get period block in that.
Is there any possibility of getting the selection screen without that block.
I'm using PNP LDB.
Thanks&Regards,
Satya
‎2007 May 18 3:03 PM
use screen internal table in your report to hide those things.
write the query under
at selection-screen output.
loop at screen.
if screen-name = ''.
screen-input = '1'.
modify screen.
endif.
endloop.
Reward points if it is helpful
Thanks
Seshu
‎2007 May 18 3:03 PM
SE38->GOTO->ATTRIBUTES->HR REPORT CATEGORY
Choose screen from the given list there or you can create new one for your use with LDB PNP.
Regards,
Amit
Reward all helpful replies
‎2007 May 18 3:03 PM
use screen internal table in your report to hide those things.
write the query under
at selection-screen output.
loop at screen.
if screen-name = ''.
screen-input = '1'.
modify screen.
endif.
endloop.
Reward points if it is helpful
Thanks
Seshu