Show / Hide Table of Contents

Class QuoteVersionRow

There may be multiple Versions of a Quote, with one of them active
Row Object for table 'QuoteVersion'. Row objects correspond directly to database tables, and one instance of a row object represents one row in the corresponding table in the database.

Inheritance
System.Object
SqlCommand
PrivateSave
TableRowBase
QuoteVersionRow
Implements
INestedPersist
ISoDataLookup
ISentryIgnorable
ISoItem
Inherited Members
TableRowBase._saveOwner
TableRowBase._sentries
TableRowBase._onValueChange
TableRowBase._relatedNestedPersistMembers
TableRowBase._sqlType
TableRowBase.InternalSetValue(Int32, Object)
TableRowBase.InternalSetValue(SoField, Object)
TableRowBase.GetFieldValue(FieldInfo)
TableRowBase.GetKnownFields()
TableRowBase.ISoDataLookup.GetPersistedFieldValue(FieldInfo)
TableRowBase.ISoDataLookup.IsPersistedFieldValueKnown(FieldInfo)
TableRowBase.IsGhostField(FieldInfo)
TableRowBase.RowLoad()
TableRowBase.RowLoad(ITableRowLoadHandler)
TableRowBase.OnLoaded(IdxBase)
TableRowBase.Load(IdxBase, SoDataReader)
TableRowBase.Load(SoDataReader, TableInfo)
TableRowBase.SetDefaults()
TableRowBase.SetDefaults(DashboardTileDefinitionRow, String)
TableRowBase.SetSaveOwner(INestedPersist)
TableRowBase.Save()
TableRowBase.Delete()
TableRowBase.Validate()
TableRowBase.SetDirty(Int32, Object, Object)
TableRowBase.INestedPersist.OnPreIdUpdate()
TableRowBase.INestedPersist.OnPrimaryKeyRequest(PKContainer)
TableRowBase.INestedPersist.OnPrimaryKeyUpdate(PKContainer)
TableRowBase.INestedPersist.OnIdUpdate()
TableRowBase.INestedPersist.OnSave(BatchSave)
TableRowBase.INestedPersist.OnSaved(Boolean)
TableRowBase.OnPreIdUpdate()
TableRowBase.OnPrimaryKeyRequest(PKContainer)
TableRowBase.OnPrimaryKeyUpdate(PKContainer)
TableRowBase.OnIdUpdate()
TableRowBase.BeginIgnoreSentryCheck()
TableRowBase.EndIgnoreSentryCheck()
TableRowBase.GetRelatedNestedPersist()
TableRowBase.Item[Int32]
TableRowBase.Item[SoField]
TableRowBase.Sentries
TableRowBase.ForeignKeyHelper
TableRowBase.IsDeleted
TableRowBase.IsSaving
TableRowBase.SqlType
TableRowBase.IsSentryIgnored
TableRowBase.IsMarkedForDelete
TableRowBase.OnValueChanged
TableRowBase.OnElementSaved
TableRowBase.OnElementIdUpdate
PrivateSave.GetTableInfos()
PrivateSave.CloneToBasicUpdatingQuery()
PrivateSave.OnUpdateField
SqlCommand.Origin
SqlCommand.AddIgnoreAutoSentryTableInfo(TableInfo)
SqlCommand.AddIgnoreAutoSentryTableInfo(IEnumerable<TableInfo>)
SqlCommand.RemoveIgnoreAutoSentryTableInfo(TableInfo)
SqlCommand.ClearIgnoreAutoSentryTableInfos()
SqlCommand.IsAutoSentryIgnoredOnTableInfo(TableInfo)
SqlCommand.GetPrivateSaves()
SqlCommand.GetInserts()
SqlCommand.GetUpdates()
SqlCommand.GetDeletes()
SqlCommand.GetSelect()
SqlCommand.AutoSentryIgnoredTables
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: SuperOffice.CRM.Rows
Assembly: SoDataBase.dll
Syntax
public class QuoteVersionRow : TableRowBase, INestedPersist, ISoDataLookup, ISentryIgnorable, ISoItem
Remarks

Row objects can be created in several ways.

  • Use the static CreateNew() method to create a new, empty object. After populating it with values, you call the method and a corresponding row in the database is created, and the objects' primary key field updated. This is the preferred way to insert new rows into the database.
  • You can create a (nested) QuoteVersionRow QuoteVersionRow.CustomSearch object to obtain a query pre-populated with the correct tableinfo and return fields. This query can be modified with restrictions, etc. Then, use the static GetFromCustomSearch(QuoteVersionRow.CustomSearch) method to apply the query to the database and obtain the result as a Row object. This is how you select existing rows from the database when you have a query that does not correspond to any of the existing database indexes.
  • For each unique index defined for the table, there is a corresponding GetFromIdx method to make retrieving data via the indexes easy. Note that if you try to fetch a row that does not exist (for instance, by using the primary key index and specifying a primary key that does not exist in the database), you will get a Row object with the and properties set to true. Such a Row object is called a 'ghost' and cannot be updated, saved or deleted. You can also get a ghost if the row does exist in the database, but the Sentry system denies Select rights to the row.
  • Finally, if you have an SoDataReader that contains ALL the fields of the table, and you have the QuoteVersionTableInfo instance used in the query behind the reader, you can use the static GetFromReader(SoDataReader, QuoteVersionTableInfo) method to create a new row object from the reader and the table info. This is useful when you have a larger, more complex query, for instance one that joins a number of tables, and you wish to use Row objects to process the result set. If your result set corresponds to an entity, consider using the corresponding Entity layer object instead, since entities automatically handle ID allocation and mapping, rights, and other higher-level aspects.
Non-unique indexes are handled through the QuoteVersionRows collection, which has nested classes and GetFromIdx methods for each non-unique index. Similarly, there is a GetFromReader(SoDataReader, QuoteVersionTableInfo) method to retrieve the results of queries that return more than one row.

Unique indexes on table QuoteVersion are:

Index fieldsNested index class name

Constructors

QuoteVersionRow(QuoteVersionRow.QuoteVersionRowIdxBase)

Constructor for the class taking an index as argument. There may be multiple Versions of a Quote, with one of them active

Declaration
protected QuoteVersionRow(QuoteVersionRow.QuoteVersionRowIdxBase idx)
Parameters
Type Name Description
QuoteVersionRow.QuoteVersionRowIdxBase idx

The index representing a SELECT command to the database.

Fields

_currentApprovedBy

Current value, see property ApprovedBy.

