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 AlternativesTag Archives: Internal tables ABAP
How work with Internal tables SAP in ABAP? Receiving, changing and deleting data from internal tables SAP ABAP.
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 SyntaxLINE_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 ABAPNew syntax ABAP errors! | ERRORS ABAP 7.4 and 7.5 SAP
Check your knowledge in new syntax ABAP! Spend 5 minutes on your ABAP!
New syntax ABAP errors in ABAP 7.4 and ABAP 7.5 with examples. I will show how I fixed ABAP error in SAP with debugger ABAP. In ABAP code I used: Inline declaration ABAP, ABAP SELECT, ABAP STRING and other new ABAP construction in SAP.
Continue reading New syntax ABAP errors! | ERRORS ABAP 7.4 and 7.5 SAP