Source ERP · 16 of 105

CRMPro → Salesforce — ECi e-automate: what the shipped templates set up

Read it in the terminal with "dlake skills show dlake-crmpro-salesforce/erps/eci-e-automate". It extends the dlake-crmpro-salesforce skill, which holds what is true whatever the source ERP.

CRMPro → Salesforce — ECi e-automate: what the shipped templates set up

Keep this skill current. dlake ships updates often and this text is embedded in the CLI you have installed. Before relying on it, compare dlake --version with npm view @commercient/dlake version; if they differ, run npm install -g @commercient/dlake@latest and then dlake skills install, which overwrites the installed skill files with the current text.

dlake-crmpro is the parent skill and the authority for everything general: the crmpro_* tools, CRM_Configuration and CRM_FieldList, TimeStampRepository, the three kinds of source view, the NULL-cursor rule and the silent zero-record run. Read it first; this page does not repeat it. dlake-crmpro-salesforce is the destination skill this page is a child of, and the authority for the Salesforce conventions that hold across every ERP: read it first, then come back here for what this source’s own templates set. This page is dlake-crmpro-salesforce/erps/eci-e-automate.md, and that skill’s ERP table is what points at it. What follows is only what the shipped ECi e-automate → Salesforce templates themselves set, read from their Insert_Query, CreateViewQuery and MappingJson. This page grows as the catalogue does.

1. What the templates deliver

GroupBusiness outcomeObjectsSource tables and views
AccountIn addition to creating the Account record from your ERP customer records, Commercient syncs over the entire Accounting AR Customer record into a Commercient AR Customer object which is a Managed Custom Object (MCO). A lookup field is provided to lookup to the default AR Customer record MCO from the Account record. New records are created, existing ones updated, and records removed in the ERP are deleted.Account, ECI_E_AUTOMATE_Customer__cSF_ERP_Salesforce_Clone_CustomerDetails
InvoiceBoth Open and Historical invoices are synchronized. Open invoice changes, such as a balance change, or a terms change are reflected in the CRM as they sync based on the frequency of the sync you have chosen (e.g. every hour for example). New records are created, existing ones updated, and records removed in the ERP are deleted.ECI_E_AUTOMATE_Invoice_Header__c, ECI_E_AUTOMATE_Invoice_Detail__cSF_ERP_Salesforce_Clone_InvoiceList, CommercientFlags, SF_ERP_Salesforce_Clone_invoiceDetail

2. The process rows the templates create

Each template’s Insert_Query writes one CRM_Configuration row. These are the values it sets; a column the inserts never set is not listed.

Display nameCRM_Object_API_NameCRM_PK_API_NameSync_OrderTimeStamp_PrefixSQL_Query targetfield prefix / postfixSync_Operation_Type
Child AccountAccountCommercientSF__Commercient_ArCustomerCode__c2vw_ECIEAUTOMATE_Accountvw_ECIEAUTOMATE_ChildAccount'' / ''1
ECI E-AUTOMATE CustomerECI_E_AUTOMATE_Customer__cExternalKey__c3vw_ECIEAUTOMATE_Customervw_ECIEAUTOMATE_Customer'' / __c1
ECI E-AUTOMATE CustomerToAccountLookupAccountCommercientSF__Commercient_ArCustomerCode__c4vw_ECIEAUTOMATE_CustomerToAccountLookupvw_ECIEAUTOMATE_CustomerToAccountLookup'' / ''1
ECI E-AUTOMATE InvoiceHeaderECI_E_AUTOMATE_Invoice_Header__cExternalKey__c5vw_ECIEAUTOMATE_InvoiceHeadervw_ECIEAUTOMATE_InvoiceHeader'' / __c1
ECI E-AUTOMATE InvoiceDetailECI_E_AUTOMATE_Invoice_Detail__cExternalKey__c6vw_ECIEAUTOMATE_InvoiceDetailvw_ECIEAUTOMATE_InvoiceDetail'' / __c1

