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                        ...