Class Person
Persons in a company or an organization
Entity Object for table 'person'. Entity objects represent full entities with both the base table object and all related objects, such as udef, and things like owner associate and whatever else is logically related to the base object.Inherited Members
Namespace: SuperOffice.CRM.Entities
Assembly: SoDataBase.dll
Syntax
public class Person : EntityBase, INestedPersist, ISoItem, ITableRowLoadHandler, IEntityUdefHelperContainer
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Constructors
Person(PersonIdxBase)
Constructor for class Person.
This object represents a row in table 'person'.
Table contact: Persons in a company or an organisation
Declaration
protected Person(Person.PersonIdxBase idx)
Parameters
Type | Name | Description |
---|---|---|
Person.PersonIdxBase | idx | ContactRowPersonRow.PersonRowIdx object that the Contact encapsulates. |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Person(PersonRow, PersonIdxBase)
Persons in a company or an organization
Entity Object for table 'person'. Entity objects represent full entities with both the base table object and all related objects, such as udef, and things like owner associate and whatever else is logically related to the base object.Declaration
protected Person(PersonRow row, Person.PersonIdxBase idx)
Parameters
Type | Name | Description |
---|---|---|
PersonRow | row | |
Person.PersonIdxBase | idx |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Fields
_address
Related HDB object(s).
Declaration
protected AddressRow _address
Field Value
Type | Description |
---|---|
AddressRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_appointments
Related HDB object(s).
Declaration
protected AppointmentCollection _appointments
Field Value
Type | Description |
---|---|
AppointmentCollection |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_associate
Related HDB object(s).
Declaration
protected AssociateRow _associate
Field Value
Type | Description |
---|---|
AssociateRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_business
Related HDB object(s).
Declaration
protected BusinessRow _business
Field Value
Type | Description |
---|---|
BusinessRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_category
Related HDB object(s).
Declaration
protected CategoryRow _category
Field Value
Type | Description |
---|---|
CategoryRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_chatEmails
Persons in a company or an organization
Entity Object for table 'person'. Entity objects represent full entities with both the base table object and all related objects, such as udef, and things like owner associate and whatever else is logically related to the base object.Declaration
protected EmailRows _chatEmails
Field Value
Type | Description |
---|---|
EmailRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_consentPersons
Related HDB object(s).
Declaration
protected ConsentPersonRows _consentPersons
Field Value
Type | Description |
---|---|
ConsentPersonRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_contact
Related HDB object(s).
Declaration
protected Contact _contact
Field Value
Type | Description |
---|---|
Contact |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_country
Related HDB object(s).
Declaration
protected CountryRow _country
Field Value
Type | Description |
---|---|
CountryRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_createdAssociate
Related HDB object(s).
Declaration
protected AssociateRow _createdAssociate
Field Value
Type | Description |
---|---|
AssociateRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_emails
Related HDB object(s).
Declaration
protected EmailRows _emails
Field Value
Type | Description |
---|---|
EmailRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_faxes
Related HDB object(s).
Declaration
protected PhoneRows _faxes
Field Value
Type | Description |
---|---|
PhoneRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_info
Related HDB object(s).
Declaration
protected TextRow _info
Field Value
Type | Description |
---|---|
TextRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_interests
Related HDB object(s).
Declaration
protected PersonInterestRows _interests
Field Value
Type | Description |
---|---|
PersonInterestRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_internetPhones
Persons in a company or an organization
Entity Object for table 'person'. Entity objects represent full entities with both the base table object and all related objects, such as udef, and things like owner associate and whatever else is logically related to the base object.Declaration
protected EmailRows _internetPhones
Field Value
Type | Description |
---|---|
EmailRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_invitations
Related HDB object(s).
Declaration
protected AppointmentCollection _invitations
Field Value
Type | Description |
---|---|
AppointmentCollection |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_mobilePhones
Related HDB object(s).
Declaration
protected PhoneRows _mobilePhones
Field Value
Type | Description |
---|---|
PhoneRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_officePhones
Related HDB object(s).
Declaration
protected PhoneRows _officePhones
Field Value
Type | Description |
---|---|
PhoneRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_pagers
Related HDB object(s).
Declaration
protected PhoneRows _pagers
Field Value
Type | Description |
---|---|
PhoneRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_position
Related HDB object(s).
Declaration
protected PersPosRow _position
Field Value
Type | Description |
---|---|
PersPosRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_privatePhones
Related HDB object(s).
Declaration
protected PhoneRows _privatePhones
Field Value
Type | Description |
---|---|
PhoneRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_projectMemberships
Related HDB object(s).
Declaration
protected ProjectMemberCollection _projectMemberships
Field Value
Type | Description |
---|---|
ProjectMemberCollection |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_row
HDB object this entity is a facade for.
Declaration
protected PersonRow _row
Field Value
Type | Description |
---|---|
PersonRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_rowIdx
Persons in a company or an organization
Entity Object for table 'person'. Entity objects represent full entities with both the base table object and all related objects, such as udef, and things like owner associate and whatever else is logically related to the base object.Declaration
protected Person.PersonIdxBase _rowIdx
Field Value
Type | Description |
---|---|
Person.PersonIdxBase |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_saleHistory
Related HDB object(s).
Declaration
protected SaleHistRows _saleHistory
Field Value
Type | Description |
---|---|
SaleHistRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_sales
Related HDB object(s).
Declaration
protected SaleCollection _sales
Field Value
Type | Description |
---|---|
SaleCollection |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_selectionMemberships
Related HDB object(s).
Declaration
protected SelectionMemberRows _selectionMemberships
Field Value
Type | Description |
---|---|
SelectionMemberRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_shipmentTypeReservations
Related HDB object(s).
Declaration
protected ShipmentTypeReservationRows _shipmentTypeReservations
Field Value
Type | Description |
---|---|
ShipmentTypeReservationRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_udefLarge
Related HDB object(s).
Declaration
protected UDPersonLargeRow _udefLarge
Field Value
Type | Description |
---|---|
UDPersonLargeRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_udefSmall
Related HDB object(s).
Declaration
protected UDPersonSmallRow _udefSmall
Field Value
Type | Description |
---|---|
UDPersonSmallRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_updatedAssociate
Related HDB object(s).
Declaration
protected AssociateRow _updatedAssociate
Field Value
Type | Description |
---|---|
AssociateRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
_urls
Related HDB object(s).
Declaration
protected URLRows _urls
Field Value
Type | Description |
---|---|
URLRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Properties
ActiveInterests
"Number of records in pintr table; select count(*) from pintr pi where pi.person_id = this.person_id == activeInterests is always true"
Declaration
public short ActiveInterests { get; set; }
Property Value
Type | Description |
---|---|
short |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Address
Related object AddressRow: Contact and Person addresses
Declaration
public AddressRow Address { get; set; }
Property Value
Type | Description |
---|---|
AddressRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Appointments
Related object AppointmentCollection: "Tasks, appointments, followups, phone calls; and documents"
Declaration
public AppointmentCollection Appointments { get; }
Property Value
Type | Description |
---|---|
AppointmentCollection |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Associate
Related object AssociateRow: Employees, resources and other users - except for External persons
Declaration
public AssociateRow Associate { get; set; }
Property Value
Type | Description |
---|---|
AssociateRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Business
Related object BusinessRow: Business list table
Declaration
public BusinessRow Business { get; set; }
Property Value
Type | Description |
---|---|
BusinessRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Category
Related object CategoryRow: Category list table
Declaration
public CategoryRow Category { get; set; }
Property Value
Type | Description |
---|---|
CategoryRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
ChatEmails
Persons in a company or an organization
Entity Object for table 'person'. Entity objects represent full entities with both the base table object and all related objects, such as udef, and things like owner associate and whatever else is logically related to the base object.Declaration
public EmailRows ChatEmails { get; }
Property Value
Type | Description |
---|---|
EmailRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
ConsentPersons
Related object ConsentPersonRows: Link table between person and ConsentPerson
Declaration
public ConsentPersonRows ConsentPersons { get; }
Property Value
Type | Description |
---|---|
ConsentPersonRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Contact
Related object Contact: Companies and Organisations
Declaration
public Contact Contact { get; set; }
Property Value
Type | Description |
---|---|
Contact |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Country
Related object CountryRow: Country information
Declaration
public CountryRow Country { get; set; }
Property Value
Type | Description |
---|---|
CountryRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
CreatedAssociate
Related object AssociateRow: Employees, resources and other users - except for External persons
Declaration
public AssociateRow CreatedAssociate { get; set; }
Property Value
Type | Description |
---|---|
AssociateRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
CustomFields
Persons in a company or an organization
Entity Object for table 'person'. Entity objects represent full entities with both the base table object and all related objects, such as udef, and things like owner associate and whatever else is logically related to the base object.Declaration
public EntityCustomFieldsHelper CustomFields { get; }
Property Value
Type | Description |
---|---|
EntityCustomFieldsHelper |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
DayOfBirth
Birth date (day of month)
Declaration
public short DayOfBirth { get; set; }
Property Value
Type | Description |
---|---|
short |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Department
Internal department address
Declaration
public string Department { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Emails
Related object EmailRows: Email addresses
Declaration
public EmailRows Emails { get; }
Property Value
Type | Description |
---|---|
EmailRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
ExtraFields
Persons in a company or an organization
Entity Object for table 'person'. Entity objects represent full entities with both the base table object and all related objects, such as udef, and things like owner associate and whatever else is logically related to the base object.Declaration
public EntityExtraFieldsHelper ExtraFields { get; }
Property Value
Type | Description |
---|---|
EntityExtraFieldsHelper |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Faxes
Related object PhoneRows: Contact and Person phonenumbers (+fax)
Declaration
public PhoneRows Faxes { get; }
Property Value
Type | Description |
---|---|
PhoneRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Firstname
First name
Declaration
public string Firstname { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Gender
Male/female. No jokes please. To be used for selecting correct salutations & grammar. 0 = unknown, 1 = female, 2 = male
Declaration
public short Gender { get; set; }
Property Value
Type | Description |
---|---|
short |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
GroupId
Our contact's original group, if this is a B2C person, otherwise mirror of contact.group_id
Declaration
public int GroupId { get; set; }
Property Value
Type | Description |
---|---|
int |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Info
Related object TextRow: Long text fields from all over the system
Declaration
public TextRow Info { get; set; }
Property Value
Type | Description |
---|---|
TextRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Initials
Where Pierre van Mever becomes P. van Mever. Actually, initials to be used in formal addresses, mostly in the Ducth market
Declaration
public string Initials { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
InterestHelper
Interest helper. The helpers provide functionality that combines MDO list and 'what is actually selected', i.e., they combine entity subcollections with mdo lists. See the base class InterestHelper for more information!
Declaration
public PersonInterestHelper InterestHelper { get; }
Property Value
Type | Description |
---|---|
PersonInterestHelper |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Interests
Related object PersonInterestRows: Link table between person and person interest
Declaration
public PersonInterestRows Interests { get; }
Property Value
Type | Description |
---|---|
PersonInterestRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
InternetPhones
Persons in a company or an organization
Entity Object for table 'person'. Entity objects represent full entities with both the base table object and all related objects, such as udef, and things like owner associate and whatever else is logically related to the base object.Declaration
public EmailRows InternetPhones { get; }
Property Value
Type | Description |
---|---|
EmailRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Invitations
Related object AppointmentCollection: "Tasks, appointments, followups, phone calls; and documents"
Declaration
public AppointmentCollection Invitations { get; }
Property Value
Type | Description |
---|---|
AppointmentCollection |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
IsDeleted
Is the row deleted?
Declaration
public override bool IsDeleted { get; }
Property Value
Type | Description |
---|---|
bool |
Overrides
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
IsMarkedForDelete
Gets or sets a value indicating whether this instance is marked for delete.
Declaration
public override bool IsMarkedForDelete { get; set; }
Property Value
Type | Description |
---|---|
bool |
|
Overrides
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
IsNew
Is the row new, e.g. not been inserted to the database?
Declaration
public override bool IsNew { get; }
Property Value
Type | Description |
---|---|
bool |
Overrides
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Kanafname
Kana last name, used in Japanese versions only
Declaration
public string Kanafname { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Kanalname
Kana last name, used in Japanese versions only
Declaration
public string Kanalname { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Lastname
Last name
Declaration
public string Lastname { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
MainRow
Return the main row for the Entity.
Declaration
protected override TableRowBase MainRow { get; }
Property Value
Type | Description |
---|---|
TableRowBase |
Overrides
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
MiddleName
Middle name or 'van' etc.
Declaration
public string MiddleName { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
MobilePhones
Related object PhoneRows: Contact and Person phonenumbers (+fax)
Declaration
public PhoneRows MobilePhones { get; }
Property Value
Type | Description |
---|---|
PhoneRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
MonthOfBirth
Birth month
Declaration
public short MonthOfBirth { get; set; }
Property Value
Type | Description |
---|---|
short |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Mrmrs
e.g. Mrs sex_title
Declaration
public string Mrmrs { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Nomailing
Do not send DM's to this person
Declaration
public short Nomailing { get; set; }
Property Value
Type | Description |
---|---|
short |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
OfficePhones
Related object PhoneRows: Contact and Person phonenumbers (+fax)
Declaration
public PhoneRows OfficePhones { get; }
Property Value
Type | Description |
---|---|
PhoneRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Pagers
Related object PhoneRows: Contact and Person phonenumbers (+fax)
Declaration
public PhoneRows Pagers { get; }
Property Value
Type | Description |
---|---|
PhoneRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
PersonId
Primary key
Declaration
public int PersonId { get; }
Property Value
Type | Description |
---|---|
int |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
PersonNumber
Alphanumeric user field
Declaration
public string PersonNumber { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
PhonePresent
flag to show there are phone registrations
Declaration
public short PhonePresent { get; set; }
Property Value
Type | Description |
---|---|
short |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Position
Related object PersPosRow: PersPos list table
Declaration
public PersPosRow Position { get; set; }
Property Value
Type | Description |
---|---|
PersPosRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Post1
Postal address, used in Japanese versions only
Declaration
public string Post1 { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Post2
Postal address, used in Japanese versions only
Declaration
public string Post2 { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Post3
Postal address, used in Japanese versions only
Declaration
public string Post3 { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
PrivatePhones
Related object PhoneRows: Contact and Person phonenumbers (+fax)
Declaration
public PhoneRows PrivatePhones { get; }
Property Value
Type | Description |
---|---|
PhoneRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
ProjectMemberships
Related object ProjectMemberCollection: Project members
Declaration
public ProjectMemberCollection ProjectMemberships { get; }
Property Value
Type | Description |
---|---|
ProjectMemberCollection |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Rank
Display sort sequence for default sort order
Declaration
public short Rank { get; set; }
Property Value
Type | Description |
---|---|
short |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Registered
Registered date
Declaration
public DateTime Registered { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Retired
1 = the user is retired and should have no rights, not appear in lists, etc.
Declaration
public short Retired { get; set; }
Property Value
Type | Description |
---|---|
short |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Row
The encapsulated object PersonRow.
Declaration
public PersonRow Row { get; }
Property Value
Type | Description |
---|---|
PersonRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
SaleHistory
Related object SaleHistRows: Mirror image of the Sale table, providing a full transaction history
Declaration
public SaleHistRows SaleHistory { get; }
Property Value
Type | Description |
---|---|
SaleHistRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Sales
Related object SaleCollection: Sales
Declaration
public SaleCollection Sales { get; }
Property Value
Type | Description |
---|---|
SaleCollection |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Salutation
Academic title, populated from Salutation list but can be overwritten with anything at all
Declaration
public string Salutation { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
SelectionMemberships
Related object SelectionMemberRows: Selection members
Declaration
public SelectionMemberRows SelectionMemberships { get; }
Property Value
Type | Description |
---|---|
SelectionMemberRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
ShipmentTypeReservations
Related object ShipmentTypeReservationRows: Link table between person and ShipmentTypeReservation
Declaration
public ShipmentTypeReservationRows ShipmentTypeReservations { get; }
Property Value
Type | Description |
---|---|
ShipmentTypeReservationRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Source
How did we get this person? For future integration needs
Declaration
public short Source { get; set; }
Property Value
Type | Description |
---|---|
short |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
TableInfo
Get a TableInfo object for the person table.
Declaration
public PersonTableInfo TableInfo { get; }
Property Value
Type | Description |
---|---|
PersonTableInfo |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Title
Title
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
UdefHelper
Get the Udef class of EntityUdefHelper for working with udef fields
Declaration
public EntityUdefHelper UdefHelper { get; }
Property Value
Type | Description |
---|---|
EntityUdefHelper |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
UdefLarge
Related object UDPersonLargeRow: User-defined fields
Declaration
public UDPersonLargeRow UdefLarge { get; set; }
Property Value
Type | Description |
---|---|
UDPersonLargeRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
UdefSmall
Related object UDPersonSmallRow: User-defined fields
Declaration
public UDPersonSmallRow UdefSmall { get; set; }
Property Value
Type | Description |
---|---|
UDPersonSmallRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Updated
Last updated date
Declaration
public DateTime Updated { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
UpdatedAssociate
Related object AssociateRow: Employees, resources and other users - except for External persons
Declaration
public AssociateRow UpdatedAssociate { get; set; }
Property Value
Type | Description |
---|---|
AssociateRow |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
UpdatedCount
Number of times updated
Declaration
public short UpdatedCount { get; set; }
Property Value
Type | Description |
---|---|
short |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Urls
Related object URLRows: Unified Resource Locators
Declaration
public URLRows Urls { get; }
Property Value
Type | Description |
---|---|
URLRows |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Usepersonaddress
If 1, use person's address for mailing instead of company address
Declaration
public short Usepersonaddress { get; set; }
Property Value
Type | Description |
---|---|
short |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
YearOfBirth
Birth year (4 digit)
Declaration
public short YearOfBirth { get; set; }
Property Value
Type | Description |
---|---|
short |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCategoryIdxStatic Get method: GetFromIdxCategoryIdx(int) |
PersonNumber | PersonNumber: Alphanumeric user-field Nested index class: PersonCollection.IdxPersonNumberStatic Get method: GetFromIdxPersonNumber(string) |
BusinessIdx | BusinessIdx: Business if this is a B2C person, otherwise mirror of contact.business_idx Nested index class: PersonCollection.IdxBusinessIdxStatic Get method: GetFromIdxBusinessIdx(int) |
UserdefId | UserdefId: User-defined table record 1 Nested index class: PersonCollection.IdxUserdefIdStatic Get method: GetFromIdxUserdefId(int) |
Kanalname | Kanalname: JPN Nested index class: PersonCollection.IdxKanalnameStatic Get method: GetFromIdxKanalname(string) |
Lastname | Lastname: Last name Nested index class: PersonCollection.IdxLastnameStatic Get method: GetFromIdxLastname(string) |
ContactId | ContactId: Owning contact ID, 0 is not allowed Nested index class: PersonCollection.IdxContactIdStatic Get method: GetFromIdxContactId(int) |
Userdef2Id | Userdef2Id: User-defined table record 2 Nested index class: PersonCollection.IdxUserdef2IdStatic Get method: GetFromIdxUserdef2Id(int) |
Firstname | Firstname: First name Nested index class: PersonCollection.IdxFirstnameStatic Get method: GetFromIdxFirstname(string) |
Source | Source: How did we get this person? For future integration requirements Nested index class: PersonCollection.IdxSourceStatic Get method: GetFromIdxSource(short) |
Kanafname | Kanafname: JPN Nested index class: PersonCollection.IdxKanafnameStatic Get method: GetFromIdxKanafname(string) |
ContactId, Rank | ContactId: Owning contact ID, 0 is not allowed Rank:Display sort sequence; person with rank 1 has special role in selections (rank is unique within each contact and starts on 1). Nested index class: PersonCollection.IdxContactIdRankStatic Get method: GetFromIdxContactIdRank(int, short) |
Methods
CreateNew()
Create a new instance of the Person entity.
Declaration
public static Person CreateNew()
Returns
Type | Description |
---|---|
Person | A new instance of the Person entity. |
Remarks
Entity 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 SuperOffice.CRM.Data.Person.Save method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
- You can create a (nested) Person Person.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(CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities 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 SuperOffice.CRM.Data.Person.IsNew and SuperOffice.CRM.Data.Person.IsDirty properties set to true. Such an Entity 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.
Index fields | Nested index class name |
---|---|
PersonId | PersonId: Primary key Nested index class: Person.IdxPersonIdStatic Get method: GetFromIdxPersonId(int) |
Index fields | Nested index class name |
---|---|
CategoryIdx | CategoryIdx: Category if this is a B2C person, otherwise mirror of contact.category_idx Nested index class: PersonCollection.IdxCateg |