I have been working on creating a specific obs term for Central worklist , the obs term requires the variable to be separated by tilde (~) , Can someone tell me how to do this.
cwmupdate = programid~transid~userid~action~occurred date~note text~timespent~eventid
This is what they require to pull into their system
Nannette,
The short answer is to collect the values of your variables with controls on a form and then call a function when a button is pressed which will format the string needed and store in your OBS term. See example:
local worklist
worklist = DOCUMENT.PROGRAMID + '~' + DOCUMENT.TRANSID + '~' + DOCUMENT.USERID + '~' + DOCUMENT.ACTION + '~' + DOCUMENT.OCCURREDDATE + '~' + DOCUMENT.NOTETEXT + '~' + DOCUMENT.TIMESPENT + '~' + DOCUMENT.EVENTID
OBSNOW("CWMUPDATE",worklist)
I hope this gets you pointed in the right direction.