2006 Feb 23 12:30 PM
Hello All,
What i want to do is to set two values '1' and 'T' as default on a selection sceen. To set one value as default is no problem (see code below), but how do I set two values as default?
Employee subgroup, set values as default.
PNPPERSG-LOW = '1'.
append pnppersg.
Thank you for your help.
/Claes
2006 Feb 23 12:41 PM
Hi,
Like this:
PNPPERSG-LOW = '1'.
PNPPERSG-sign = 'I'.
PNPPERSG-option = 'EQ'.
APPEND PNPPERSG.
PNPPERSG-LOW = 'T'.
APPEND PNPPERSG.
Laxman
2006 Feb 23 12:35 PM
Hi claes,
1. U already have the answer.
2.
PNPPERSG-LOW = '1'.
append pnppersg.
PNPPERSG-LOW = 'T'.
append pnppersg.
regards,
amit m.
2006 Feb 23 12:41 PM
I thought i tried that, but apparently not. 😃
Thanks, points rewarded.
2006 Feb 23 12:41 PM
Hi,
Like this:
PNPPERSG-LOW = '1'.
PNPPERSG-sign = 'I'.
PNPPERSG-option = 'EQ'.
APPEND PNPPERSG.
PNPPERSG-LOW = 'T'.
APPEND PNPPERSG.
Laxman