New ABAP feature allows to filter one internal table based on another internal table content.
Author: coderobbot
FILTER on Internal Table with EXCEPT addition
FILTER without EXCEPT addition selects those rows that matches the where condition while FILTER with EXCEPT selects those rows that don’t matches the where condition.
FILTER on Internal Table
With the new ABAP feature FILTERing can be applied on internal tables with secondary key which reduces the LOOPing on the internal tables to find
New way of using CORRESPONDING in ABAP
The new use of CORRESPONDING key word with MAPPING & EXCEPT combination allows more powerful data transfer between two structures. The below post shows some variants
MOVE-CORRESPONDING for Internal Tables
ABAP Release 7.40 SP05 provides many different powerful features. The post describes about how to use MOVE-CORRESPONDING with respect to Internal tables.
Simple GAF Application- Part 6
The post describes how to add and work with multiple substeps in a main step. This is an extension to the post Adding Sub Step in