hi all
can we set for user can and cannot see the factbox in customer card?
for example user A, can open customer card but cannot see the factbox at the right side
but user B, can open customer card but can see the factbox at the right side
does nav provide that?
or we must customize?
thanks
0
Comments
Set a boolean (true or false according to a particular test) as value of property visible, but seems that factboxes are invulnerable to it.
In addiction to it, if you set visible to false the factbox is hidden but if user do "Customize this Page" could show all the factbox he want.
It works as expected... More or Less...
when a user see that he has not permission for the factbox, he can hide it forever
"Never memorize what you can easily find in a book".....Or Mibuso
My Blog
1. Remove the SubFormLink from Customer Card attached in the Customer FactBox.
2. Write code under OnAfterGetRecord() trigger in the Customer Factbox page to set the customer (i.e Same as set in SubFormLink Property for FactBox in Customer Card) which would trigger for the user you want only.
Example
If User=A then
FactBoxCustomer.Setrange(FactBoxCustomer.No,CustomerCard.No);
Hope this would work.
Manish