The internal table is an Abap language component that is usedveryoften. Whenever information is needed in repetitive form, the internal table is used. You will not find many reports that have no internal tables,
Solved: i new to OO in abap so plz maybe someone give me example how to declare this simple internal table in se 24 . step by step. Best Regards
SAP Managed Tags: ABAP Development You can do one more thing, Declare one more field into internal table itab i.e DATA : BEGIN OF itab OCCURS 0, kunnr LIKE kna1-kunnr, matnr LIKE mara-matnr, <b>ernam like vbak-ernam,</b> END OF itab. in Select statement, select ERNAM al...
SAP Managed Tags: ABAP Development hi, RANGES: To declare an internal table with the same structure as in SELECT-OPTIONS, but without linking it to a selection screen. RANGES <rangetab> FOR <f>. This statement is simply a shortened form of the following statements: DATA: BEGIN OF <ranget...