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

How to add custom columns in Edit IT Operating data task of a Business Role

I want to use column UNSAccountB.MatchPatternForMembership or UNSGroupB.MatchPatternForMembership in "Edit IT operating data" task of a Business Role.

How to add custom columns in Edit IT Operating data task for a Business Role, ADSAccount, ORG, etc.

Parents Reply
  • Hi, sorry to interfere here but I've found this thread about a topic I was just working in (v8.0.1)

    I've configured IT custom data for the column Adsaccount.ScriptPath as stated on the doc and Markus' answer as such:

    '$FK(UID_Person).UID_Department$
    '$FK(UID_Person).UID_Locality$
    '$FK(UID_Person).UID_ProfitCenter$
    #If ORG Then
    '$FK(UID_Person).UID_Org$
    #End If
    If CBool(Connection.Variables.Get("FULLSYNC")) = False Then
    Select Case ($FK(UID_TSBBehavior).ITDataUsage:Int$)
    Case 0:'do not get data from employee
    Case -1:'fill property initially from the ITData of the employee
    If Not $[IsLoaded]:Bool$ Then
    Value = VID_IsTrue(TSB_ITDataFromOrg($UID_Person$, $UID_TSBAccountDef$, Base.TableDef.Columns("ScriptPath")))
    End If
    Case 1:'update property depending on ITData of the employee
    Value = VID_IsTrue(TSB_ITDataFromOrg($UID_Person$, $UID_TSBAccountDef$, Base.TableDef.Columns("ScriptPath")))
    End Select
    End If

    Then setup IT data for my account definitions, like I've done several times before. I need this value to default to "conectar.bat" but no matter what, the column always get filled with the value "False" on the created account. Anything I'm missing?

    Thanks!

Children