COND ABAP in SAP – new ABAP syntax construction. COND very useful for using in ABAP program for getting value with conditions. In old syntax you can use CASE or IF and ELSE, for example, but it will be with addition variable and ABAP code will be longer.
Continue reading COND ABAP. Condition in ABAP code SAPCategory Archives: New ABAP
New ABAP syntax in SAP systems. How work with new syntax ABAP 7.4 and ABAP 7.5. New SAP construction in ABAP language. New syntax ABAP in STRING, SELECT and SAP program.
LINE_EXISTS ABAP | Check line exists in table ABAP
Сheck internal table ABAP for the presence of a record with LINE_EXISTS ABAP in new ABAP syntax. Checking the existence of a record in an internal table is a common task in ABAP programs. I create simple example how it was in old ABAP syntax and in new syntax ABAP.
Continue reading LINE_EXISTS ABAP | Check line exists in table ABAPCONV ABAP. Type conversion in ABAP with NEW ABAP syntax
CONV ABAP operator in new syntax ABAP for conversion types. CONV ABAP help with task to compare two variables with different types or the need to save a value in a variable of a certain type for further use. Sometimes there is a need to explicitly show the conversion of one field to another in the code. The new construction of the new ABAP syntax will help us with all these tasks.
Continue reading CONV ABAP. Type conversion in ABAP with NEW ABAP syntaxREMOVE leading zeros ABAP SAP
Delete leading zeros ABAP in SAP important and easy task. Five examples how to remove leading 0 in ABAP program. There are more then one way how we can delete zeros in ABAP, but all have differences the choice is yours.
Continue reading REMOVE leading zeros ABAP SAPADD leading zeros in ABAP SAP
Adding leading zeros ABAP in SAP easy and important task. I will show examples how to add leading 0 in ABAP with 3 examples. There are more then one way how we can add zeros in ABAP but all have differences the choice is yours.
Continue reading ADD leading zeros in ABAP SAP