Posts

Showing posts from September, 2018

How to access an internal table of one program in another program

Image
How to access an internal table of one program in another program. Step 1. Declare a Data Type DATA :  ls_data  TYPE REF TO data . TYPES  DATE_RANGE  TYPE  RANGE  OF  SY - DATUM . Step 2. Declare Field Symbols. FIELD-SYMBOLS :  <lt_data>  TYPE table . Step 3. Create a Ranges and selection parameter as per your Requirement DATA ( DATE ) =  VALUE  DATE_RANGE (    (  SIGN  =  'I'  OPTION  =  'BT'  LOW  =  '20180820'  HIGH  =  '20180820' ) ). Step 4. The below code will restrict ALV to display. cl_salv_bs_runtime_info => set (  EXPORTING  display   =  abap_false                                   ...