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: 

PNP HIDING SCREEN ISSUE

Former Member
0 Kudos

I want to hide all the feilds of pnp screen in abap hr  and add my coustomized screen to it .Please help me in that!!

4 REPLIES 4

Former Member
0 Kudos

HI MT,

     If you don't want LDB selection then why you need LDB in your program, could you please detail your requirement.

     However you can use report category '_____000' - No selection criteria for DB PNP.

Regards,

Surendra Gupta.

raymond_giuseppi
Active Contributor
0 Kudos

Well, you could just hide those, use a LOOP AT SCREEN, (once you identify standard LDB selection fields/dynpros (*) ) /or/ remove LDB attribute from you report and manually call LDB_PROCESS to read data.

Regards,

Raymond

(*) or do the opposite, use a modif-id for your fields, and disabled those of standard selection (but not SSCRFIELDS-UCOMM or similar fields)

vengadesh_r
Explorer
0 Kudos

Add this code Mayank

at selection-screen output.

loop at screen.

     if screen-group2 = 'DBS'.

       screen-active = '0'.

       modify screen.

     endif.

endloop.

Former Member
0 Kudos

Hi MK,

    Have you got solution or still facing issue, let us know accordingly we can guide you.

   Have you tried to use report category '_____000' - No selection criteria for DB PNP.