I am not sure how that works because of the caching Livelink uses when the user enters in the attributes during the move process. Each time our workflow runs the categories could be different depending on the location that they user is going to move the document to. So how would I make it flexible and dynamic enough to be able to handle this different scenarios. Also I need to remember that the users I am dealing with are very primitive users that are really just learning how to use the mouse. I need to somewhat be consistent on how they enter data into the system, therefore by showing a multi line text box would probably confuse them. I need to show the same or similar window Livelink shows when attributes are required during the standard move process.
You are saying this functionality will be available in the next major release of Livelink, when might this be? I need to have all of this working by the end of August.
--------Livelink Appearance: the best way to skin Livelink.Contact hstoop@opentext.com for more information.
-----Original Message-----From: eLink Discussion: Development Discussion [mailto:development@elinkkc.opentext.com]Sent: dinsdag 18 juni 2002 14:20To: eLink RecipientSubject: RE RE Attributes, Workflow, and Inheritance RE RE Attributes, Workflow, and Inheritance Posted by eLink on 06/18/2002 08:19 AM In reply to: RE Attributes, Workflow, and Inheritance Posted by lang (Lang, Jeff) on 06/17/2002 03:33 PM Message from <Bryan.Finney@gianteagle.com> via eLinkI am not sure how that works because of the caching Livelink uses when the user enters in the attributes during the move process. Each time our workflow runs the categories could be different depending on the location that they user is going to move the document to. So how would I make it flexible and dynamic enough to be able to handle this different scenarios. Also I need to remember that the users I am dealing with are very primitive users that are really just learning how to use the mouse. I need to somewhat be consistent on how they enter data into the system, therefore by showing a multi line text box would probably confuse them. I need to show the same or similar window Livelink shows when attributes are required during the standard move process. You are saying this functionality will be available in the next major release of Livelink, when might this be? I need to have all of this working by the end of August.
Once I have the attribute values using:result = llNode.NodeCategoriesGet( thisDapiNode )What would be the easiest way to get the HTML for each of the attribute types? Is there a function I can use?
I have a list of assoc's that store the attribute information in a single workflow attribute field. I can now move a document from one location to another in a general callback script and applied the cats and atts to the document from the destination location. Now I need to be able to update the cats and atts based on the wf list of assoc's that is stored in the workflow. How can I do this?
I am able to get the SegmentBlob by using:Assoc result = $LLIApi.AttrData._DBGet(str.stringtoInteger(destValuesList[ 3 ]),originalNode.pVersionNum)destAttrAssoc = str.StringToValue(result.BlobDataRecs[ 1 ].SEGMENTBLOB)And I am able to update the segmentblob with the wf data but how do I update the data back to the database? I was trying to use the _DBPut by I can not seem to get the dataRecs values? Do you know a simple way of doing these?