Section contains description of Process " CreateObligatorsRegistr.process " .
Folder | Description |
---|---|
CalculateBonita | Design Time Library which serves for calculating pretender bonita. This library using EMS for communication. |
/ProcessDefinitions | All process definitions |
/ProcessDefinitions/XMLCreator | Processes for creating default xml files |
Full process path: ProcessDefinitions/XMLCreator/CreateObligatorsRegistr.process
Mapping table
Target | Source |
---|---|
/ObligatorsList/@Count | 1 |
/ObligatorsList/Obligator/Name | "Jan Novak" |
/ObligatorsList/Obligator/Value | 100000 |
/ObligatorsList/Obligator/Problem | 0 |
/ObligatorsList/Obligator/Refund | 5000 |
Mapping tree
Mapping |
---|
ObligatorsList @Count = 1 Obligator Name = "Jan Novak" Value = 100000 Problem = 0 Refund = 5000 |
Source code
Mapping |
---|
<pfx:ObligatorsList xmlns:pd="http://xmlns.tibco.com/bw/process/2003" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns="http://www.tibco.com/pe/DeployedVarsType" xmlns:pfx="http://www.tibco.com/schemas/GrantingCredit/SharedConnections/Schema1.xsd" xmlns:ns2="http://www.tibco.com/namespaces/tnt/plugins/file"> <xsl:attribute name="Count"> <xsl:value-of select="1"/> </xsl:attribute> <pfx:Obligator> <pfx:Name> <xsl:value-of select=""Jan Novak""/> </pfx:Name> <pfx:Value> <xsl:value-of select="100000"/> </pfx:Value> <pfx:Problem> <xsl:value-of select="0"/> </pfx:Problem> <pfx:Refund> <xsl:value-of select="5000"/> </pfx:Refund> </pfx:Obligator> </pfx:ObligatorsList> |
Mapping table
Target | Source |
---|---|
/WriteActivityInputTextClass/fileName | $_globalVariables/ns:GlobalVariables/DefaultObligatorsRegistrFile |
/WriteActivityInputTextClass/textContent | $RenderXML-ObligatorsList/xmlString |
Mapping tree
Mapping |
---|
WriteActivityInputTextClass fileName = $_globalVariables/ns:GlobalVariables/DefaultObligatorsRegistrFile textContent = $RenderXML-ObligatorsList/xmlString |
Source code
Mapping |
---|
<ns2:WriteActivityInputTextClass xmlns:pd="http://xmlns.tibco.com/bw/process/2003" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns="http://www.tibco.com/pe/DeployedVarsType" xmlns:pfx="http://www.tibco.com/schemas/GrantingCredit/SharedConnections/Schema1.xsd" xmlns:ns2="http://www.tibco.com/namespaces/tnt/plugins/file"> <fileName> <xsl:value-of select="$_globalVariables/ns:GlobalVariables/DefaultObligatorsRegistrFile"/> </fileName> <textContent> <xsl:value-of select="$RenderXML-ObligatorsList/xmlString"/> </textContent> </ns2:WriteActivityInputTextClass> |