Section contains description of Process " CreateInputFile.process " .
Folder | Description |
---|---|
GrantingCredit | The application Granting credit provides resolution whether a credit (or mortgage) can be granded to a user. Information about user is the input of the application. |
/ProcessDefinitions | All process definitions |
Mapping table
Target | Source |
---|---|
/InputParameters/Name | "Jan Novak" |
/InputParameters/Value | 750000 |
/InputParameters/Refund | 5000 |
/InputParameters/Salary | 20000 |
/InputParameters/Pawn | 1 |
/InputParameters/RealtyDetail | "Realty no: 1587649" |
/InputParameters/RealtyValue | 1500000 |
Mapping tree
Mapping |
---|
InputParameters Name = "Jan Novak" Value = 750000 Refund = 5000 Salary = 20000 Pawn = 1 RealtyDetail = "Realty no: 1587649" RealtyValue = 1500000 |
Source code
Mapping |
---|
<pfx:InputParameters xmlns:pd="http://xmlns.tibco.com/bw/process/2003" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:pfx="http://www.tibco.com/schemas/GrantingCredit/SharedConnections/Schema.xsd" xmlns:ns="http://www.tibco.com/pe/DeployedVarsType" xmlns:ns2="http://www.tibco.com/namespaces/tnt/plugins/file"> <pfx:Name> <xsl:value-of select=""Jan Novak""/> </pfx:Name> <pfx:Value> <xsl:value-of select="750000"/> </pfx:Value> <pfx:Refund> <xsl:value-of select="5000"/> </pfx:Refund> <pfx:Salary> <xsl:value-of select="20000"/> </pfx:Salary> <pfx:Pawn> <xsl:value-of select="1"/> </pfx:Pawn> <pfx:RealtyDetail> <xsl:value-of select=""Realty no: 1587649""/> </pfx:RealtyDetail> <pfx:RealtyValue> <xsl:value-of select="1500000"/> </pfx:RealtyValue> </pfx:InputParameters> |
Mapping table
Target | Source |
---|---|
/WriteActivityInputTextClass/fileName | $_globalVariables/ns:GlobalVariables/DefaultInputParametersFile |
/WriteActivityInputTextClass/textContent | $RenderXML-InputParameters/xmlString |
Mapping tree
Mapping |
---|
WriteActivityInputTextClass fileName = $_globalVariables/ns:GlobalVariables/DefaultInputParametersFile textContent = $RenderXML-InputParameters/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:pfx="http://www.tibco.com/schemas/GrantingCredit/SharedConnections/Schema.xsd" xmlns:ns="http://www.tibco.com/pe/DeployedVarsType" xmlns:ns2="http://www.tibco.com/namespaces/tnt/plugins/file"> <fileName> <xsl:value-of select="$_globalVariables/ns:GlobalVariables/DefaultInputParametersFile"/> </fileName> <textContent> <xsl:value-of select="$RenderXML-InputParameters/xmlString"/> </textContent> </ns2:WriteActivityInputTextClass> |