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

event ASSIGN on UNSAccountBInUNSGroupB is generated outside of the connection

Hello,


I have fullsync script where I set FULLSYNC connection variable to prevent processes to generate.
When I create missed UNSAccountB in IDM the processes aren't generate (event = INSERT on UNSAccountB)
but
When I make assignment (insert into UNSAccountBInUNSGroupB) the processes are generated despite generation condition with the variable check.
I suppose that event ASSIGN is sent somewhere outside of my connection and the condition is true.

How can I suppress process generation in that case?

Thank you

Parents
  • Hi Markus,
    I found out that xOrigin and xIsInEffect are write protected even with FULLSYNC = TRUE

    MsgBox(CStr(Connection.Variables("FULLSYNC"))) -------------------------------< TRUE

    dbAIG = Session.Source.CreateNew("UNSAccountBInUNSGroupB")

    dbAIG.PutValue("UID_UNSAccountB", uidUNSAccountB)
    dbAIG.PutValue("UID_UNSGroupB", uidUNSGroupB_Template)
    dbAIG.PutValue("XOrigin", bmDirect) ---------------------------< Write permission denied EXCEPTION
    dbAIG.PutValue("XIsInEffect", 1)

    dbAIG.Save(Session)
Reply
  • Hi Markus,
    I found out that xOrigin and xIsInEffect are write protected even with FULLSYNC = TRUE

    MsgBox(CStr(Connection.Variables("FULLSYNC"))) -------------------------------< TRUE

    dbAIG = Session.Source.CreateNew("UNSAccountBInUNSGroupB")

    dbAIG.PutValue("UID_UNSAccountB", uidUNSAccountB)
    dbAIG.PutValue("UID_UNSGroupB", uidUNSGroupB_Template)
    dbAIG.PutValue("XOrigin", bmDirect) ---------------------------< Write permission denied EXCEPTION
    dbAIG.PutValue("XIsInEffect", 1)

    dbAIG.Save(Session)
Children
No Data