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 …