Declaration
protected int _currentApprovedBy
Field Value
Type Description
System.Int32

_currentApprovedRegisteredBy

Current value, see property ApprovedRegisteredBy.

Declaration
protected int _currentApprovedRegisteredBy
Field Value
Type Description
System.Int32

_currentApprovedRegisteredDate

Current value, see property ApprovedRegisteredDate.

Declaration
protected DateTime _currentApprovedRegisteredDate
Field Value
Type Description
System.DateTime

_currentApprovedText

Current value, see property ApprovedText.

Declaration
protected string _currentApprovedText
Field Value
Type Description
System.String

_currentArchivedState

Current value, see property ArchivedState.

Declaration
protected QuoteVersionState _currentArchivedState
Field Value
Type Description
QuoteVersionState

_currentDeliveryCountryId

Current value, see property DeliveryCountryId.

Declaration
protected int _currentDeliveryCountryId
Field Value
Type Description
System.Int32

_currentDescription

Current value, see property Description.

Declaration
protected string _currentDescription
Field Value
Type Description
System.String

_currentERPDeliveryTermsKey

Current value, see property ERPDeliveryTermsKey.

Declaration
protected string _currentERPDeliveryTermsKey
Field Value
Type Description
System.String

_currentERPDeliveryTypeKey

Current value, see property ERPDeliveryTypeKey.

Declaration
protected string _currentERPDeliveryTypeKey
Field Value
Type Description
System.String

_currentERPPaymentTermsKey

Current value, see property ERPPaymentTermsKey.

Declaration
protected string _currentERPPaymentTermsKey
Field Value
Type Description
System.String

_currentERPPaymentTypeKey

Current value, see property ERPPaymentTypeKey.

Declaration
protected string _currentERPPaymentTypeKey
Field Value
Type Description
System.String

_currentERPQuoteVersionKey

Current value, see property ERPQuoteVersionKey.

Declaration
protected string _currentERPQuoteVersionKey
Field Value
Type Description
System.String

_currentExpirationDate

Current value, see property ExpirationDate.

Declaration
protected DateTime _currentExpirationDate
Field Value
Type Description
System.DateTime

_currentExtraField1

Current value, see property ExtraField1.

Declaration
protected string _currentExtraField1
Field Value
Type Description
System.String

_currentExtraField2

Current value, see property ExtraField2.

Declaration
protected string _currentExtraField2
Field Value
Type Description
System.String

_currentExtraField3

Current value, see property ExtraField3.

Declaration
protected string _currentExtraField3
Field Value
Type Description
System.String

_currentExtraField4

Current value, see property ExtraField4.

Declaration
protected string _currentExtraField4
Field Value
Type Description
System.String

_currentExtraField5

Current value, see property ExtraField5.

Declaration
protected string _currentExtraField5
Field Value
Type Description
System.String

_currentFollowupId

Current value, see property FollowupId.

Declaration
protected int _currentFollowupId
Field Value
Type Description
System.Int32

_currentHasOwnDeliveryAddress

Current value, see property HasOwnDeliveryAddress.

Declaration
protected short _currentHasOwnDeliveryAddress
Field Value
Type Description
System.Int16

_currentHasOwnInvoiceAddress

Current value, see property HasOwnInvoiceAddress.

Declaration
protected short _currentHasOwnInvoiceAddress
Field Value
Type Description
System.Int16

_currentInvoiceCountryId

Current value, see property InvoiceCountryId.

Declaration
protected int _currentInvoiceCountryId
Field Value
Type Description
System.Int32

_currentLastRecalculated

Current value, see property LastRecalculated.

Declaration
protected DateTime _currentLastRecalculated
Field Value
Type Description
System.DateTime

_currentLikelyQuoteAlternativeId

Current value, see property LikelyQuoteAlternativeId.

Declaration
protected int _currentLikelyQuoteAlternativeId
Field Value
Type Description
System.Int32

_currentNumber

Current value, see property Number.

Declaration
protected string _currentNumber
Field Value
Type Description
System.String

_currentQuoteId

Current value, see property QuoteId.

Declaration
protected int _currentQuoteId
Field Value
Type Description
System.Int32

_currentQuoteVersionId

Current value, see property QuoteVersionId.

Declaration
protected int _currentQuoteVersionId
Field Value
Type Description
System.Int32

_currentRank

Current value, see property Rank.

Declaration
protected int _currentRank
Field Value
Type Description
System.Int32

_currentReason

Current value, see property Reason.

Declaration
protected string _currentReason
Field Value
Type Description
System.String

_currentRegistered

Current value, see property Registered.

Declaration
protected DateTime _currentRegistered
Field Value
Type Description
System.DateTime

_currentRegisteredAssociateId

Current value, see property RegisteredAssociateId.

Declaration
protected int _currentRegisteredAssociateId
Field Value
Type Description
System.Int32

_currentSentDate

Current value, see property SentDate.

Declaration
protected DateTime _currentSentDate
Field Value
Type Description
System.DateTime

_currentState

Current value, see property State.

Declaration
protected QuoteVersionState _currentState
Field Value
Type Description
QuoteVersionState

_currentStatus

Current value, see property Status.

Declaration
protected QuoteStatus _currentStatus
Field Value
Type Description
QuoteStatus

_currentUpdated

Current value, see property Updated.

Declaration
protected DateTime _currentUpdated
Field Value
Type Description
System.DateTime

_currentUpdatedAssociateId

Current value, see property UpdatedAssociateId.

Declaration
protected int _currentUpdatedAssociateId
Field Value
Type Description
System.Int32

_currentUpdatedCount

Current value, see property UpdatedCount.

Declaration
protected short _currentUpdatedCount
Field Value
Type Description
System.Int16

_persistedApprovedBy

Persisted value, see property ApprovedBy.

Declaration
protected int _persistedApprovedBy
Field Value
Type Description
System.Int32

_persistedApprovedRegisteredBy

Persisted value, see property ApprovedRegisteredBy.

Declaration
protected int _persistedApprovedRegisteredBy
Field Value
Type Description
System.Int32

_persistedApprovedRegisteredDate

Persisted value, see property ApprovedRegisteredDate.

Declaration
protected DateTime _persistedApprovedRegisteredDate
Field Value
Type Description
System.DateTime

_persistedApprovedText

Persisted value, see property ApprovedText.

Declaration
protected string _persistedApprovedText
Field Value
Type Description
System.String

_persistedArchivedState

Persisted value, see property ArchivedState.