Every one of these inserts Is_Active as 0, so an imported process is inactive until an operator activates it. Across the set they insert Is_Create_Entity 0, Is_Create_Fields 0, Is_Active_Get_Records 0, Is_Active_Delete_Records 0, IsAccountMatching False, Sync_Batch_Size 200. Text columns a template does not use are inserted as '' rather than left NULL. On Child Account the SQL_Query names a view the same template’s CreateViewQuery does not create (vw_ECIEAUTOMATE_ChildAccount against vw_ECIEAUTOMATE_Account), so check the view exists under the name the row selects from before activating it.

3. The views

Each template creates its view with CreateViewQuery, in the gateway dbo schema. “Change detection” names which of the three kinds dlake-crmpro defines the view’s own WHERE makes it; where a view’s shape is not one of those three the column is left empty and the view’s own WHERE is the authority.

ViewChange detectionRepository keyReads other prefixesSource tables
vw_ECIEAUTOMATE_Accountinsert + updatevw_ECIEAUTOMATE_Account:SF_ERP_Salesforce_Clone_CustomerDetails
vw_ECIEAUTOMATE_Customerinsert + updatevw_ECIEAUTOMATE_Customer:vw_ECIEAUTOMATE_Account:SF_ERP_Salesforce_Clone_CustomerDetails
vw_ECIEAUTOMATE_CustomerToAccountLookupinsert + updatevw_ECIEAUTOMATE_CustomerToAccountLookup:vw_ECIEAUTOMATE_Customer:, vw_ECIEAUTOMATE_Account:SF_ERP_Salesforce_Clone_CustomerDetails
vw_ECIEAUTOMATE_InvoiceHeaderinsert + updatevw_ECIEAUTOMATE_InvoiceHeader:vw_ECIEAUTOMATE_Account:, vw_ECIEAUTOMATE_Customer:SF_ERP_Salesforce_Clone_InvoiceList, CommercientFlags
vw_ECIEAUTOMATE_InvoiceDetailinsert + updatevw_ECIEAUTOMATE_InvoiceDetail:vw_ECIEAUTOMATE_Account:, vw_ECIEAUTOMATE_Customer:, vw_ECIEAUTOMATE_InvoiceHeader:SF_ERP_Salesforce_Clone_invoiceDetail

The repository key these templates build is <TimeStamp_Prefix>:<key>. The literal in the view and the TimeStamp_Prefix on the configuration row have to be the same string, case included.

4. Order of work

The templates set Sync_Order to 2, 3, 4, 5, 6. A run processes active rows in ascending Sync_Order, which is the order the templates put them in:

  • 2 — Child Account
  • 3 — ECI E-AUTOMATE Customer
  • 4 — ECI E-AUTOMATE CustomerToAccountLookup
  • 5 — ECI E-AUTOMATE InvoiceHeader
  • 6 — ECI E-AUTOMATE InvoiceDetail

These views read another process’s repository prefix, which is what makes the order a dependency order: the row appears in the view only once the process that writes that prefix has run, so a parent flows on one run and its children on the next.

  • vw_ECIEAUTOMATE_CustomerToAccountLookup reads vw_ECIEAUTOMATE_Customer:, vw_ECIEAUTOMATE_Account:
  • vw_ECIEAUTOMATE_Customer reads vw_ECIEAUTOMATE_Account:
  • vw_ECIEAUTOMATE_InvoiceHeader reads vw_ECIEAUTOMATE_Account:, vw_ECIEAUTOMATE_Customer:
  • vw_ECIEAUTOMATE_InvoiceDetail reads vw_ECIEAUTOMATE_Account:, vw_ECIEAUTOMATE_Customer:, vw_ECIEAUTOMATE_InvoiceHeader:

5. Field mapping

CRM_FieldList carries one row per pushed column, with Object_Name equal to the CRM_Object_API_Name value — as dlake-crmpro puts it, an object with no CRM_FieldList rows pushes nothing and records no error. Each template carries its intended mapping in MappingJson. Read that with dlake admin crmpro_templates, then check crmpro_field_mapping on the created process before activating it.

