Workflow log for users

Everything regarding workflow.

Workflow log for users

Příspěvekod andesys » ned 06. pro 2015 11:39:17

(Translated from another language)
I have a workflow, that assigns a task to the manager of the user in order he approves a request. Everything runs smoothly, the manager gets an email with a link to the task to approve the request. In the workflow log I can see how the workflow proceeded. This can be, however. viewed by admin only and it is quite a technical view. Where an normal user without admin privileges can see status of his requests?
Uživatelský avatar
andesys
 
Příspěvky: 103
Registrován: úte 25. srp 2015 10:55:14

Re: Workflow log for users

Příspěvekod andesys » ned 06. pro 2015 11:50:22

Information for the user can be inserted into a class referring to the original request. Writing into this class can be done at the moment when notifications are sent to users after completing certain steps. In the original request we will create a master detail relation to the class with notifications and data inserted into this class can then be displayed in the detail of the given request – we log reference to the original request, date, user that performed the step and his comment.
Take a look at this example:

http://doc.objectgears.cz/Help.aspx?H=a_og_examples_cs_access_rights

There is a sample model for demonstrating a workflow solution. The log of messages to users is in the class
/Datas.aspx?CId=473


Writing to this class is performed in the workflow activity – see the scheme
/WFSeqDesign.aspx?Id=205


Example of an insert operation into the class with log of messages for the user

Kód: Vybrat vše
//Creating a record in the class Request flow
var clRF = OG.ClassDef.GetByCode( OGWFActualRun.ModelId, 'request-flow');
var drNew= OG.DataRow.CreateNew( clRF.Id);
drNew.SetClassLink( 6429, OGWFActualRun.Property.GetInteger('request-id'));
drNew.SetDateTime( 6431, System.DateTime.Now); 

//finding Full name of the manager
var p = OG.Person.GetById( OGWFActualRun.Property.GetInteger('manager'));
drNew.SetText( 6432, 'Request was submitted to the manager ' + p.FullName);

OG.DataRow.SaveData( drNew);

This master detail relation can be created from the class detail in which you have the request over which workflow is launched. The request then may look like this:
Přílohy
Request.png
Request.png (38.94 KiB) Zobrazeno 27497 krát
Uživatelský avatar
andesys
 
Příspěvky: 103
Registrován: úte 25. srp 2015 10:55:14


Zpět na Workflow

Kdo je online

Uživatelé procházející toto fórum: Žádní registrovaní uživatelé a 2 návštevníků