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

LDB

0 Likes
331

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
310

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

2 REPLIES 2
Read only

amit_khare
Active Contributor
0 Likes
310

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

Read only

Former Member
0 Likes
311

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