Hey,
I am creating a CODE for Before Save Custom Script, where COMPANY NAME LEGAL FROM IS EQUAL TO INC, than COMPANY NAME MUST BE ABC INC,
But when i am update any fields of that company every time it is ADDED INC at the end of the company like ABC INC INC INC
here is the code;
name = ifThenElse(
lEGALFORM == 'INC',
string\concatenate(name, ' ', "INC");,
string\concatenate(name);
);
how to stop the INC REPEATED AT Before Save Custom Script.
Thank in Advance
I am creating a CODE for Before Save Custom Script, where COMPANY NAME LEGAL FROM IS EQUAL TO INC, than COMPANY NAME MUST BE ABC INC,
But when i am update any fields of that company every time it is ADDED INC at the end of the company like ABC INC INC INC
here is the code;
name = ifThenElse(
lEGALFORM == 'INC',
string\concatenate(name, ' ', "INC");,
string\concatenate(name);
);
how to stop the INC REPEATED AT Before Save Custom Script.
Thank in Advance
Comment