Class ModuleOwnerTableInfo
Table 'ModuleOwner': Unique owner of a set of licensed modules
Implements
Inherited Members
Namespace: SuperOffice.CRM.Data
Assembly: SoDataBase.dll
Syntax
[DatabaseTable("ModuleOwner")]
public class ModuleOwnerTableInfo : TableInfo, ICloneable
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling
Fields
DictionaryTableName
Conceptual name of table ModuleOwner in the database dictionary: ModuleOwner
Declaration
public const string DictionaryTableName = "ModuleOwner"
Field Value
Type | Description |
---|---|
System.String |
Properties
AdminWarningDate
Field 'adminWarningDate' in table 'ModuleOwner': Dictionary type DateTime, .NET type: System.DateTime
When should nagging begin (for instance, during login to SoAdmin)
Declaration
public DateTimeFieldInfo AdminWarningDate { get; }
Property Value
Type | Description |
---|---|
DateTimeFieldInfo |
Definition
Definition of the table as described in the deployed runtime dictionary
Declaration
public override SoTable Definition { get; }
Property Value
Type | Description |
---|---|
SoTable |
Overrides
DeploymentType
Field 'deploymentType' in table 'ModuleOwner': Dictionary type Id, .NET type: System.Int32
Type of deployment
Declaration
public Int32FieldInfo DeploymentType { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
DictionaryTableNumber
Table number for table ModuleOwner in the database dictionary; potentially changes between databases, but always the same over the lifetime of any single database
Declaration
public int DictionaryTableNumber { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
EncryptedCheck
Field 'encryptedCheck' in table 'ModuleOwner': Dictionary type String[255], .NET type: System.String
Encrypted checksum that stops tampering and copying between databases
Declaration
public StringFieldInfo EncryptedCheck { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
Expiration
Field 'expiration' in table 'ModuleOwner': Dictionary type DateTime, .NET type: System.DateTime
Expiration date, 0 = forever
Declaration
public DateTimeFieldInfo Expiration { get; }
Property Value
Type | Description |
---|---|
DateTimeFieldInfo |
ExtraFlags
Field 'extraFlags' in table 'ModuleOwner': Dictionary type UInt, .NET type: System.UInt32
Unspecified extra flags of license, part of checksum
Declaration
public FieldInfo ExtraFlags { get; }
Property Value
Type | Description |
---|---|
FieldInfo |
ExtraInfo
Field 'extraInfo' in table 'ModuleOwner': Dictionary type String[255], .NET type: System.String
Free field, can be used by the module owner (example: host domain, for eJournal)
Declaration
public StringFieldInfo ExtraInfo { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
GraceTo
Field 'graceTo' in table 'ModuleOwner': Dictionary type DateTime, .NET type: System.DateTime
Real expiration date, when the given module actually stops working. Modules that normally update data should switch to read-only mode. Modules that only read anyway, should disable themselves in some other way
Declaration
public DateTimeFieldInfo GraceTo { get; }
Property Value
Type | Description |
---|---|
DateTimeFieldInfo |
LeftOuterJoin_ModuleLicense_ModuleOwnerId
Generated left outer join from the primary key ModuleOwnerId on this table, to ModuleLicense.ModuleOwnerId.
Declaration
public TargetedLeftOuterJoin<ModuleLicenseTableInfo> LeftOuterJoin_ModuleLicense_ModuleOwnerId { get; }
Property Value
Type | Description |
---|---|
TargetedLeftOuterJoin<ModuleLicenseTableInfo> |
LicenseUrl
Field 'licenseUrl' in table 'ModuleOwner': Dictionary type String[255], .NET type: System.String
The url that will provide keycodes for all modules owned by this owner
Declaration
public StringFieldInfo LicenseUrl { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
LicenseVersion
Field 'licenseVersion' in table 'ModuleOwner': Dictionary type String[255], .NET type: System.String
The url that will provide keycodes for all modules owned by this owner
Declaration
public StringFieldInfo LicenseVersion { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
MaintenanceTo
Field 'maintenanceTo' in table 'ModuleOwner': Dictionary type DateTime, .NET type: System.DateTime
Expiration date for maintenance. After this date, upgrades should refuse to install.
Declaration
public DateTimeFieldInfo MaintenanceTo { get; }
Property Value
Type | Description |
---|---|
DateTimeFieldInfo |
ModuleOwnerId
Field 'ModuleOwner_id' in table 'ModuleOwner': Dictionary type PK, .NET type: System.Int32
Primary key
Declaration
public Int32FieldInfo ModuleOwnerId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
NextCheckDate
Field 'nextCheckDate' in table 'ModuleOwner': Dictionary type DateTime, .NET type: System.DateTime
When should the system next check with the license issuer
Declaration
public DateTimeFieldInfo NextCheckDate { get; }
Property Value
Type | Description |
---|---|
DateTimeFieldInfo |
OwnerDescription
Field 'ownerDescription' in table 'ModuleOwner': Dictionary type String[255], .NET type: System.String
Human-readable description of owner, shown in GUI, default language. Additional languages can be added to LocaleText, resource type 26
Declaration
public StringFieldInfo OwnerDescription { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
OwnerName
Field 'ownerName' in table 'ModuleOwner': Dictionary type String[240], .NET type: System.String
The name of the module owner, not visible in GUI but used in the code. OwnerName SUPEROFFICE is reserved and may NEVER be used by partners. This must be in UPPER CASE and only contain A-Z and 0-9. NO EXTENDED CHARACTERS please.
Declaration
public StringFieldInfo OwnerName { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
ProductType
Field 'productType' in table 'ModuleOwner': Dictionary type String[255], .NET type: System.String
Type of product
Declaration
public StringFieldInfo ProductType { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
ProductTypeDescription
Field 'productTypeDescription' in table 'ModuleOwner': Dictionary type String[255], .NET type: System.String
Description of type of product
Declaration
public StringFieldInfo ProductTypeDescription { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
Registered
Field 'registered' in table 'ModuleOwner': Dictionary type UtcDateTime, .NET type: System.DateTime
Registered when
Declaration
public DateTimeFieldInfo Registered { get; }
Property Value
Type | Description |
---|---|
DateTimeFieldInfo |
RegisteredAssociateId
Field 'registered_associate_id' in table 'ModuleOwner': Dictionary type FK, target: Associate, .NET type: System.Int32
Registered by whom
Declaration
public Int32FieldInfo RegisteredAssociateId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
RegisteredAssociateId_InnerJoin_Associate
Generated join from the foreign key RegisteredAssociateId in this table, to its target table AssociateTableInfo.
Declaration
public TargetedInnerJoin<AssociateTableInfo> RegisteredAssociateId_InnerJoin_Associate { get; }
Property Value
Type | Description |
---|---|
TargetedInnerJoin<AssociateTableInfo> |
RuntimeDefinition
Definition of the table as described in the deployed runtime dictionary
Declaration
public static SoTable RuntimeDefinition { get; }
Property Value
Type | Description |
---|---|
SoTable |
Signature
Field 'signature' in table 'ModuleOwner': Dictionary type String[255], .NET type: System.String
Signature of all non-zero-amount moduleLicense rows referring to this owner
Declaration
public StringFieldInfo Signature { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
SignedPublicKey
Field 'signedPublicKey' in table 'ModuleOwner': Dictionary type Blob, .NET type: System.IO.Stream
The public key used to verify licenses owned by this owner
Declaration
public FieldInfo SignedPublicKey { get; }
Property Value
Type | Description |
---|---|
FieldInfo |
Updated
Field 'updated' in table 'ModuleOwner': Dictionary type UtcDateTime, .NET type: System.DateTime
Last updated when
Declaration
public DateTimeFieldInfo Updated { get; }
Property Value
Type | Description |
---|---|
DateTimeFieldInfo |
UpdatedAssociateId
Field 'updated_associate_id' in table 'ModuleOwner': Dictionary type FK, target: Associate, .NET type: System.Int32
Last updated by whom
Declaration
public Int32FieldInfo UpdatedAssociateId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
UpdatedAssociateId_InnerJoin_Associate
Generated join from the foreign key UpdatedAssociateId in this table, to its target table AssociateTableInfo.
Declaration
public TargetedInnerJoin<AssociateTableInfo> UpdatedAssociateId_InnerJoin_Associate { get; }
Property Value
Type | Description |
---|---|
TargetedInnerJoin<AssociateTableInfo> |
UpdatedCount
Field 'updatedCount' in table 'ModuleOwner': Dictionary type UShort, .NET type: System.Int16
Number of updates made to this record
Declaration
public UInt16FieldInfo UpdatedCount { get; }
Property Value
Type | Description |
---|---|
UInt16FieldInfo |