Abap 7.40 PDF
Abap 7.40 PDF
Abap 7.40 PDF
40 Quick Reference
Contents
1. Inline Declarations
2. Table Expressions
I. Definition
II. Example
I. Definition
5. FOR operator
I. Definition
II. Explanation
III. Example 1
IV. Example 2
I. Definition
II. Note
III. Example 1
IV. Example 2
V. Example 3
8. CORRESPONDING operator
I. Definition
III. Output
IV. Explanation
9.Strings
I. String Templates
II. Concatenation
III. Width/Alignment/Padding.
IV. Case
V. ALPHA conversion
I. Definition
II. Explanation
III. Example
IV. Output
11. Classes/Methods
I. Problem
II. Solution
III. Output
13. Filter
I. Definition
II. Problem
III. Solution
1. Inline Declarations
Description Before 7.40 With 7.40
Data statement DATA text TYPE string. DATA(text) = `ABC`.
text = `ABC`.
IMPORTING p2
= a2
).
Loop at FIELD-SYMBOLS: <line> LOOP AT itab
assigning type …
ASSIGNING FIELD-SYMBOL(<line>).
LOOP AT itab ASSIGNING …
<line>. ENDLOOP.
ENDLOOP.
Read assigning FIELD-SYMBOLS: <line> READ TABLE itab
type …
ASSIGNING FIELD-SYMBOL(<line>).
READ TABLE itab
ASSIGNING
<line>.
Select into DATA itab TYPE TABLE OF SELECT * FROM dbtab
dbtab.
table INTO TABLE DATA(itab)
SELECT * FROM dbtab
WHERE fld1 = @lv_fld1.
INTO TABLE itab
WHERE fld1
= lv_fld1.
Select single SELECT SINGLE f1 f2 SELECT SINGLE f1 AS my_f1,
WRITE: / ls_structure-
my_f1, ls_structure-
abc.
2. Table Expressions
If a table line is not found, the exception CX_SY_ITAB_LINE_NOT_FOUND is raised. No sy-
subrc.
INTO wa.
Read READ TABLE itab wa = itab[ KEY key INDEX idx ].
Table using INDEX idx
key
USING KEY key
INTO wa.
Read READ TABLE itab wa = itab[ col1 = … col2 = … ].
Table with
key WITH KEY col1 = …
col2 = …
INTO wa.
Read READ TABLE itab wa = itab[ KEY key col1 = …
Table with
key WITH TABLE KEY col2 = … ].
components key
COMPONENTS col1 = …
col2 = …
INTO wa.
Does record READ TABLE itab … IF line_exists( itab[ … ] ).
exist?
TRANSPORTING NO …
FIELDS.
ENDIF.
IF sy-subrc = 0.
ENDIF.
Get table DATA idx type sy- DATA(idx) =
index tabix.
line_index( itab[ … ] ).
READ TABLE …
TRANSPORTING NO
FIELDS.
idx = sy-tabix.
NB: There will be a short dump if you use an inline expression that references a non-existent record.
SAP says you should therefore assign a field symbol and check sy-subrc.
II. Example
Method cl_abap_codepage=>convert_to expects a string
Before 7.40
helper = text.
With 7.40
OR
OR
itab = VALUE #( ( ) ( 1 ) ( 2 ) ).
5. FOR operator
I. Definition
FOR wa|<fs> IN itab [INDEX INTO idx] [cond]
II. Explanation
This effectively causes a loop at itab. For each loop the row read is assigned to a work area (wa) or
field-symbol(<fs>).
This wa or <fs> is local to the expression i.e. if declared in a subrourine the variable wa or <fs> is a
local variable of
Given:
With 7.40
IV. Example 2
Populate internal table GT_CITYS with the cities from GT_SHIPS where the
route is R0001.
Before 7.40
With 7.40
Note: ls_ship does not appear to have been declared but it is declared implicitly.
TYPES:
BEGIN OF ty_line,
col1 TYPE i,
col2 TYPE i,
col3 TYPE i,
END OF ty_line,
ty_tab TYPE STANDARD TABLE OF ty_line WITH EMPTY KEY.
Before 7.40
j = 1.
DO.
j = j + 10.
IF j > 40. EXIT. ENDIF.
APPEND INITIAL LINE TO gt_itab ASSIGNING <ls_tab>.
<ls_tab>–col1 = j.
<ls_tab>–col2 = j + 1.
<ls_tab>–col3 = j + 2.
ENDDO.
With 7.40
FOR for_exp1
FOR for_exp2
NEXT …
result = iterated_value
…)
II. Note
While VALUE and NEW expressions can include FOR expressions, REDUCE must include at
least one FOR expression. You can use all kinds of FOR expressions in REDUCE:
Before 7.40
With 7.40
IV. Example 2
Sum the values 1 to 10 stored in the column of a table defined as follows
Before 7.40
With 7.40
With 7.40
output->display( ).
COND string(
|High Noon|
ELSE
THROW cx_cant_be( ) ).
8. Corresponding Operator
I. Definition
… CORRESPONDING type( [BASE ( base )] struct|itab [mapping|except] )
II. Example Code
With 7.40
, ls_line2–col2, ls_line2–col3.
SKIP.
, ls_line3–col2, ls_line3–col3.
III. Output
IV. Explanation
Given structures ls_line1 & ls_line2 defined and populated as above.
MOVE-CORRESPONDING
ls_line1
TO
ls_line2.
2 MOVE-CORRESPONDING ls_line2 = CORRESPONDING #
ls_line1
( BASE ( ls_line2 ) ls_line1 ).
TO
ls_line2.
3 DATA: ls_line3 like DATA(ls_line3) = CORRESPONDING line2
ls_line2.
( BASE ( ls_line2 ) ls_line1 ).
ls_line3 = ls_line2.
MOVE-CORRESPONDING
ls_line1
TO
ls_line2.
1. The contents of ls_line1 are moved to ls_line2 where there is a matching column name. Where there
is no
match the column of ls_line2 is initialised.
2. This uses the existing contents of ls_line2 as a base and overwrites the matching columns from ls_line1.
3. This creates a third and new structure (ls_line3) which is based on ls_line2 but overwritten by matching
columns of ls_line1.
… MAPPING t1 = s1 t2 = s2
EXCEPT allows you to list fields that must be excluded from the data transfer
… EXCEPT {t1 t2 …}
9. Strings
I. String Templates
A string template is enclosed by two characters “|” and creates a character string.
Literal text consists of all characters that are not in braces {}. The braces can contain:
• data objects,
• calculation expressions,
• constructor expressions,
• table expressions,
• predefined functions, or
• functional methods and method chainings
Before 7.40
cl_demo_output=>display( output ).
With 7.40
II. Concatenation
Before 7.40
With 7.40
III. Width/Alignment/Padding
WRITE / |{ ‘Left’ WIDTH = 20 ALIGN = LEFT PAD = ‘0’ }|.
WRITE / |{ ‘Centre’ WIDTH = 20 ALIGN = CENTER PAD = ‘0’ }|.
WRITE / |{ ‘Right’ WIDTH = 20 ALIGN = RIGHT PAD = ‘0’ }|.
IV. Case
WRITE / |{ ‘Text’ CASE = (cl_abap_format=>c_raw) }|.
WRITE / |{ ‘Text’ CASE = (cl_abap_format=>c_upper) }|.
WRITE / |{ ‘Text’ CASE = (cl_abap_format=>c_lower) }|.
V. ALPHA conversion
DATA(lv_vbeln) = ‘0000012345’.
WRITE / |{ lv_vbeln ALPHA = OUT }|. “or use ALPHA = IN to go in other
direction
LOOP AT itab result [cond] GROUP BY key ( key1 = dobj1 key2 = dobj2 …
[gs = GROUP SIZE] [gi = GROUP INDEX] )
[ASCENDING|DESCENDING [AS TEXT]]
[WITHOUT MEMBERS]
[{INTO group}|{ASSIGNING <group>}]
…
[LOOP AT GROUP group|<group>
…
ENDLOOP.]
…
ENDLOOP.
II. Explanation
The outer loop will do one iteration per key. So if 3 records match the key there will only be one iteration
for these 3 records. The structure “group” (or
“<group>” ) is unusual in that it can be looped over using the “LOOP AT GROUP” statement. This will
loop over the 3 records (members) of the group. The
structure “group” also contains the current key as well as the size of the group and index of the group ( if
GROUP SIZE and GROUP INDEX have been
III. Example
With 7.40
age TYPE i,
END OF ty_employee,
With 7.40
ASCENDING
ASSIGNING FIELD-SYMBOL(<group>).
CLEAR: gv_tot_age.
ENDLOOP.
“Average age
SKIP.
ENDLOOP.
IV. Output
John
Barry
Arthur
Alice
Mary
Mandy
Average age: 64
11. Classes/Methods
I. Referencing fields within returned structures
Before 7.40
ls_lfa1 = My_Class=>get_lfa1( ).
lv_name1 = ls_lfa1–name1.
With 7.40
IF My_Class=>return_boolean( ) = abap_true.
ENDIF.
With 7.40
IF My_Class=>return_boolean( ).
ENDIF.
NB: The type “BOOLEAN” is not a true Boolean but a char1 with allowed values X,- and <blank>.
Before 7.40
DATA: lo_delivs TYPE REF TO zcl_sd_delivs,
12. Meshes
Allows an association to be set up between related data groups.
I. Problem
Given the following 2 internal tables:
Populated as follows:
Get the details of Jerry’s manager and all developers managed by Thomas.
II. Solution
With 7.40
ON manager = name,
developers TYPE tt_developer ASSOCIATION my_manager TO managers
With 7.40
ON name = manager,
END OF MESH m_team.
ASSIGNING FIELD–SYMBOL(<ls_emp>).
III. Output
Jerry’s manager: Jason Salary: 3000
Thomas’ developers:
13. Filter
Filter the records in a table based on records in another table.
I. Definition
… FILTER type( itab [EXCEPT] [IN ftab] [USING KEY keyname]
WHERE c1 op f1 [AND c2 op f2 […]] )
II. Problem
Filter an internal table of Flight Schedules (SPFLI) to only those flights based on a filter table that
contains the fields Cityfrom and CityTo.
III. Solution
With 7.40
<ls_rec>–cityto,45 <ls_rec>–deptime.
ENDLOOP.
Note: using the keyword “EXCEPT” (see definition above) would have returned the exact opposite
records i.e all records EXCEPT for those those returned above.