Access restriction

Namasiva

Member
In the Sales Order by Order Browse 7.15.4 – can this be restricted to retrieve information for only the for a particular site?

In the Invoice Print we need to restrict this to being able to invoice "particular site" orders only - is it possible ?

Thanks for your help.
 
if your user is set up under site security aint then use this loc;

/* This validation file will check site against the site master */
/* and will check if the user has password access to change the */
/* site */


/* &field = database field */
/* &blank_ok = yes or no blank site ok ? */

(can-find(si_mstr where si_site = {&field}) or ({&field} = "" and
{&blank_ok})) and

(not can-find(first flpw_mstr where flpw_field = frame-field)
or
can-find (flpw_mstr where flpw_field = frame-field and
flpw_userid = global_userid)
or {&field} not entered)
 
Hi Chari,

Site security works with programs that change
data and have a site field.Site security WILL check programs where a range of sites can be specified.

Here I want the security for Invoice printing and Saled order browse.

Can you help me about this?
 
Hi Chari,

Thanks for your reply,

I am bit confused in your validation logic and the codes are customised by QAD(invoice Print ) and we don't have the source code for the same.

could you please explain your validation logic and help me to go about it.

Thanks in advance..
 
Hi chari,

Thanks for your reply,

Could you please help me out how should i do the same with out Source code?.


Thanks in advance
 
Sorry I meant It cant be done without source code for invoice print.
we can customise the browse to show orders for site specific either by having site in selection criteria or building the user-site logic in the browse.
 
Back
Top