Securing Accounts in RQ10

Sort:
You are not authorized to post a reply.
Author
Messages
stcyrk
Basic Member
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
    Posts: 38
    Veteran Member
      Try

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

      Thanks!
      You are not authorized to post a reply.