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: ABAP
Articles on ABAP programming will be useful for both ABAP developers and SAP consultants. I will analyze both ABAP from scratch and the new syntax of ABAP 7.4 and 7.5. I will describe in detail the technical details that I encountered and how I solved them. I will also try to help consultants look beyond ABAP development in order to better understand how everything works.
First and last day week in SAP ABAP
How to get first and last date week ABAP? This question we will resolve in this article with using function modules for work with dates in SAP.
Continue reading First and last day week in SAP ABAPHow get work day ABAP?
Get work date in SAP with ABAP important task for SAP developers and I will show example getting factory day in SAP system. If we want to get next work day for sending email, or previous work day for checking activities or work date for planning.
Continue reading How get work day ABAP?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 syntax