


Hi ,
I am trying to create a workflow which will be requiring to uncheck the "keep interim result" check box. I can always go to the workflow and can do it because surely that is not the best practice.
But what I am trying to achive is to uncheck that box by changing the value of @keepresult in xtk:workflow schema from YES to NO , how exaclt I can achive that through javascript ?
Thanks
Arif
Hi Arif,
Write something like this.
var keepResultIn = 0;
var iWorkflowId = instance.id; // update this is to get all ids if you want to do a bulk, this code will work for current workflow
if(instance.keepResult) {
xtk.session.Write(<workflow xtkschema="xtk:workflow" _operation="update" id={iWorkflowId} keepResult={keepResultIn}/>);
}
Regards,
Amit
Hi Amit,
Thanks! for the help, it's quite useful . You are a superhero . : )
Hi Amit,
I replace
var keepResultIn = 0; by var keepResultIn = '';
And all objetcs of my workflow were disappear
How to correct the problem.
Thanks
Views
Replies
Sign in to like this content
Total Likes