Do not let any software impress you!

Only let it convince your intellect.
Slider img 1
Do not look for a business paradise!

It is a waste of time.
Slider img 2
Only yourself can push you uphill.

There is no easy road to prizes.
Slider img 3
Productivity is the name of the game.

And you have to conquer it.
Slider img 4
As long as you understand it,

you will start to build your know-how.
Slider img 5
We can help with that.

We have the tools and the method.
Slider img 6
Procedure : AU_SETUP_BUSINESS_COORDINATOR

AutoScript

start_agent_info
   AgentName = "AU_SETUP_BUSINESS_COORDINATOR"
   AgentDescr = ""
   PR_FNAME = ""
   PR_TNAME = ""
   AgentLanguage = ""
   __delete_on_termination = 0 {....1=the agent frees itself when terminates its task}
end_agent_info

start_action
     {.....a snipet of some action code is shown here...(CHANGE IT!!!)}

     rec_id = __params[1]                     {....get input parameter (usualy the record id of starting form)}
     comm = __params[2]                     {....maybe the comments are the second parameter}

     call bpm_setprocedurecomment(comm)                {.....set the procedures comment}
     call bpm_setprocedureowner(__activation_user)      {.....set the procedure owner}

     call bpm_openatonce()
     callwait bpm_assign_job ( "First Task Name" , __activation_user , "" , 0 , rec_id )

end_action