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

select-options

Former Member
0 Likes
502

i want to define a lgort not EQ 7010 and 7020 in selection option.

how too define both two LGROT. pls. help me

SELECT-OPTIONS : S_LGORT FOR MCHB-LGORT DEFAULT '7010'.

3 REPLIES 3
Read only

Former Member
0 Likes
429

Hi,

SELECT-OPTIONS : S_LGORT FOR MCHB-LGORT.

INITIALIZATION.

S_LGORT-SIGN = 'I'.

S_LGORT-OPTION = 'NE'.

S_LGORT-LOW = '7010'.

APPEND S_LGORT.

S_LGORT-SIGN = 'I'.

S_LGORT-OPTION = 'NE'.

S_LGORT-LOW = '7020'.

APPEND S_LGORT.

Thanks,

Naren

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
429
SELECT-OPTIONS : S_LGORT FOR MCHB-LGORT.

INITIALIZATION.

S_LGORT-SIGN     = 'E'.   "<---  Exclude
S_LGORT-OPTION = 'EQ'.    "<---
S_LGORT-LOW      = '7010'.
APPEND S_LGORT.

S_LGORT-LOW     = '7020'.
APPEND S_LGORT.

Regards,

Rich Heilman

Read only

jayanthi_jayaraman
Active Contributor
0 Likes
429

Hi,

DO it in INitialization.

tables mchb.

SELECT-OPTIONS : S_LGORT FOR MCHB-LGORT DEFAULT '7020'.

initialization.

s_lgort-sign = 'I'.

s_lgort-option = 'NE'.

s_lgort-low = '7010'.

append s_lgort.