TemplateObjectMapped fieldsFirst ERP → Salesforce pairs
Child AccountAccount8CommercientSFommercient_ArCustomerCodeCommercientSF__Commercient_ArCustomerCode__c, PhonePhone, ShippingStreetShippingStreet, ShippingCityShippingCity, ShippingStateShippingState
ECI E-AUTOMATE CustomerECI_E_AUTOMATE_Customer__c20lookupto_Accountaccount__c, ExtensionDataextensiondata__c, Address1address1__c, Address2address2__c, BillToCustomerNumberbilltocustomernumber__c
ECI E-AUTOMATE CustomerToAccountLookupAccount2CommercientSFommercient_ArCustomerCodeCommercientSF__Commercient_ArCustomerCode__c, ECI_E_AUTOMATE_CustomerECI_E_AUTOMATE_Customer__c
ECI E-AUTOMATE InvoiceHeaderECI_E_AUTOMATE_Invoice_Header__c7AccountAccount__c, ECI_E_AUTOMATE_CustomerECI_E_AUTOMATE_Customer__c, ExtensionDataextensiondata__c, CustomerNumbercustomernumber__c, InternalInvoiceNumberinternalinvoicenumber__c
ECI E-AUTOMATE InvoiceDetailECI_E_AUTOMATE_Invoice_Detail__c30AccountAccount__c, ECI_E_AUTOMATE_CustomerECI_E_AUTOMATE_Customer__c, ECI_E_AUTOMATE_Invoice_HeaderECI_E_AUTOMATE_Invoice_Header__c, ExtensionDataextensiondata__c, InvoiceDetail2_Idinvoicedetail2_id__c

6. Community templates

The catalogue carries 7 community templates for this pair. A community template is authored in a tenant rather than shipped with the product, and it imports the same way as any other. Its own names, notes, field mapping and SQL are tenant content, so what this section states is what the set amounts to: how many templates there are, what they default to doing, which destination objects they write and which groups they fall in. They are not part of the shipped set described above.

  • Templates: 7
  • Default operations: insert on 7, update on 7, delete on 7
  • Marked circular-sync: 0
  • Licence groups they span: 3
  • Destination objects: Account and 4 custom objects
  • Object display names: Account, Child Account and 5 further templates
  • Template groups: Account, Invoice

A community template is imported the way a shipped one is, and the same rules apply to what it creates: read the process it creates with crmpro_get_process, its mapping with crmpro_field_mapping, and the view it selects from, before activating it.

7. Verifying

# per-prefix counts; every synced record carries its destination id
dlake tool query --profile <tenant> --sql "SELECT LEFT([Key], CHARINDEX(':',[Key])-1) AS prefix, COUNT(*) n, COUNT(NULLIF(SFDCID,'')) withId FROM dbo.TimeStampRepository WHERE CHARINDEX(':',[Key])>0 GROUP BY LEFT([Key], CHARINDEX(':',[Key])-1)"

withId = n for every prefix is the success condition dlake-crmpro defines. The split is on the first colon, which is the prefix boundary whether the key separator is : or ::.

The prefixes these templates set:

  • vw_ECIEAUTOMATE_Account
  • vw_ECIEAUTOMATE_CustomerToAccountLookup
  • vw_ECIEAUTOMATE_Customer
  • vw_ECIEAUTOMATE_InvoiceHeader
  • vw_ECIEAUTOMATE_InvoiceDetail

8. Where this sits

dlake-crmpro is the general operating surface — the crmpro_* tools, the setup and transaction tables, field mapping, and the source-view contract that applies to every destination. This page adds what the shipped ECi e-automate → Salesforce templates set up. dlake-crmpro-salesforce is the destination skill this page sits under: its own text is the authority for the Salesforce conventions that hold across every ERP, and its ERP table lists this page alongside every sibling ERP page for this destination. For the extract leg that fills the clone tables, see dlake-normalsync; for the on-premises agent that runs it, dlake-syncagent; for the writeback leg, dlake-txdownloaderpro; for standing an integration up, dlake-integration-setup.