Home
Extended ECM
API, SDK, REST and Web Services
Accessing workflow
unknown
Hi,I have created workflow object and designed the map. Also defined the steps for document approval process. I need to access this workflow through LAPI. I have gone thorugh the WAPI and couldn't understand how to access the workflow. Would you please guide me how to do that? Any samples are great help.Thanks.
Find more posts tagged with
Comments
eLink User
Message from Kai-Uwe Schmidt via eLinkHi,status = LL_LoadMap(m_LLSession, m_lEWSVolID, WFOBJID, 0, Map);if (status == LL_OK) { status = LL_StartWorkflow(m_LLSession, Map, "WF_NAME", 0, &plWorkID); if (status == LL_OK) {regardsKai-UweAm Di 06.04.2004 01:00, eLink Discussion: LAPI Discussion schrieb:> Accessing workflow> Posted by APPMAT03gdc on 04/05/2004 07:00 PM> > Hi,> I have created workflow object and designed the map. Also defined the steps for document approval process. I need to access this workflow through LAPI. I have gone thorugh the WAPI and couldn't understand how to access the workflow. Would you please guide me how to do that? Any samples are great help.> > Thanks.> > > [To reply to this thread, use your normal E-mail reply function.]> > ============================================================> > Discussion: LAPI Discussion>
https://knowledge.opentext.com/knowledge/livelink.exe?func=ll&objId=765428&objAction=view>
; > Livelink Server:>
https://knowledge.opentext.com/knowledge/livelink.exe>
; >
eLink User
Thanks for your reply. What is LL_OK here? LoadMap method returns an integer. If map gets loaded, start the workflow otherwise get the error message. Is that same LL_Ok is doing here? Thanks.
eLink User
Message from Kai-Uwe Schmidt via eLinkHm,i may have been a little to short in explantation
That was a snipset of c/c++ code. There you find in lapi.h (this will normally be installed under C:\[Programme|program files]\Open Text\Livelink API\include) the following line:#define LL_OK ( ( LLSTATUS ) 0x00000000 )so LL_OK = 0 and that means the previous lapi call got no error.Kai-UweAm Mi 07.04.2004 01:54, eLink Discussion: LAPI Discussion schrieb:> Thanks for your reply. What is LL_OK here? LoadMap method returns an integer....> Posted by APPMAT03gdc on 04/06/2004 07:49 PM> > Thanks for your reply. What is LL_OK here? LoadMap method returns an integer. If map gets loaded, start the workflow otherwise get the error message. Is that same LL_Ok is doing here? > > Thanks.> > [To reply to this thread, use your normal E-mail reply function.]> > ============================================================> > Topic: Accessing workflow>
https://knowledge.opentext.com/knowledge/livelink.exe?func=ll&objId=3415892&objAction=view>
; > Discussion: LAPI Discussion>
https://knowledge.opentext.com/knowledge/livelink.exe?func=ll&objId=765428&objAction=view>
; > Livelink Server:>
https://knowledge.opentext.com/knowledge/livelink.exe>
; >