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

Multiple values as default in selection screen (alv grid)

Former Member
0 Likes
755

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
Read only

Laxmana_Appana_
Active Contributor
0 Likes
703

Hi,

Like this:

PNPPERSG-LOW = '1'.

PNPPERSG-sign = 'I'.

PNPPERSG-option = 'EQ'.

APPEND PNPPERSG.

PNPPERSG-LOW = 'T'.

APPEND PNPPERSG.

Laxman

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

3 REPLIES 3
Read only

Former Member
0 Likes
703

Hi claes,

1. U already have the answer.

2.

PNPPERSG-LOW = '1'.

append pnppersg.

PNPPERSG-LOW = 'T'.

append pnppersg.

regards,

amit m.

Read only

0 Likes
703

I thought i tried that, but apparently not. 😃

Thanks, points rewarded.

Read only

Laxmana_Appana_
Active Contributor
0 Likes
704

Hi,

Like this:

PNPPERSG-LOW = '1'.

PNPPERSG-sign = 'I'.

PNPPERSG-option = 'EQ'.

APPEND PNPPERSG.

PNPPERSG-LOW = 'T'.

APPEND PNPPERSG.

Laxman