02-02-2020, 01:03 PM
Hello,
I'm trying to create my first business map.
It work well on the Corebos demo system but not on my crm.
Maybe the different is that in my CRM I change in the translation file the name "Invoice" to "SomethingElse"
Here is one field mapping for example:
I try to change
to
AND , OR
the Business Map name from SalesOrder2Invoice to SalesOrder2SomethingElse.
How to debug it?
BTW: OrgfieldID is the database field IDs?
I'm trying to create my first business map.
It work well on the Corebos demo system but not on my crm.
Maybe the different is that in my CRM I change in the translation file the name "Invoice" to "SomethingElse"
Here is one field mapping for example:
Code:
<map>
<originmodule>
<originname>SalesOrder</originname>
</originmodule>
<targetmodule>
<targetname>Invoice</targetname>
</targetmodule>
<fields>
<field>
<fieldname>subject</fieldname>
<Orgfields>
<Orgfield>
<OrgfieldName>subject</OrgfieldName>
<OrgfieldID>634</OrgfieldID>
</Orgfield>
<Orgfield>
<OrgfieldName>sostatus</OrgfieldName>
<OrgfieldID>778</OrgfieldID>
</Orgfield>
<Orgfield>
<OrgfieldName>_FromSO</OrgfieldName>
<OrgfieldID>CONST</OrgfieldID>
</Orgfield>
<delimiter>;</delimiter>
</Orgfields>
</field>
<field>
<fieldname>due_date</fieldname>
<Orgfields>
<Orgfield>
<OrgfieldName>add_days(get_date('today'), 30)</OrgfieldName>
<OrgfieldID>EXPRESSION</OrgfieldID>
</Orgfield>
</Orgfields>
</field>
</fields>
</map>
I try to change
Code:
<targetname>Invoice</targetname>
to
Code:
<targetname>SomethingElse</targetname>
AND , OR
the Business Map name from SalesOrder2Invoice to SalesOrder2SomethingElse.
How to debug it?
BTW: OrgfieldID is the database field IDs?