Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

The roles of the approvers should be set in OD_USER_ROLES_MAP_MB table with the User and Role mapping.


Here, the column OD_USER_NO is a unique identification of users and the column OD_ROLE_LEVEL specifies their respective Roles that each user is assigned to.

 


Note

The roles should be defined in the master table OD_ROLES_MB.


Here, the column OD_LEVEL specifies the list of roles that are defined in the system for a particular group (OD_GCIF) of users.

...

Code Block
languagejs
{
"authflow" : [
	{
		"tier" : [
		{
  			"type" : "number", 
 			"min" : 100, 
 			"max" : 1000, 
  			"workflow" : 
   			{ 
				"type" : "sixeye", 
				"flow":[
				{
   					"role":"A",
   					"completed":false
				},
				{
					"role":"B",
  					"completed":false
				}] 
   			} 
		}
	}
}

Non-Hierarchical Workflow Example:

...

Code Block
languagejs
{
"authflow" : [
	{
		"tier" : [
		{
			"type" : "number", 
			"min" : 100, 
			"max" : 1000, 
			"workflow" : 
  	 		{ 
				"type" : "sixeye", 
				"flow":
				{
   					"completed":false
				} 
   			} 
		}
	}
}