Posts

Showing posts from September, 2023

Range Table , How to create range table using and internal table SAP ABAP

Image
  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  )  ) . ********************************ROHINI KUMAR*********************************                                 Please support my work : sap.rohini988@gmail.com                                LinkedIn Link  :  https://www.linkedin.com/in/rohini-kumar-14647a13a/ ********************************************************************************