Hi,
while select @Group, Owner, Access from secPermissionTbl where (secPermissionTbl.SECURABLEOBJECT == securableObjectRecId )
join recId from permissionOwnerTbl where (secPermissionTbl.OWNER == permissionOwnerTbl.RECID)
Group is a field in that table. We also have group by in AX with same name.
It cannot be used directly in select statement. (@) is used , so that it will be considered as field rather than the function in AX.
I have separated it from original thread and created a new thread. (so that it will help other with same question).
Hi,
Thanks a lot kranthiā¦