June 2018 Update
This commit is contained in:
parent
ba8067c3b7
commit
22f33d4004
5278 changed files with 84726 additions and 14379 deletions
|
|
@ -0,0 +1,3 @@
|
|||
REPORT lower_case_ascii.
|
||||
|
||||
WRITE: / to_lower( sy-abcde ).
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
REPORT lower_case_ascii.
|
||||
|
||||
cl_demo_output=>new(
|
||||
)->begin_section( |Generate lower case ASCII alphabet|
|
||||
)->write( REDUCE string( INIT out TYPE string
|
||||
FOR char = 1 UNTIL char > strlen( sy-abcde )
|
||||
NEXT out = COND #( WHEN out IS INITIAL THEN sy-abcde(1)
|
||||
ELSE |{ out } { COND string( WHEN char <> strlen( sy-abcde ) THEN sy-abcde+char(1) ) }| ) )
|
||||
)->write( |Or use the system field: { sy-abcde }|
|
||||
)->display( ).
|
||||
|
|
@ -1 +0,0 @@
|
|||
DATA(alpha) = to_lower( sy-abcde ).
|
||||
Loading…
Add table
Add a link
Reference in a new issue