How do I add string variables together so I can store it into a new variable?
Example:
define var x-date as date.
define var x-edicont as char format "x(8)".
define var x-cont as char format "x(19)".
define var x-holder as char.
x-holder = "@".
x-date = today.
x-edicont = "00976736"
x-cont = x-edicont + x-holder + x-edicont.
Result x-cont = "00976736@11/10/03"
Example:
define var x-date as date.
define var x-edicont as char format "x(8)".
define var x-cont as char format "x(19)".
define var x-holder as char.
x-holder = "@".
x-date = today.
x-edicont = "00976736"
x-cont = x-edicont + x-holder + x-edicont.
Result x-cont = "00976736@11/10/03"