
*Definition:
METHODS log_selection_range IMPORTING iv_name TYPE string
ir_range TYPE rseloption.
*Implementation:
METHOD log_selection_range.
*Selection / range for &1:
MESSAGE s014 WITH iv_name.
log->add_message( ).
LOOP AT ir_range ASSIGNING FIELD-SYMBOL(<range>).
*&1 &2 &3 &4.
MESSAGE s015 WITH <range>-sign
<range>-option
<range>-low
<range>-high.
log->add_message( ).
ENDLOOP.
ENDMETHOD.
"(1. fill ranges - not in picture)
"2. log ranges:
log_selection_range( iv_name = 'MATNR' ir_range = lr_matnr ).
log_selection_range( iv_name = 'LGTYP' ir_range = lr_lgtyp ).
"3. use ranges:
srv_hu->hu_select_gen( EXPORTING ir_matnr = lr_matnr
ir_lgtyp = lr_lgtyp
IMPORTING et_huitm = DATA(lt_hu_item) ).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 |