Securing Accounts in RQ10

 1 Replies
 0 Subscribed to this topic
 16 Subscribed to this forum
Sort:
Author
Messages
stcyrk
Basic Member Send Private Message
Posts: 18
Basic Member

I am trying to restrict the accounts a user may choose for a line item on a requisition.  Basically, some AU's have revenue accounts which should not be charged to.  The accounts are sequential so I tried creatingconditional access in the appropriate security class that said

if(form.RQH_ACCOUNT<'xxxxx')
   'NO_ACCESS,'
else
   'ALL_ACCESS,'

But this does not prevent me from adding an item to a req with an account that that is less than xxxxx.

GregSl
Veteran Member Send Private Message
Posts: 38
Veteran Member
Try

if(lztrim(form.RQH_ACCOUNT<'xxxx')

Thanks!