Class EisFieldMapping
Carrier object for EisFieldMapping. Services for the EisFieldMapping Carrier is available from the IErpSyncAgent.
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class EisFieldMapping : Carrier
Constructors
EisFieldMapping()
Default constructor
Declaration
public EisFieldMapping()
Properties
AlreadyMapped
Is this ERPField already mapped in some other connection? If so, then it cannot be one-way mapped TO SuperOffice here
Declaration
public bool AlreadyMapped { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
CrmDisplayName
Display name of CRM field; ignored on Save
Declaration
public string CrmDisplayName { get; set; }
Property Value
Type | Description |
---|---|
String |
CrmDisplayTooltip
Tooltip text for CRM field; ignored on Save
Declaration
public string CrmDisplayTooltip { get; set; }
Property Value
Type | Description |
---|---|
String |
CrmFieldKey
The CRM field name, as implemented by the Sync entities
Declaration
public string CrmFieldKey { get; set; }
Property Value
Type | Description |
---|---|
String |
ErpDisplayName
Display name of ERP field; ignored on Save
Declaration
public string ErpDisplayName { get; set; }
Property Value
Type | Description |
---|---|
String |
ErpDisplayTooltip
Tooltip text for ERP field; ignored on Save
Declaration
public string ErpDisplayTooltip { get; set; }
Property Value
Type | Description |
---|---|
String |
ErpFieldId
Primary key
Declaration
public int ErpFieldId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
ErpFieldKey
The ERP field key
Declaration
public string ErpFieldKey { get; set; }
Property Value
Type | Description |
---|---|
String |
FieldType
Field type
Declaration
public FieldMetadataType FieldType { get; set; }
Property Value
Type | Description |
---|---|
FieldMetadataType |
MissingInCRM
This field existed previously, but now CRM no longer supports it (udef change?). Probably not a good sign, unmap it...
Declaration
public bool MissingInCRM { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
MissingInERP
This field existed previously, but now the connection no longer supports it. Probably not a good sign, unmap it...
Declaration
public bool MissingInERP { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
ShowInGui
Should this field be shown as a (read-only!) field in the CRM Gui
Declaration
public bool ShowInGui { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
ShowInSearch
Should this field be shown in searches
Declaration
public bool ShowInSearch { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
SyncToCrm
Should value changes in ERP be automatically transferred to CRM
Declaration
public bool SyncToCrm { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
SyncToErp
Should value changes in CRM be automatically transferred to ERP
Declaration
public bool SyncToErp { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | The carrier contents. |
ToString(String)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
String | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
String | The carrier contents. |