This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Using Additional Connection Variable for Synchronization Project

I have a CSV file. I have created Sync project with "Data Import" option to make it not FULLSYNC. I have added one more connection variable

 

My requirement is :

1. Template Needs to be Executed

2. My Custom Process for Update Event should not trigger when I do import from Sync Project

     - Generating condition is

Value = Not CBool(Connection.Variables("FULLSYNC")) and Not CBool(Connection.Variables("RSAIMPORT")) and $UID_UNSRootB$ =Connection.GetConfigParm("Custom\RSA\AuthentigationManager\UIDUNSRootB")

 

 

But it does not work. My custom triggers during sync project import.

 

Am i missing anything ?

Parents
  • Sorry, but I had to correct my initial post. You need to check the property Connection.User.Name against Synchronization.

    So your gen. condition would be

    Value = Not CBool(Connection.Variables("FULLSYNC")) And Not (Connection.User.Name.Equals("Synchronization", StringComparison.InvariantCultureIgnoreCase) And $UID_UNSRootB$ =Connection.GetConfigParm("Custom\RSA\AuthentigationManager\UIDUNSRootB")

    HtH

Reply
  • Sorry, but I had to correct my initial post. You need to check the property Connection.User.Name against Synchronization.

    So your gen. condition would be

    Value = Not CBool(Connection.Variables("FULLSYNC")) And Not (Connection.User.Name.Equals("Synchronization", StringComparison.InvariantCultureIgnoreCase) And $UID_UNSRootB$ =Connection.GetConfigParm("Custom\RSA\AuthentigationManager\UIDUNSRootB")

    HtH

Children
No Data