Hello,
I think is something in my rules. I have created another app and same thing
This is a multi-tenant app in which I protect records of companies of each other with PROTECT rules.
I have this BO's:
Company
UsersCompany (with CompanyAdmin and CompanyOperator ACL levels)
Invoices
In Invoices BO I have this rules:
To initialize the Company:
If Invoices.Company IS UNDEFINED Then
Invoices.Company=LoggedInUsersCompany.Company
To protect from otehr companies:
If TYPE(LoggedInSystemUser)='UsersCompany' AND LoggedInUsersCompany.Company<>Invoices.Company Then
READ PROTECT Invoices FROM CompanyAdmin AND CompanyOperator
If I create a query of the INVOICES, I do not see any of new created invoices and in the log of AwareIM server when I try to view this query I see this:
Value of [RegularUser, UsersCompany] could not be resolved
INFO: OutputAdaptor1.Controller has commited 1400 transactions
Value of [RegularUser, UsersCompany] could not be resolved
Value of [RegularUser, UsersCompany] could not be resolved
Value of [RegularUser, UsersCompany] could not be resolved
Value of [RegularUser, UsersCompany] could not be resolved
Value of [RegularUser, UsersCompany] could not be resolved
Value of [RegularUser, UsersCompany] could not be resolved
INFO: InputAdaptor1.Controller has commited 1400 transactions
Value of [RegularUser, UsersCompany] could not be resolved
Value of [RegularUser, UsersCompany] could not be resolved
Value of [RegularUser, UsersCompany] could not be resolved
Value of [RegularUser, UsersCompany] could not be resolved
Value of [RegularUser, UsersCompany] could not be resolved
Value of [RegularUser, UsersCompany] could not be resolved
Anyone can help? I will greatly appreciate.
Thank you