Skip to main content

Posts

Showing posts with the label sample code for string manipulation

Convert Container value to String format in MSD axapta

Convert Container value to String format in axapta To Convert Container value to String format in axapta  you can use con2Str method. Below is the sample of code to tryout in your job to check the string value. container TestCont; TestCont+= "He is not a permanent "; info(con2Str(abc)); TestCont+= "Employee and belongs to Sales Department"; info(con2Str(TestCont));