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

Sync editor - Set attribute on object not found in 1IM

Hello

I'm using v8.0

In the sync editor, if an object is found in the TS but not in 1IM, instead of setting XMarkedForDeletion is it possible to instead update an attribute on the object which is not found? 

For instance, on my UNSAccountB I have a custom column which I would like to update if the account is not found in TS instead of using XMarkedForDeletion. Is this possible in the workflow somehow?

Thanks

Kin

Parents Reply
  • Version 8.1 of OneIM allows you to define custom scripts that can be triggered instead of Delete or MarkAsOutstanding for that.

    The definition of the script would look similar to the following example:

    <Tag("Projector")>
    <BaseObjectType("UNSAccountb")>
    Public Sub MyCustomMethodName(unit As IUnitOfWork , entity As IEntity())
        
        ' do something
        ' ...
        
    End Sub

Children