Class ErpSyncFieldMapping
Mapping information for one field pair (ERP <-> SuperOffice)
Carrier object for ErpSyncFieldMapping. Services for the ErpSyncFieldMapping Carrier is available from the ErpSync Agent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class ErpSyncFieldMapping : Carrier
Constructors
ErpSyncFieldMapping()
Default constructor
Declaration
public ErpSyncFieldMapping()
See Also
Properties
Access
Access restrictions for the field
Declaration
[DataMember]
public virtual FieldAccess Access { get; set; }
Property Value
Type | Description |
---|---|
FieldAccess |
See Also
AlreadyMapped
Is this ERPField already mapped in some other connection? If so, then it cannot be one-way mapped TO SuperOffice here
Declaration
[DataMember]
public virtual bool AlreadyMapped { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
CrmDisplayName
Display name of CRM field; ignored on Save
Declaration
[DataMember]
public virtual string CrmDisplayName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
CrmDisplayTooltip
Tooltip text for CRM field; ignored on Save
Declaration
[DataMember]
public virtual string CrmDisplayTooltip { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
CrmFieldKey
The CRM field name, as implemented by the Sync entities
Declaration
[DataMember]
public virtual string CrmFieldKey { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
ErpDisplayName
Display name of ERP field; ignored on Save
Declaration
[DataMember]
public virtual string ErpDisplayName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
ErpDisplayTooltip
Tooltip text for ERP field; ignored on Save
Declaration
[DataMember]
public virtual string ErpDisplayTooltip { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
ErpFieldId
Primary key
Declaration
[DataMember]
public virtual int ErpFieldId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
ErpFieldKey
The ERP field key
Declaration
[DataMember]
public virtual string ErpFieldKey { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
FieldType
Field type
Declaration
[DataMember]
public virtual FieldMetadataType FieldType { get; set; }
Property Value
Type | Description |
---|---|
FieldMetadataType |
See Also
ListReference
Field is read-only, for lookup in gui
Declaration
[DataMember]
public virtual string ListReference { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
MissingInCRM
This field existed previously, but now CRM no longer supports it (udef change?). Probably not a good sign, unmap it...
Declaration
[DataMember]
public virtual bool MissingInCRM { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
MissingInERP
This field existed previously, but now the connection no longer supports it. Probably not a good sign, unmap it...
Declaration
[DataMember]
public virtual bool MissingInERP { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
ShowInGui
Should this field be shown as a (read-only!) field in the CRM Gui
Declaration
[DataMember]
public virtual bool ShowInGui { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
ShowInSearch
Should this field be shown in searches
Declaration
[DataMember]
public virtual bool ShowInSearch { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
SyncToCrm
Should value changes in ERP be automatically transferred to CRM
Declaration
[DataMember]
public virtual bool SyncToCrm { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
SyncToErp
Should value changes in CRM be automatically transferred to ERP
Declaration
[DataMember]
public virtual bool SyncToErp { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The carrier contents. |
See Also
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. |