Declaration
protected QuoteVersionState _persistedArchivedState
Field Value
Type Description
QuoteVersionState

_persistedDeliveryCountryId

Persisted value, see property DeliveryCountryId.

Declaration
protected int _persistedDeliveryCountryId
Field Value
Type Description
System.Int32

_persistedDescription

Persisted value, see property Description.

Declaration
protected string _persistedDescription
Field Value
Type Description
System.String

_persistedERPDeliveryTermsKey

Persisted value, see property ERPDeliveryTermsKey.

Declaration
protected string _persistedERPDeliveryTermsKey
Field Value
Type Description
System.String

_persistedERPDeliveryTypeKey

Persisted value, see property ERPDeliveryTypeKey.

Declaration
protected string _persistedERPDeliveryTypeKey
Field Value
Type Description
System.String

_persistedERPPaymentTermsKey

Persisted value, see property ERPPaymentTermsKey.

Declaration
protected string _persistedERPPaymentTermsKey
Field Value
Type Description
System.String

_persistedERPPaymentTypeKey

Persisted value, see property ERPPaymentTypeKey.

Declaration
protected string _persistedERPPaymentTypeKey
Field Value
Type Description
System.String

_persistedERPQuoteVersionKey

Persisted value, see property ERPQuoteVersionKey.

Declaration
protected string _persistedERPQuoteVersionKey
Field Value
Type Description
System.String

_persistedExpirationDate

Persisted value, see property ExpirationDate.

Declaration
protected DateTime _persistedExpirationDate
Field Value
Type Description
System.DateTime

_persistedExtraField1

Persisted value, see property ExtraField1.

Declaration
protected string _persistedExtraField1
Field Value
Type Description
System.String

_persistedExtraField2

Persisted value, see property ExtraField2.

Declaration
protected string _persistedExtraField2
Field Value
Type Description
System.String

_persistedExtraField3

Persisted value, see property ExtraField3.

Declaration
protected string _persistedExtraField3
Field Value
Type Description
System.String

_persistedExtraField4

Persisted value, see property ExtraField4.

Declaration
protected string _persistedExtraField4
Field Value
Type Description
System.String

_persistedExtraField5

Persisted value, see property ExtraField5.

Declaration
protected string _persistedExtraField5
Field Value
Type Description
System.String

_persistedFollowupId

Persisted value, see property FollowupId.

Declaration
protected int _persistedFollowupId
Field Value
Type Description
System.Int32

_persistedHasOwnDeliveryAddress

Persisted value, see property HasOwnDeliveryAddress.

Declaration
protected short _persistedHasOwnDeliveryAddress
Field Value
Type Description
System.Int16

_persistedHasOwnInvoiceAddress

Persisted value, see property HasOwnInvoiceAddress.

Declaration
protected short _persistedHasOwnInvoiceAddress
Field Value
Type Description
System.Int16

_persistedInvoiceCountryId

Persisted value, see property InvoiceCountryId.

Declaration
protected int _persistedInvoiceCountryId
Field Value
Type Description
System.Int32

_persistedLastRecalculated

Persisted value, see property LastRecalculated.

Declaration
protected DateTime _persistedLastRecalculated
Field Value
Type Description
System.DateTime

_persistedLikelyQuoteAlternativeId

Persisted value, see property LikelyQuoteAlternativeId.

Declaration
protected int _persistedLikelyQuoteAlternativeId
Field Value
Type Description
System.Int32

_persistedNumber

Persisted value, see property Number.

Declaration
protected string _persistedNumber
Field Value
Type Description
System.String

_persistedQuoteId

Persisted value, see property QuoteId.

Declaration
protected int _persistedQuoteId
Field Value
Type Description
System.Int32

_persistedQuoteVersionId

Persisted value, see property QuoteVersionId.

Declaration
protected int _persistedQuoteVersionId
Field Value
Type Description
System.Int32

_persistedRank

Persisted value, see property Rank.

Declaration
protected int _persistedRank
Field Value
Type Description
System.Int32

_persistedReason

Persisted value, see property Reason.

Declaration
protected string _persistedReason
Field Value
Type Description
System.String

_persistedRegistered

Persisted value, see property Registered.

Declaration
protected DateTime _persistedRegistered
Field Value
Type Description
System.DateTime

_persistedRegisteredAssociateId

Persisted value, see property RegisteredAssociateId.

Declaration
protected int _persistedRegisteredAssociateId
Field Value
Type Description
System.Int32

_persistedSentDate

Persisted value, see property SentDate.

Declaration
protected DateTime _persistedSentDate
Field Value
Type Description
System.DateTime

_persistedState

Persisted value, see property State.

Declaration
protected QuoteVersionState _persistedState
Field Value
Type Description
QuoteVersionState

_persistedStatus

Persisted value, see property Status.

Declaration
protected QuoteStatus _persistedStatus
Field Value
Type Description
QuoteStatus

_persistedUpdated

Persisted value, see property Updated.

Declaration
protected DateTime _persistedUpdated
Field Value
Type Description
System.DateTime

_persistedUpdatedAssociateId

Persisted value, see property UpdatedAssociateId.

Declaration
protected int _persistedUpdatedAssociateId
Field Value
Type Description
System.Int32

_persistedUpdatedCount

Persisted value, see property UpdatedCount.

Declaration
protected short _persistedUpdatedCount
Field Value
Type Description
System.Int16

Properties

ApprovedBy

.NET type: int. Id of associate who approved (or rejected approval) for this version

Declaration
public virtual int ApprovedBy { get; set; }
Property Value
Type Description
System.Int32
Remarks

Original type in dictionary: FK.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

ApprovedRegisteredBy

.NET type: int. Id of associate who actually entered the approval; might be different from ApprovedBy (f.x. due to telephone consultation/approval)

Declaration
public virtual int ApprovedRegisteredBy { get; set; }
Property Value
Type Description
System.Int32
Remarks

Original type in dictionary: FK.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

ApprovedRegisteredDate

.NET type: DateTime. When was approval granted or rejected

Declaration
public virtual DateTime ApprovedRegisteredDate { get; set; }
Property Value
Type Description
System.DateTime
Remarks

Original type in dictionary: DateTime.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (DateTime.MinValue)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

ApprovedText

.NET type: string. Text with comments on why approval was granted (or rejected)

Declaration
public virtual string ApprovedText { get; set; }
Property Value
Type Description
System.String
Remarks

Original type in dictionary: String[1024].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

ArchivedState

