Closed lotsaram closed 1 year ago
Describe the bug cUserName = AttrS('}Clients', cUser, '}TM1_DefaultDisplayValue'); on Prolog 32 causes error as there is no check that element exists in }Clients (for example in the case of a scheduled chore).
Expected behavior Replace with
cUserName = ''; If( DimIx('}Clients', cUser) > 0 ); cUserName = AttrS('}Clients', cUser, '}TM1_DefaultDisplayValue'); EndIf; cUserName = IF( cUserName @<> '', cUserName, 'ADMIN' );
Describe the bug cUserName = AttrS('}Clients', cUser, '}TM1_DefaultDisplayValue'); on Prolog 32 causes error as there is no check that element exists in }Clients (for example in the case of a scheduled chore).
Expected behavior Replace with