cancel
Showing results for 
Search instead for 
Did you mean: 

"L_S_RANGE-SIGN" options

Former Member
0 Kudos

What are the different possible values for the "L_S_RANGE-SIGN" that we use in the user exit variable code...

I need to send back multiple single values from this code, not interval...

any documentation available on this? been looking for a while...

Thanks

Gova

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

There are two possible values for "L_S_RANGE-SIGN". They are I (inclusive) and E (exclusive).

If you want to send back the multiple single values from user exit,

Add the values to "L_S_RANGE-LOW" one by one,And also append it to E_T_RANGE one by one,as shown below.

L_S_RANGE-LOW = 'VALUE1'.

L_S_RANGE-SIGN = 'I'.

L_S_RANGE-OPT = 'EQ'.

APPEND L_S_RANGE TO E_T_RANGE.

CLEAR L_S_RANGE.

L_S_RANGE-LOW = 'VALUE2'.

L_S_RANGE-SIGN = 'I'.

L_S_RANGE-OPT = 'EQ'.

APPEND L_S_RANGE TO E_T_RANGE.

With rgds,

Anil Kumar Sharma .P

Answers (0)