.NET type: QuoteVersionState. State that this quote version had, right before it was changed to Archived; in this way we can show what happened before the archiving.

Declaration
public virtual QuoteVersionState ArchivedState { get; set; }
Property Value
Type Description
QuoteVersionState
Remarks

Original type in dictionary: Enum.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value ((short)0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

DeliveryCountryId

.NET type: int. Country of delivery address, typically copied from the contact record

Declaration
public virtual int DeliveryCountryId { get; set; }
Property Value
Type Description
System.Int32
Remarks

Original type in dictionary: FK.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Description

.NET type: string. Description of Version. Potentially longer text description, typically used in a tooltip. Max 2K.

Declaration
public virtual string Description { get; set; }
Property Value
Type Description
System.String
Remarks

Original type in dictionary: String[2048].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

ERPDeliveryTermsKey

.NET type: string. Either a List id to an id from a connector provided list, or, if the connection doesn’t support lists, a text. For instance: ‘FOB’ (‘Free on board’).

Declaration
public virtual string ERPDeliveryTermsKey { get; set; }
Property Value
Type Description
System.String
Remarks

Original type in dictionary: String[255].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

ERPDeliveryTypeKey

.NET type: string. Either a List id to an id from a connector provided list, or, if the connection doesn’t support lists, a text. For instance: ‘Air’.

Declaration
public virtual string ERPDeliveryTypeKey { get; set; }
Property Value
Type Description
System.String
Remarks

Original type in dictionary: String[255].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

ERPPaymentTermsKey

.NET type: string. Either a List id to an id from a connector provided list, or, if the connection doesn’t support lists, a text. For instance: ‘Standard 30 days’.

Declaration
public virtual string ERPPaymentTermsKey { get; set; }
Property Value
Type Description
System.String
Remarks

Original type in dictionary: String[255].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

ERPPaymentTypeKey

.NET type: string. Either a List id to an id from a connector provided list, or, if the connection doesn’t support lists, a text. For instance: 'Invoice'.

Declaration
public virtual string ERPPaymentTypeKey { get; set; }
Property Value
Type Description
System.String
Remarks

Original type in dictionary: String[255].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

ERPQuoteVersionKey

.NET type: string. Key in the ERP system that uniquely identifies this Version within the ERP system (if available, the field may be empty).

Declaration
public virtual string ERPQuoteVersionKey { get; set; }
Property Value
Type Description
System.String
Remarks

Original type in dictionary: String[255].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

ExpirationDate

.NET type: DateTime. Last date the quote Version is valid, expiration is at midnight end of this day.

Declaration
public virtual DateTime ExpirationDate { get; set; }
Property Value
Type Description
System.DateTime
Remarks

Original type in dictionary: DateTime.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (DateTime.MinValue)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

ExtraField1

.NET type: string. Optional information added by Quote Connector; usable in the quote document merge process

Declaration
public virtual string ExtraField1 { get; set; }
Property Value
Type Description
System.String
Remarks

Original type in dictionary: String[1024].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

ExtraField2

.NET type: string. Optional information added by Quote Connector; usable in the quote document merge process

Declaration
public virtual string ExtraField2 { get; set; }
Property Value
Type Description
System.String
Remarks

Original type in dictionary: String[1024].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

ExtraField3

.NET type: string. Optional information added by Quote Connector; usable in the quote document merge process

Declaration
public virtual string ExtraField3 { get; set; }
Property Value
Type Description
System.String
Remarks

Original type in dictionary: String[1024].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

ExtraField4

.NET type: string. Optional information added by Quote Connector; usable in the quote document merge process

Declaration
public virtual string ExtraField4 { get; set; }
Property Value
Type Description
System.String
Remarks

Original type in dictionary: String[1024].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

ExtraField5

.NET type: string. Optional information added by Quote Connector; usable in the quote document merge process

Declaration
public virtual string ExtraField5 { get; set; }
Property Value
Type Description
System.String
Remarks

Original type in dictionary: String[1024].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

FollowupId

.NET type: int. Link to a follow-up activity, created when this quote version was sent to the customer.

Declaration
public virtual int FollowupId { get; set; }
Property Value
Type Description
System.Int32
Remarks

Original type in dictionary: FK.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

HasOwnDeliveryAddress

.NET type: short. The delivery address is not the same as the contact's Street address

Declaration
public virtual short HasOwnDeliveryAddress { get; set; }
Property Value
Type Description
System.Int16
Remarks

Original type in dictionary: Bool.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value ((Int16)0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

HasOwnInvoiceAddress

.NET type: short. The quote has an address for Invoicing. This will typically be copied from the company's addresses.

Declaration
public virtual short HasOwnInvoiceAddress { get; set; }
Property Value
Type Description
System.Int16
Remarks

Original type in dictionary: Bool.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value ((Int16)0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

InnerFieldValuePairs

The values of all the fields in the row.
The first field is the primary key.
The index of the value corresponds to the name of the field returned from the Fields property.

Declaration
protected override ArgumentParameterCollection InnerFieldValuePairs { get; }
Property Value
Type Description
ArgumentParameterCollection
Overrides
PrivateSave.InnerFieldValuePairs

InnerPrimaryKey

The primary key needed to decide which specific row to alter with the current sql-command.

Declaration
protected override FieldInfo InnerPrimaryKey { get; }
Property Value
Type Description
FieldInfo
Overrides
PrivateSave.InnerPrimaryKey

InnerPrimaryKeyValue

The actual value the primary key must have.

Declaration
protected override Parameter InnerPrimaryKeyValue { get; }
Property Value
Type Description
Parameter
Overrides
PrivateSave.InnerPrimaryKeyValue

InvoiceCountryId

.NET type: int. Country of invoice address, typically copied from contact record

Declaration
public virtual int InvoiceCountryId { get; set; }
Property Value
Type Description
System.Int32
Remarks

Original type in dictionary: FK.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

IsDirty

Is the row dirty, e.g. been modified since the last time it was saved to the database.

Declaration
public override bool IsDirty { get; }
Property Value
Type Description
Boolean
Overrides
TableRowBase.IsDirty

IsNew

Is this object new, meaning that it does not exist in the database.

Declaration
public override bool IsNew { get; }
Property Value
Type Description
Boolean
Overrides
TableRowBase.IsNew

Item[String]

Get or set a value based on the name of the field.

Declaration
public override object this[string fieldName] { get; set; }
Parameters
Type Name Description
System.String fieldName

Name of the field in the database

Property Value
Type Description
System.Object

Value of the field.

Overrides
TableRowBase.Item[String]
Exceptions
Type Condition
ArgumentException

Thrown if the field is not known.

LastRecalculated

.NET type: DateTime. When this version was last subjected to a total recalculation. This field must be set by the connector, since the connector may choose to ignore a RecalculateVersion call based on policies and possibly the current value of this field. SuperOffice will set this field to 1.1.1760 whenever any change occurs to the quote, to indicate that a recalculation is needed.

Declaration
public virtual DateTime LastRecalculated { get; set; }
Property Value
Type Description
System.DateTime
Remarks

Original type in dictionary: DateTime.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (DateTime.MinValue)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

LikelyQuoteAlternativeId

.NET type: int. The alternative that is considered most likely to be accepted. Used to calculate probable income.

Declaration
public virtual int LikelyQuoteAlternativeId { get; set; }
Property Value
Type Description
System.Int32
Remarks

Original type in dictionary: FK.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Number

.NET type: string. A quote number that the user (or ERP connector) can fill out.

Declaration
public virtual string Number { get; set; }
Property Value
Type Description
System.String
Remarks

Original type in dictionary: String[255].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

QuoteId

.NET type: int. Foreign key to CRM quote (the conceptual parent). Owning Quote of this Quote Version.

Declaration
public virtual int QuoteId { get; set; }
Property Value
Type Description
System.Int32
Remarks

Original type in dictionary: FK.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

QuoteVersionId

.NET type: int. Primary key

Declaration
public virtual int QuoteVersionId { get; }
Property Value
Type Description
System.Int32
Remarks

Original type in dictionary: PK.

This field is the primary key and can only be read, never written.

This field is not protected by the Sentry system, and can always be read

QuoteVersionTableInfo

Get the QuoteVersionTableInfo object associated with the row.

Declaration
public QuoteVersionTableInfo QuoteVersionTableInfo { get; }
Property Value
Type Description
QuoteVersionTableInfo

Rank

.NET type: int. Rank/Version number, starts at 1

Declaration
public virtual int Rank { get; set; }
Property Value
Type Description
System.Int32
Remarks

Original type in dictionary: Int.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Reason

.NET type: string. If there was a problem, this field contains a localized explanation of the problem and possible steps to fix it that the user can be shown.

Declaration
public virtual string Reason { get; set; }
Property Value
Type Description
System.String
Remarks

Original type in dictionary: String[2048].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Registered

.NET type: DateTime. Registered when in UTC

Declaration
public virtual DateTime Registered { get; set; }
Property Value
Type Description
System.DateTime
Remarks

Original type in dictionary: UtcDateTime.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (DateTime.MinValue)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

RegisteredAssociateId

.NET type: int. Registered by whom

Declaration
public virtual int RegisteredAssociateId { get; set; }
Property Value
Type Description
System.Int32
Remarks

Original type in dictionary: FK.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

SentDate

.NET type: DateTime. The date the version was sent to the customer.

Declaration
public virtual DateTime SentDate { get; set; }
Property Value
Type Description
System.DateTime
Remarks

Original type in dictionary: DateTime.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (DateTime.MinValue)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

State

.NET type: QuoteVersionState. Current state of this quote version.

Declaration
public virtual QuoteVersionState State { get; set; }
Property Value
Type Description
QuoteVersionState
Remarks

Original type in dictionary: Enum.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value ((short)0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Status

.NET type: QuoteStatus. If there was a problem with for instance calculation, this field is set to warning or error.

Declaration
public virtual QuoteStatus Status { get; set; }
Property Value
Type Description
QuoteStatus
Remarks

Original type in dictionary: Enum.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value ((short)0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

TableInfo

Get the TableInfo for the table.

Declaration
public override TableInfo TableInfo { get; }
Property Value
Type Description
TableInfo

The TableInfo for the table.

Overrides
TableRowBase.TableInfo

Updated

.NET type: DateTime. Last updated when in UTC

Declaration
public virtual DateTime Updated { get; set; }
Property Value
Type Description
System.DateTime
Remarks

Original type in dictionary: UtcDateTime.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (DateTime.MinValue)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

UpdatedAssociateId

.NET type: int. Last updated by whom

Declaration
public virtual int UpdatedAssociateId { get; set; }
Property Value
Type Description
System.Int32
Remarks

Original type in dictionary: FK.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

UpdatedCount

.NET type: short. Number of updates made to this record

Declaration
public virtual short UpdatedCount { get; set; }
Property Value
Type Description
System.Int16
Remarks

Original type in dictionary: UShort.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value ((Int16)0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Methods

CreateNew()

Create a new instance of the QuoteVersionRow object. There may be multiple Versions of a Quote, with one of them active

Declaration
public static QuoteVersionRow CreateNew()
Returns
Type Description
QuoteVersionRow

A new instance of the QuoteVersionRow object.

GetFromCustomSearch(QuoteVersionRow.CustomSearch)

Create a new instance of the QuoteVersionRow object, and populate it with data from a custom search. If the search returns no results, an object with IsNew will be returned; if the result contains one row, an object representing that row will be returned. If the result contains more than one row, the first row will be used and the rest discarded (there is no way of detecting this situation).

Declaration
public static QuoteVersionRow GetFromCustomSearch(QuoteVersionRow.CustomSearch query)
Parameters
Type Name Description
QuoteVersionRow.CustomSearch query

The custom search to execute against the database

Returns
Type Description
QuoteVersionRow

A new instance of the QuoteVersionRow object, reflecting the result of the query.

GetFromIdxQuoteVersionId(Int32)

Create a new instance of the QuoteVersionRow object, by querying the database table via the index 'IDXQuoteVersionId'. This method is intended to make it easy to use efficient queries that match a database index.

Declaration
public static QuoteVersionRow GetFromIdxQuoteVersionId(int quoteVersionId)
Parameters
Type Name Description
System.Int32 quoteVersionId
Returns
Type Description
QuoteVersionRow

Row object that represents the result of the search. IsNew will be true if the query did not match any row in the table

Remarks

This method represents one of the unique indexes on the QuoteVersion table. Non-unique indexes have corresponding inner classes and methods in the QuoteVersionRows collection, since they may return more than one row.

GetFromReader(SoDataReader, QuoteVersionTableInfo)

Create a new instance of the QuoteVersionRow object, and populate it with data from a reader/tableinfo. If the reader has DBNull as the current value of the primary key field, an unpopulated object with IsNew == true will be returned. If any fields are missing or one of the non-primary key fields is DBNull, an exception will be thrown. There may be multiple Versions of a Quote, with one of them active

Declaration
public static QuoteVersionRow GetFromReader(SoDataReader reader, QuoteVersionTableInfo tableInfo)
Parameters
Type Name Description
SoDataReader reader

SoDataReader positioned to a valid database row.

QuoteVersionTableInfo tableInfo

QuoteVersionTableInfo instance used in the query that is the source of the reader. The fields used from the reader will be those owned by this tableinfo object.

Returns
Type Description
QuoteVersionRow

A new instance of the QuoteVersionRow object.

GetPersistedFieldValue(FieldInfo)

Get the persisted value of a field.

Declaration
public override object GetPersistedFieldValue(FieldInfo field)
Parameters
Type Name Description
FieldInfo field

Specification of a field

Returns
Type Description
System.Object

Field value, such as an int, DateTime, string ... Null can be returned if the value is not known.

Overrides
PrivateSave.GetPersistedFieldValue(FieldInfo)
Exceptions
Type Condition
ArgumentException

Thrown if the field is not known.

InternalSetValue(String, Object)

Declaration
protected override void InternalSetValue(string fieldName, object value)
Parameters
Type Name Description
System.String fieldName
System.Object value
Overrides
TableRowBase.InternalSetValue(String, Object)

IsPersistedFieldValueKnown(FieldInfo)

Check if the persisted value for a field is known.

Declaration
public override bool IsPersistedFieldValueKnown(FieldInfo field)
Parameters
Type Name Description
FieldInfo field

Specification of a field

Returns
Type Description
Boolean

True if the value is known and sentry permits read.

Overrides
PrivateSave.IsPersistedFieldValueKnown(FieldInfo)

OnLoad(SoDataReader, TableInfo)

Fill the object with data returned from the database.

Declaration
protected override void OnLoad(SoDataReader reader, TableInfo tableInfo)
Parameters
Type Name Description
SoDataReader reader

Object holding the data returned from the database.

TableInfo tableInfo

The TableInfo used for the SELECT statement.

Overrides
TableRowBase.OnLoad(SoDataReader, TableInfo)

OnSave(BatchSave)

Add the object to the BatchSave list if it needs saving.

Declaration
protected override void OnSave(BatchSave batchSave)
Parameters
Type Name Description
BatchSave batchSave

Collection of objects to be saved within the transaction.

Overrides
TableRowBase.OnSave(BatchSave)
Remarks

Classes overriding this method should call it.

OnSaved(Boolean)

Method called after the save operation has been performed.

Declaration
protected override void OnSaved(bool bSucceeded)
Parameters
Type Name Description
Boolean bSucceeded

True if the save operation succeeded (e.g. transaction committed), or false if the save operation failed (e.g. transaction rolled back)

Overrides
TableRowBase.OnSaved(Boolean)

Reset()

Reset the changes made on the object.

Declaration
protected override void Reset()
Overrides
TableRowBase.Reset()
Remarks

If the row is not persisted to the database (e.g. IsNew is true), all the values will be reset. If the row has been persisted to or loaded from the database, the properties will be set to those of the last persisted or loaded values.

SetDefaults(DefaulterStrategy)

Set default values for the row.

Declaration
public override void SetDefaults(DefaulterStrategy strategy)
Parameters
Type Name Description
DefaulterStrategy strategy

Strategy used when applying default values; values depend on where we are in the Create/Fetch/Populate/Save cycle

Overrides
TableRowBase.SetDefaults(DefaulterStrategy)

SetPrimaryKey(Int32)

Set the primary key for the row.

Declaration
protected override void SetPrimaryKey(int primaryKey)
Parameters
Type Name Description
System.Int32 primaryKey

The new primary key for the row.

Overrides
TableRowBase.SetPrimaryKey(Int32)

SetRowAsNew()

Declaration
public override void SetRowAsNew()
Overrides
TableRowBase.SetRowAsNew()

ToString()

ToString method intended for debugging, returns a string that displays the object type, new/dirty status, primary key and the string fields

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()

Validate(RowValidator)

Validate this row.

Declaration
public override void Validate(RowValidator rowValidator)
Parameters
Type Name Description
RowValidator rowValidator

RowValidator for inserting the result of the validation

Overrides
TableRowBase.Validate(RowValidator)

Events

_onApprovedByChange

Change envent for property ApprovedBy; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onApprovedByChange
Event Type
Type Description
OnFieldChange<System.Int32>

_onApprovedRegisteredByChange

Change envent for property ApprovedRegisteredBy; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onApprovedRegisteredByChange
Event Type
Type Description
OnFieldChange<System.Int32>

_onApprovedRegisteredDateChange

Change envent for property ApprovedRegisteredDate; field is of .NET type DateTime.

Declaration
protected event OnFieldChange<DateTime> _onApprovedRegisteredDateChange
Event Type
Type Description
OnFieldChange<System.DateTime>

_onApprovedTextChange

Change envent for property ApprovedText; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onApprovedTextChange
Event Type
Type Description
OnFieldChange<System.String>

_onArchivedStateChange

Change envent for property ArchivedState; field is of .NET type short.

Declaration
protected event OnFieldChange<QuoteVersionState> _onArchivedStateChange
Event Type
Type Description
OnFieldChange<QuoteVersionState>

_onDeliveryCountryIdChange

Change envent for property DeliveryCountryId; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onDeliveryCountryIdChange
Event Type
Type Description
OnFieldChange<System.Int32>

_onDescriptionChange

Change envent for property Description; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onDescriptionChange
Event Type
Type Description
OnFieldChange<System.String>

_onERPDeliveryTermsKeyChange

Change envent for property ERPDeliveryTermsKey; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onERPDeliveryTermsKeyChange
Event Type
Type Description
OnFieldChange<System.String>

_onERPDeliveryTypeKeyChange

Change envent for property ERPDeliveryTypeKey; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onERPDeliveryTypeKeyChange
Event Type
Type Description
OnFieldChange<System.String>

_onERPPaymentTermsKeyChange

Change envent for property ERPPaymentTermsKey; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onERPPaymentTermsKeyChange
Event Type
Type Description
OnFieldChange<System.String>

_onERPPaymentTypeKeyChange

Change envent for property ERPPaymentTypeKey; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onERPPaymentTypeKeyChange
Event Type
Type Description
OnFieldChange<System.String>

_onERPQuoteVersionKeyChange

Change envent for property ERPQuoteVersionKey; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onERPQuoteVersionKeyChange
Event Type
Type Description
OnFieldChange<System.String>

_onExpirationDateChange

Change envent for property ExpirationDate; field is of .NET type DateTime.

Declaration
protected event OnFieldChange<DateTime> _onExpirationDateChange
Event Type
Type Description
OnFieldChange<System.DateTime>

_onExtraField1Change

Change envent for property ExtraField1; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onExtraField1Change
Event Type
Type Description
OnFieldChange<System.String>

_onExtraField2Change

Change envent for property ExtraField2; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onExtraField2Change
Event Type
Type Description
OnFieldChange<System.String>

_onExtraField3Change

Change envent for property ExtraField3; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onExtraField3Change
Event Type
Type Description
OnFieldChange<System.String>

_onExtraField4Change

Change envent for property ExtraField4; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onExtraField4Change
Event Type
Type Description
OnFieldChange<System.String>

_onExtraField5Change

Change envent for property ExtraField5; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onExtraField5Change
Event Type
Type Description
OnFieldChange<System.String>

_onFollowupIdChange

Change envent for property FollowupId; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onFollowupIdChange
Event Type
Type Description
OnFieldChange<System.Int32>

_onHasOwnDeliveryAddressChange

Change envent for property HasOwnDeliveryAddress; field is of .NET type short.

Declaration
protected event OnFieldChange<short> _onHasOwnDeliveryAddressChange
Event Type
Type Description
OnFieldChange<System.Int16>

_onHasOwnInvoiceAddressChange

Change envent for property HasOwnInvoiceAddress; field is of .NET type short.

Declaration
protected event OnFieldChange<short> _onHasOwnInvoiceAddressChange
Event Type
Type Description
OnFieldChange<System.Int16>

_onInvoiceCountryIdChange

Change envent for property InvoiceCountryId; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onInvoiceCountryIdChange
Event Type
Type Description
OnFieldChange<System.Int32>

_onLastRecalculatedChange

Change envent for property LastRecalculated; field is of .NET type DateTime.

Declaration
protected event OnFieldChange<DateTime> _onLastRecalculatedChange
Event Type
Type Description
OnFieldChange<System.DateTime>

_onLikelyQuoteAlternativeIdChange

Change envent for property LikelyQuoteAlternativeId; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLikelyQuoteAlternativeIdChange
Event Type
Type Description
OnFieldChange<System.Int32>

_onNumberChange

Change envent for property Number; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onNumberChange
Event Type
Type Description
OnFieldChange<System.String>

_onQuoteIdChange

Change envent for property QuoteId; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onQuoteIdChange
Event Type
Type Description
OnFieldChange<System.Int32>

_onRankChange

Change envent for property Rank; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onRankChange
Event Type
Type Description
OnFieldChange<System.Int32>

_onReasonChange

Change envent for property Reason; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onReasonChange
Event Type
Type Description
OnFieldChange<System.String>

_onRegisteredAssociateIdChange

Change envent for property RegisteredAssociateId; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onRegisteredAssociateIdChange
Event Type
Type Description
OnFieldChange<System.Int32>

_onRegisteredChange

Change envent for property Registered; field is of .NET type DateTime.

Declaration
protected event OnFieldChange<DateTime> _onRegisteredChange
Event Type
Type Description
OnFieldChange<System.DateTime>

_onSentDateChange

Change envent for property SentDate; field is of .NET type DateTime.

Declaration
protected event OnFieldChange<DateTime> _onSentDateChange
Event Type
Type Description
OnFieldChange<System.DateTime>

_onStateChange

Change envent for property State; field is of .NET type short.

Declaration
protected event OnFieldChange<QuoteVersionState> _onStateChange
Event Type
Type Description
OnFieldChange<QuoteVersionState>

_onStatusChange

Change envent for property Status; field is of .NET type short.

Declaration
protected event OnFieldChange<QuoteStatus> _onStatusChange
Event Type
Type Description
OnFieldChange<QuoteStatus>

_onUpdatedAssociateIdChange

Change envent for property UpdatedAssociateId; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onUpdatedAssociateIdChange
Event Type
Type Description
OnFieldChange<System.Int32>

_onUpdatedChange

Change envent for property Updated; field is of .NET type DateTime.

Declaration
protected event OnFieldChange<DateTime> _onUpdatedChange
Event Type
Type Description
OnFieldChange<System.DateTime>

_onUpdatedCountChange

Change envent for property UpdatedCount; field is of .NET type short.

Declaration
protected event OnFieldChange<short> _onUpdatedCountChange
Event Type
Type Description
OnFieldChange<System.Int16>

OnApprovedByChange

Event raised when ApprovedBy is changing.

Declaration
public event OnFieldChange<int> OnApprovedByChange
Event Type
Type Description
OnFieldChange<System.Int32>

OnApprovedRegisteredByChange

Event raised when ApprovedRegisteredBy is changing.

Declaration
public event OnFieldChange<int> OnApprovedRegisteredByChange
Event Type
Type Description
OnFieldChange<System.Int32>

OnApprovedRegisteredDateChange

Event raised when ApprovedRegisteredDate is changing.

Declaration
public event OnFieldChange<DateTime> OnApprovedRegisteredDateChange
Event Type
Type Description
OnFieldChange<System.DateTime>

OnApprovedTextChange

Event raised when ApprovedText is changing.

Declaration
public event OnFieldChange<string> OnApprovedTextChange
Event Type
Type Description
OnFieldChange<System.String>

OnArchivedStateChange

Event raised when ArchivedState is changing.

Declaration
public event OnFieldChange<QuoteVersionState> OnArchivedStateChange
Event Type
Type Description
OnFieldChange<QuoteVersionState>

OnDeliveryCountryIdChange

Event raised when DeliveryCountryId is changing.

Declaration
public event OnFieldChange<int> OnDeliveryCountryIdChange
Event Type
Type Description
OnFieldChange<System.Int32>

OnDescriptionChange

Event raised when Description is changing.

Declaration
public event OnFieldChange<string> OnDescriptionChange
Event Type
Type Description
OnFieldChange<System.String>

OnERPDeliveryTermsKeyChange

Event raised when ERPDeliveryTermsKey is changing.

Declaration
public event OnFieldChange<string> OnERPDeliveryTermsKeyChange
Event Type
Type Description
OnFieldChange<System.String>

OnERPDeliveryTypeKeyChange

Event raised when ERPDeliveryTypeKey is changing.

Declaration
public event OnFieldChange<string> OnERPDeliveryTypeKeyChange
Event Type
Type Description
OnFieldChange<System.String>

OnERPPaymentTermsKeyChange

Event raised when ERPPaymentTermsKey is changing.

Declaration
public event OnFieldChange<string> OnERPPaymentTermsKeyChange
Event Type
Type Description
OnFieldChange<System.String>

OnERPPaymentTypeKeyChange

Event raised when ERPPaymentTypeKey is changing.

Declaration
public event OnFieldChange<string> OnERPPaymentTypeKeyChange
Event Type
Type Description
OnFieldChange<System.String>

OnERPQuoteVersionKeyChange

Event raised when ERPQuoteVersionKey is changing.

Declaration
public event OnFieldChange<string> OnERPQuoteVersionKeyChange
Event Type
Type Description
OnFieldChange<System.String>

OnExpirationDateChange

Event raised when ExpirationDate is changing.

Declaration
public event OnFieldChange<DateTime> OnExpirationDateChange
Event Type
Type Description
OnFieldChange<System.DateTime>

OnExtraField1Change

Event raised when ExtraField1 is changing.

Declaration
public event OnFieldChange<string> OnExtraField1Change
Event Type
Type Description
OnFieldChange<System.String>

OnExtraField2Change

Event raised when ExtraField2 is changing.

Declaration
public event OnFieldChange<string> OnExtraField2Change
Event Type
Type Description
OnFieldChange<System.String>

OnExtraField3Change

Event raised when ExtraField3 is changing.

Declaration
public event OnFieldChange<string> OnExtraField3Change
Event Type
Type Description
OnFieldChange<System.String>

OnExtraField4Change

Event raised when ExtraField4 is changing.

Declaration
public event OnFieldChange<string> OnExtraField4Change
Event Type
Type Description
OnFieldChange<System.String>

OnExtraField5Change

Event raised when ExtraField5 is changing.

Declaration
public event OnFieldChange<string> OnExtraField5Change
Event Type
Type Description
OnFieldChange<System.String>

OnFollowupIdChange

Event raised when FollowupId is changing.

Declaration
public event OnFieldChange<int> OnFollowupIdChange
Event Type
Type Description
OnFieldChange<System.Int32>

OnHasOwnDeliveryAddressChange

Event raised when HasOwnDeliveryAddress is changing.

Declaration
public event OnFieldChange<short> OnHasOwnDeliveryAddressChange
Event Type
Type Description
OnFieldChange<System.Int16>

OnHasOwnInvoiceAddressChange

Event raised when HasOwnInvoiceAddress is changing.

Declaration
public event OnFieldChange<short> OnHasOwnInvoiceAddressChange
Event Type
Type Description
OnFieldChange<System.Int16>

OnInvoiceCountryIdChange

Event raised when InvoiceCountryId is changing.

Declaration
public event OnFieldChange<int> OnInvoiceCountryIdChange
Event Type
Type Description
OnFieldChange<System.Int32>

OnLastRecalculatedChange

Event raised when LastRecalculated is changing.

Declaration
public event OnFieldChange<DateTime> OnLastRecalculatedChange
Event Type
Type Description
OnFieldChange<System.DateTime>

OnLikelyQuoteAlternativeIdChange

Event raised when LikelyQuoteAlternativeId is changing.

Declaration
public event OnFieldChange<int> OnLikelyQuoteAlternativeIdChange
Event Type
Type Description
OnFieldChange<System.Int32>

OnNumberChange

Event raised when Number is changing.

Declaration
public event OnFieldChange<string> OnNumberChange
Event Type
Type Description
OnFieldChange<System.String>

OnQuoteIdChange

Event raised when QuoteId is changing.

Declaration
public event OnFieldChange<int> OnQuoteIdChange
Event Type
Type Description
OnFieldChange<System.Int32>

OnRankChange

Event raised when Rank is changing.

Declaration
public event OnFieldChange<int> OnRankChange
Event Type
Type Description
OnFieldChange<System.Int32>

OnReasonChange

Event raised when Reason is changing.

Declaration
public event OnFieldChange<string> OnReasonChange
Event Type
Type Description
OnFieldChange<System.String>

OnRegisteredAssociateIdChange

Event raised when RegisteredAssociateId is changing.

Declaration
public event OnFieldChange<int> OnRegisteredAssociateIdChange
Event Type
Type Description
OnFieldChange<System.Int32>

OnRegisteredChange

Event raised when Registered is changing.

Declaration
public event OnFieldChange<DateTime> OnRegisteredChange
Event Type
Type Description
OnFieldChange<System.DateTime>

OnSentDateChange

Event raised when SentDate is changing.

Declaration
public event OnFieldChange<DateTime> OnSentDateChange
Event Type
Type Description
OnFieldChange<System.DateTime>

OnStateChange

Event raised when State is changing.

Declaration
public event OnFieldChange<QuoteVersionState> OnStateChange
Event Type
Type Description
OnFieldChange<QuoteVersionState>

OnStatusChange

Event raised when Status is changing.

Declaration
public event OnFieldChange<QuoteStatus> OnStatusChange
Event Type
Type Description
OnFieldChange<QuoteStatus>

OnUpdatedAssociateIdChange

Event raised when UpdatedAssociateId is changing.

Declaration
public event OnFieldChange<int> OnUpdatedAssociateIdChange
Event Type
Type Description
OnFieldChange<System.Int32>

OnUpdatedChange

Event raised when Updated is changing.

Declaration
public event OnFieldChange<DateTime> OnUpdatedChange
Event Type
Type Description
OnFieldChange<System.DateTime>

OnUpdatedCountChange

Event raised when UpdatedCount is changing.

Declaration
public event OnFieldChange<short> OnUpdatedCountChange
Event Type
Type Description
OnFieldChange<System.Int16>

Implements

INestedPersist
ISoDataLookup
ISentryIgnorable
ISoItem

Extension Methods

EnumUtil.MapEnums<From, To>(From)
QueryExectionExtensions.ExecuteReader(SqlCommand, Boolean)
QueryExectionExtensions.ExecuteScalar<T>(SqlCommand)
QueryExectionExtensions.ExecuteNonQuery(SqlCommand)
QuoteExtensions.CloneQuoteVersionRow(QuoteVersionRow)
QuoteExtensions.GetQuoteVersionInfo(QuoteVersionRow)
Converters.MapEnums<From, To>(From)
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top