main
Said Gedik 2024-03-11 13:26:52 +01:00
parent 176582a70b
commit a028f782fd
1 changed files with 10 additions and 0 deletions

View File

@ -85,6 +85,16 @@ public class SupportGroup {
if (this.supportGroups.isEmpty()) {
throw new NotFoundError("No support groups found in this context");
}
System.out.println("NEUE ABFRAGE");
api.impersonateUser("ext_StanzPa");
var a = new Query.QueryBuilder("CTM:PeopleUserSupportGroupFunctionalRoleLookup")
.addFieldId("SupportGroupId", 1000000015).build();
var q = api.queryFieldsById("\'1000000015\' != \"_\"", a.getFieldIds(), a.getFormName(), null, 0, 0);
System.out.println(q);
api.freeImpersonatedUser();
}