This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

DEVELOPERS FORUM - Disable Save As Functionality

yogesh_kudalkar - Monday, April 13, 2015 6:56 AM:

Is there a way to disable the Save As functionality on particular ItemTypes?



zahar - Monday, April 13, 2015 8:21 AM:

Attach server method to ItemType with one line (C#):

return this.getInnovator().newError("Operation is not allowed");

 

event: onBeforeCopy



yogesh_kudalkar - Monday, April 13, 2015 8:36 AM:

Thanks Zahar. It worked!!!