CORRESPONDING and LINES Syntax in ABAP 7.4/7.5
CORRESPONDING and LINES Syntax in ABAP 7.4/7.5 Corresponding Operator In the older ABAP syntax, move corresponding is used to copy the content of one internal table to another…
CORRESPONDING and LINES Syntax in ABAP 7.4/7.5 Corresponding Operator In the older ABAP syntax, move corresponding is used to copy the content of one internal table to another…
Create Range tables using ABAP new syntax Range Table Structure Field Values SIGN ‘I’ = Include ‘E’ = Exclude OPTION ‘EQ’ …
COND Operator instead of IF/ELSE in ABAP New Syntax As case statements are used to evaluate only one variable condition at a time, we use if/else to consider multiple logical conditions. Co…
Replace Case with Switch in ABAP New Syntax In below example, the day such as Monday, Tuesday.. are determined by the numerical value obtained from the function module DATE_COMPUTE_DAY. As …
FILTER Operator in ABAP Internal Tables FILTER operator is used to filter entries based on any field in internal table and pass it to another internal table. To use filter on any internal t…
Please go through the collection of some basic inline declarations frequently used in ABAP new syntax coding. *<!-- Declaring variables without data element --> DATA ( lv_text ) =…
REDUCE OPERATOR IN ABAP Used to calculate total and subtotals. Syntax: REDUCE <type>( INIT ... FOR... THEN... UNTIL... NEXT... ) INIT - Initial value FOR - Initialize iteratio…
Use VALUE AND FOR to Transfer Internal Table Entries. For example, we have an internal table with 2 columns, employee name and employee role. And I want to transfer only employee names from…
VALUE Operator Examples - ABAP 7.4/7.5 New Syntax | ABAP New Syntax With Value Operator Syntax: VALUE type( ... ) ... VALUE - Structures TYPES : BEGIN OF ty_1 , name TYPE string …