String concatenation NER
I'm created a NER and I'm string to use the concot(,) function to combine two strings. The problem is that if I concatenate two UDC Desc fields (30 characters DL01) fields I get a 60 character string no matter how many characters are actually in the DL01.
For example
DL01 = Foo
DL01 = Bar
TXT0 = concate(Foo,Bar)
Resulting TXT0 is
Foo Bar
what I am expecting is
FooBar
Any help is much appreciated.
Do I need to create a C business function to accomplish this? Is what I expect even possible?
0