User Tools


Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
en:adminmanual:businessmappings:infomap [2020/07/19 19:47]
gmoshi
en:adminmanual:businessmappings:infomap [2021/12/12 13:14] (current)
joebordes
Line 15: Line 15:
 </​code>​ </​code>​
  
-This type of map is useful when we have a set of information that we want the implementor to be able to change ​we relative ease but we don't want to create a new module just for that as the set is usually small and contains small pieces of data.+This type of map is useful when we have a set of information that we want the implementor to be able to change ​with relative ease but we don't want to create a new module just for that as the set is usually small and contains small pieces of data.
  
 For example, coreBOS uses this type of map as a parameter to the workflow expression methods that calculate business dates. The **next_date** and **holidaydifference** accept a comma separated list of dates to define which dates are holidays. Instead of having to repeat that list in every workflow where you need to use these functions and then have to edit them once a year, we can pass in as a parameter the crmid/name of an information business map with the dates, something like this: For example, coreBOS uses this type of map as a parameter to the workflow expression methods that calculate business dates. The **next_date** and **holidaydifference** accept a comma separated list of dates to define which dates are holidays. Instead of having to repeat that list in every workflow where you need to use these functions and then have to edit them once a year, we can pass in as a parameter the crmid/name of an information business map with the dates, something like this:
Line 74: Line 74:
 </​code>​ </​code>​
  
-Example 
-<​code>​ 
-<map> 
-<​information>​ 
-<​infotype>​Holidays</​infotype>​ 
-<​value>​2020-05-13</​value>​ 
-<​value>​2020-05-29</​value>​ 
-</​information>​ 
-</​map>​ 
-</​code>​ 
 Making it much easier to maintain. Making it much easier to maintain.