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
1,884 SAP Managed Tags: ABAP Development Hi Expart, How can I declare Internal Table dynamically by using the table name as input parameter in the selection screen. like... data i_table type standard table of (p1) . (dynamically taken by the input parameter). Please Advice.Reply...
SAP Managed Tags: ABAP Development Hi, i need to now how to declare table (like in fm) in method, because when i try declare table in parameters (SE24) with type the structure i build in se11 i get error: ""LT_TAB" is not an internal table "OCCURS n" specification is problem ...
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...
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...