web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :

How to concatenate string and Upper case in Axapta

SANTOSH KUMAR SINGH Profile Picture SANTOSH KUMAR SINGH 1,224
To concatenate string and Upper case in Axapta you can try below code

   str a = 'test',b = 'car',d1 = 'speed';  
str c;
str d,e;
;
c = a + b + d1;
d = curext();
info(c);
info(strUpr(d));


This was originally posted here.

Comments

*This post is locked for comments