Before Save Custom Script Repeated Every Time (After Save)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Jacksii
    Junior Member
    • Mar 2025
    • 6

    Before Save Custom Script Repeated Every Time (After Save)

    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




  • rabii
    Active Community Member
    • Jun 2016
    • 1276

    #2
    Try this

    PHP Code:
    if(entity\isAttributeChanged('lEGALFORM') && !string\contains(lEGALFORM'INC')){
        
    string\concatenate(name' '"INC");,
        
    string\concatenate(name);
    }
    ​ 
    Rabii
    Web Dev

    Comment

    • Jacksii
      Junior Member
      • Mar 2025
      • 6

      #3
      Originally posted by rabii
      Try this

      PHP Code:
      if(entity\isAttributeChanged('lEGALFORM') && !string\contains(lEGALFORM'INC')){
      string\concatenate(name' '"INC");,
      string\concatenate(name);



      HEY,
      This Code is NOT working for me on before save custom script formula section.

      Comment

      Working...