SAP Certification
SAP Download
SAP Companies India
SAP Books
SAP JOBS
SAP jobs in India
SAP ABAP jobs in India
SAP BASIS jobs in India
SAP BI jobs in India
SAP CRM jobs in India
SAP FICO jobs in India
SAP Fresher jobs in India
SAP HR jobs in India
SAP MM jobs in India
SAP PM jobs in India
SAP PP jobs in India
SAP SD jobs in India
SAP XI jobs in India
|
CONCATENATE (ABAP Keyword) introduction & details
Show Full Details
CONCATENATE
Basic
form CONCATENATE f1 ... fn INTO g.
Addition
... SEPARATED
BY h
Effect Places the fields f1 to fn after g .
With the
fields fi (1 <= i <= n), trailing blanks are ignored, i.e. these fields
are considered only to have the length STRLEN ( fi ).
The return code
value is set as follows:
SY-SUBRC = 0 The result fits in g
. SY_SUBRC = 4 The result was too long for g and was only copied to g in that
length.
Example
DATA: ONE(10) VALUE 'John', TWO(3) VALUE '
F.', THREE(10) VALUE ' Kennedy', NAME(20). CONCATENATE ONE TWO THREE
INTO NAME.
Then, NAME contains the value " John F. Kennedy
".
Addition ... SEPARATED BY h
Effect Inserts the separator
h between the fields fi . Here, h is used in its defined
length.
Examples
DATA: ONE(10) VALUE 'John', TWO(3) VALUE
'F.', THREE(10) VALUE 'Kennedy', NAME(20). CONCATENATE ONE TWO THREE
INTO NAME SEPARATED BY SPACE.
Then, NAME has the value " John F.
Kennedy ".
DATA SEPARATOR(4) VALUE 'USA'. CONCATENATE SPACE ONE
TWO THREE INTO NAME SEPARATED BY SEPARATOR.
Then, NAME has the
value " USA JohnUSA F.USA Ke ". The return value of SY-SUBRC is set to
4. Related SPLIT, SHIFT, REPLACE, TRANSLATE,
CONDENSE
Note Performance
You are recommended to use the key
word CONCATENATE rather than your own constructions because it is safer, more
efficient and clearer. The runtime required to append two 30-byte fields amounts
to approx. 14 msn (standardized microseconds).
Show Most Readed SAP Tutorials
Most readed SAP Tutorials
Show Latest Added SAP Tutorials
Latest Added SAP documents
|
"Site covers most of the SAP technical and functional tutorials, articles, interview questions and PDF study materials . List and details of SAP transaction codes ( tcodes ), Tables, report names, Bapi, ABAP programming syntax and keywords are also available in the site.
Information on SAP Certification and training, latest SAP jobs in India, ABAP interview questions are useful for SAP professionals seeking for a career in SAP as a fresher or experienced.ABAP tutorial downloads on BDC, LSMW, BAPI, ALE, IDOC, Smartforms, Sapscripts etc etc are also added.Now you can read from this page about CONCATENATE (ABAP Keyword)" |