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: 

Multiple values as default in selection screen (alv grid)

Former Member
0 Kudos
127

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

1 ACCEPTED SOLUTION

laxmanakumar_appana
Active Contributor
0 Kudos
75

Hi,

Like this:

PNPPERSG-LOW = '1'.

PNPPERSG-sign = 'I'.

PNPPERSG-option = 'EQ'.

APPEND PNPPERSG.

PNPPERSG-LOW = 'T'.

APPEND PNPPERSG.

Laxman

3 REPLIES 3

Former Member
0 Kudos
75

Hi claes,

1. U already have the answer.

2.

PNPPERSG-LOW = '1'.

append pnppersg.

PNPPERSG-LOW = 'T'.

append pnppersg.

regards,

amit m.

0 Kudos
75

I thought i tried that, but apparently not. 😃

Thanks, points rewarded.

laxmanakumar_appana
Active Contributor
0 Kudos
76

Hi,

Like this:

PNPPERSG-LOW = '1'.

PNPPERSG-sign = 'I'.

PNPPERSG-option = 'EQ'.

APPEND PNPPERSG.

PNPPERSG-LOW = 'T'.

APPEND PNPPERSG.

Laxman