Home
Extended ECM
API, SDK, REST and Web Services
LAPI9 StartWorkflow - additions to attachments -doesn't work?
Mark_Wagner_(COSSOF01Admin_(Delete)_2345798)
The workflow starts, but without the additional attachments.Here is the code: LLValue map = ( new LLValue() ).setAssocNotSet(); workflow.LoadMap( VolumeID, WorkflowID, 0, map ); LLValue additions = ( new LLValue() ).setList(); additions.add( "28111" ); LLValue workID = ( new LLValue() ).setAssocNotSet(); workflow.StartWorkflow( map, null, additions, workID );Can anybody help?
Find more posts tagged with
Comments
Alla_Kibzoun_(akibzoun_(Delete)_2413245)
I tried:int ID=73756;LLValue objID = new LLValue().setAssocNotSet();objID.add("ID",ID);objID.add("Type",LAPI_DOCUMENTS.OBJECTTYPE);additions.add(objID);and int ID=73756; LLValue LL_ID = new LLValue(ID);additions.add(LL_ID);Doesn't work: workflow.StartWorkflow( map, "name", additions, workID );