Hi… I had posted the same problem yday but seems that it has not been solved…so posting it again…
When the current logged in user is PrimarySponsor(term in the doc) or he is a Requestor and the status of the document is Released, then that user should be allowed to edit only one field of the document. How to achieve this?
I tried to create a access controled section and made it a computed section and pasted below code on it. Its not working .What can be the reason?
temp_0:=@Name([CN];@UserName);
temp_1:=@Name([CN];PrimarySponsor );
temp_2:=@Name([CN];Requester );
@If ( ( (RCNAppStatus=“Released” ) & ( (temp_0=temp_1) | (temp_0=temp_2) ) );temp_0;“”)
Pls reply…