cancel
Showing results for 
Search instead for 
Did you mean: 

PNP Screen Doubt.

Former Member
0 Kudos
119

Hi,

I have executed a PNP program.

I can see the Standard PNP Selection Screen with the radiobutton at Other Period as default.

How can i change the program so that the radiobutton takes Today on selection screen as Default.

Thanks,

Rohit

Accepted Solutions (1)

Accepted Solutions (1)

former_member219162
Contributor
0 Kudos

Hi Rohit,

Use the following code in the Initialization event;

INITIALIZATION.

pnptimed = 'D'.

Regards,

Anirban

Former Member
0 Kudos

Thanks Anirban.

Answers (2)

Answers (2)

McF
Advisor
Advisor
0 Kudos

Hi Rohit,

if you are using the new PNPCE you can say in the customizing of the report class (SM30 T599C) what should be the default value and what should be available.

Even better than creating coding.

In the coding for PNP you should use PNPTEIMED.

Regards,

Michael

suresh_datti
Active Contributor
0 Kudos

You can try the following..

AT SELECTION-SCREEN OUTPUT.
PNPTIMR6 = space.
PNPTIMR1 = 'X'.

~Suresh

Former Member
0 Kudos

Thanks Suresh.