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?Category 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. Subcategories:
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 ABAPABAP CONV Operator: Type Conversion Examples in New ABAP Syntax
The ABAP CONV operator is a constructor expression used for explicit type conversion in modern ABAP. It helps you convert values inline when assigning variables, passing method parameters, working with function modules, or using expressions like ALPHA = IN. In this article, you will see simple CONV examples and common mistakes.
Continue reading ABAP CONV Operator: Type Conversion Examples in New ABAP SyntaxSAP CRM Order tables
Mains table which I using in SAP CRM in ABAP programs. In CRM more often we use Model for read data, but sometimes better use SELECT from database tables. Sometimes this variant easier and better for performance. Also this SAP CRM database table useful for check data for consultant.
Continue reading SAP CRM Order tablesREMOVE 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 SAP