Notifications
Clear all
Topic starter
I am trying to get the below text component to continuously evaluate the condition to pull in the form if the specified user opens a document (not just when they create it). Help?
Thanks
{cond case USER.LOGINNAME="test123" ADD_FORM_COMP("ENTERPRISE\Test","Testing","AT_END") else "" endcond}
Posted : November 5, 2012 12:08 am
created a hidden populated field on the form that you want to add. in your code, add a check of this hidden field. if the form is already added, this field should return true, so you don't try adding it again, else it should return false, so you would want to add it. add a ! at the beginning of your checking code, so it checks on update creation.
Posted : November 5, 2012 1:40 am