Range Table , How to create range table using and internal table SAP ABAP
Sometimes there is an issue with creating a range table and passing range selections on the screen. For this, we can create a range table.
DATA : s_vbeln5 TYPE /iwbep/t_cod_select_options.
s_vbeln5 = VALUE #( FOR s_vbeln1 IN s_vbeln[]
LET s = s_vbeln1-sign
o = s_vbeln1-option
IN sign = s
option = o
( low = s_vbeln1-low
high = s_vbeln1-high ) ).
s_vbeln5 = VALUE #( FOR s_vbeln1 IN s_vbeln[]
LET s = s_vbeln1-sign
o = s_vbeln1-option
IN sign = s
option = o
( low = s_vbeln1-low
high = s_vbeln1-high ) ).
********************************ROHINI KUMAR*********************************
Please support my work : sap.rohini988@gmail.com LinkedIn Link : https://www.linkedin.com/in/rohini-kumar-14647a13a/
********************************************************************************
Comments
Post a Comment