igoodworks
:[ Log On ]
:[ Register ]
illuminate your business

illuminate your business




  • Jone

    Member

    9/9/2014


    Simply Sync Password

    Manipulate the attributes

    We are looking for a product that can manipulate the attributes when they sync.
    We would need to be able to use expressions to build out rules for modifying attributes.
    does the simply sync tool support this?

  • Support

    Member

    9/9/2014


    Re: Manipulate the attributes

    Yes, the Simply Sync Tool support it.

    You can use “PreTrigger” feature which run just before the target attribute is updated.
    This PreTrigger is powershell script.

    The following is example to format telephone number.

    $intNumber = [int64]$telephoneNumber
    $telephoneNumber = “{0:(###) ###-####}” -f [int64]$intNumber

    Let us know if you have any other questions.