-
Beta Was this translation helpful? Give feedback.
Replies: 9 comments 18 replies
-
Hi @lazo23, For testing you can just fill out the field with a dummy address "[email protected]" .
to allow the same email address for multiple accounts (Administration -> Konfiguration -> weitere Einstellungen) In addition you can set this setting will catch all outgoing emails and redirect it to a custom list of e-mail addresses. In addition there are several ways how to authenticate and manage users within Imixs-Office-Workflow. For example you can also connect the system with a LDAP directory or a SSO module. But even than an E-Mail would be expected. Please let me know if this helps you to continue your tests. |
Beta Was this translation helpful? Give feedback.
-
Hi @rsoika, thank you for the quick answer. I used the a dummy adress as you recommended. This is for this moment enough. Right now, i want to test the ACLs that i defined for the tasks, so it is about to see if the tasks "jump" to the right role. By the way i am modelling a workflow for "permission change". The main idea is to use imixs-office-workflow as a ticket system and i wish to create single workflows for every relevant ticket within the complany, such as "permission change". I also have some problems while modelling a workflows. For example configurating a task, but i will come to you later for that. |
Beta Was this translation helpful? Give feedback.
-
Hi @rsoika, I need help configurating a task for a workflow. How do i define the inputs when the workflow is uploaded to imixs-office-worflow? Can i only do that from Task Properties->Workflow and then edit summary? For example: Is there another way to do that? Also, can i configurate a workflow with 4 roles? In the given examles i can only see that there are everytime 3 roles. Can i add a second space manager? The reason i want that is, that for a complicated workflow like "permission change" are more than 3 roles involved. |
Beta Was this translation helpful? Give feedback.
-
Yes i have. So as i have already said, i am trying to customize workflow models for some business processes as "permission change management". So far i have created this workflow model: For every business process are information needed. The information gathering need to be done in the first task of this workflows (Erstellung). Every time someone want's to creates a new permission change workflow in imixs-office-workflow needs to share the following information, so the change can be done:
This is an example of imixs sultions. How can i custimize my own text fields? Is it something that can be done in imixs-BPMN Modeler? |
Beta Was this translation helpful? Give feedback.
-
Hello @rsoika, my problem now is that, in my workflow model are many spaces involved. In order to solve this problem I have linked the roles with the provided positions. So, to use the role ISB I have defined that ISB is the process assistant, although he is a space manager. How can I link for a different task a different space manager/team/assistant? Here is the organigram: The following actors are defined in the workflow: If I add a second space manager/team/assistant in the actor properties list, will they be linked with the right space manager/team/assistant from imixs-office-workflow? I am asking this because i have tried it and it didnt work. How does the linking work? Also, i want to create a drop down menu with some software names (i know how to do that), that the user can use to select in which software he wishes his access rights to be changed. For every software is a different space manager responsible. How can i link the software (selection) with different space managers/teams/assistants? The goal is that when user give the needed information, in this case the software name, the system then knows which space is for this software responsible and not the opposite. |
Beta Was this translation helpful? Give feedback.
-
Hi @lazo23, With the help of the TeamPlugin - which you are already using - you can assign a workitem to a static Space or process. Just add the following expression into your Event Workflow Result:
This will change the current Space.Ref to the new defined space fully controlled by your model. Further more there is a internal intercepter mechnism which you can also use in the modeler mapping of actor roles. You can define an Actor-Mapping like this:
This will resolve the corresponding team list. Find more details here But be careful: I recommand to assign a workflow instance only to one space and one process. This makes the process more transparent in production. There is one team responsible for a specific task in the model. With the software selection problem, you can use again the teamPlugin in your model to assign a space depending on a item in your process instance:
The "sofwareselection" will be resolved and so you can assign the process instance to the corresponding space. |
Beta Was this translation helpful? Give feedback.
-
Hello @rsoika, You said: "Think about the problem with the Software. The model does not need to know all software-teams. It just defines that the space.team is responsible. And in your event you can assign the workitem to the right space depending of the information in your form fields." So basically, I could define in the Event Result for which software which space responsible is by checking the information that was selected in the field "Anwendung" (Software). How does the expression look that I need to add in the Event Result to do that? Can you give me an example? Programmatically speacking I could do this (Pseudocode):
Can I do something like that in the Event Result? |
Beta Was this translation helpful? Give feedback.
-
Try a script rule like this: var result={};
var _anwendung='';
if ( ( workitem.get("Anwendung") != null && !''==workitem.get("Anwendung")[0]) ) {
_anwendung=workitem.get("Anwendung")[0];
// set space depnding on anwendung
if(Anwendung == "software_name1"){
result.anwendungspace = "management.isb";
} else if(Anwendung == "software_name2"){
result.anwendungspace = "management.busibess_development";
}
} This will compute a new field named 'anwendungspace' Than you can set the Event Result to :
Your situation is very complex. So you can also try to implement a Java Plugin for this mapping. Or - that was what I expected - you create in the Organigram a parent node 'Anwendungen' and place for each Anwendung a child-node defining the responsibilities. Than the user simply selects the Space with the corresponding Anwendung and no mapping is needed. |
Beta Was this translation helpful? Give feedback.
-
Hello @rsoika, I know that its possible to upload a file in imixs-office-workflow, but can I somehow make it necassary to the user to upload a file in able switch to the next task? Do I have to define that in the Event Workflow Rule or can it also be done in a custom-form? |
Beta Was this translation helpful? Give feedback.
Hello @rsoika,
I know that its possible to upload a file in imixs-office-workflow, but can I somehow make it necassary to the user to upload a file in able switch to the next task? Do I have to define that in the Event Workflow Rule or can it also be done in a custom-form?