How do companies that use RQC manage security on the receiving screen? Do other companies try to limit the purchase orders that can be received to the requester's location? We have tried to do this using a security rule:
if(table.BUYER_CODE == 'FAC' && user.attributeContains('Group','RQCUserFacilities'))
'ALL_ACCESS,'
elseif(trim(table.LOCATION) == lztrim(user.getAttribute('RequestingLocation')))
'ALL_ACCESS,'
else
'NO_ACCESS,'
It looks like this rule is causing the page to load very slowly, up to 5 minutes in some cases. If you have tried to put security on this form to limit the purchase orders I would like to hear what you did.
Thanks,