STR_CAT
            Script Function: Combines two strings to a new string
Syntax
STR_CAT (String1, String2)
| 
                         Syntax  | 
                    
                         Description/Format  | 
                
|---|---|
| 
                         String1, String2  | 
                    
                         Alphanumeric string  | 
                
Return code  | 
|---|
String consisting of the two specified strings  | 
Example
In the following example, the function STR_CAT is used to create a title and store it in a script variable ("Daily Analysis 12.01.2005").
:SET &PROCESS# = "Daily Analysis "
:SET &DATE# = SYS_DATE("DD.MM.YYYY")
:SET &TITLE# = STR_CAT(&PROCESS#, &DATE#)
See also:
About Scripts
Script Elements - Alphabetical Listing
Script Elements - Ordered by function