FOR ALL ENTRIES in SELECT ABAP is not new ABAP syntax, but it is still one of the most important Open SQL techniques for reading database records by values from an internal table ABAP. ABAP developers often use it when they already have a list of keys in memory and need to select related data from another SAP table.
Continue reading FOR ALL ENTRIES in SELECT ABAP: Examples, Checks and AlternativesCategory 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:
ABAP REDUCE Operator: Simple Examples in New ABAP Syntax
ABAP REDUCE operator in new ABAP syntax used when you need to calculate one final result from many values. For example, you can calculate a total quantity, count table lines, calculate a total amount, find a maximum value, or build a final string from an internal table ABAP.
Continue reading ABAP REDUCE Operator: Simple Examples in New ABAP SyntaxABAP VALUE with FOR: Build Internal Tables in the New Syntax
ABAP VALUE with FOR is one of the most useful features of new ABAP syntax for developers who work with internal tables. It helps you create a new internal table ABAP from existing data, filter rows, and map one table structure to another table structure in a compact way. Instead of writing a long LOOP AT block with APPEND, you can express the result directly.
Continue reading ABAP VALUE with FOR: Build Internal Tables in the New SyntaxABAP COND Operator: Simple Examples for New ABAP Syntax
COND ABAP is a modern constructor expression that helps you return a value based on conditions. It is often used as a shorter alternative to IF/ELSE when you need to assign a value, pass a method parameter, or build readable inline logic.
Continue reading ABAP COND Operator: Simple Examples for New ABAP SyntaxFirst 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 ABAP