pears.PlacementElementType

Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.

Stages in the calculation of fees and other headings for optional data collected at placement time.

Column Type Null Default Comment
PlacementElementTypeID char(20) NOT NULL
Name char(30) NOT NULL
Description char(50) NOT NULL
SortOrder smallint NULL
Temp smallint NULL 0
Hidden smallint NULL 0
ReadOnly smallint NULL 0
DataType char(1) NOT NULL
DefaultValue long varchar NULL
ValidationCheck long varchar NULL
ValidationMessage long varchar NULL
WarningCheck long varchar NULL
WarningMessage long varchar NULL
AuditFlag smallint NULL 0
CanEditWhenAuthorised smallint NULL 0
  • PlacementElementTypeID
  • No outgoing foreign keys found.
Table Constraint Columns Referenced columns
pears.PlacementElement PlacementElementType PlacementElementTypeID PlacementElementTypeID
Name Type Columns Detail
PlacElType_SortOrder Index SortOrder
PlacElType_Name Unique index Name
  • No triggers found.
-- IQX database structure split by table
-- Source: IQXDatabaseStructure - with comments.sql
-- Table: "pears"."PlacementElementType"
-- Table comment: Stages in the calculation of fees and other headings for optional data collected at placement time.
-- Statement count: 4
 
CREATE TABLE "pears"."PlacementElementType" (
    "PlacementElementTypeID"         CHAR(20) NOT NULL
   ,"Name"                           CHAR(30) NOT NULL
   ,"Description"                    CHAR(50) NOT NULL
   ,"SortOrder"                      SMALLINT NULL
   ,"Temp"                           SMALLINT NULL DEFAULT 0
   ,"Hidden"                         SMALLINT NULL DEFAULT 0
   ,"ReadOnly"                       SMALLINT NULL DEFAULT 0
   ,"DataType"                       CHAR(1) NOT NULL
   ,"DefaultValue"                   long VARCHAR NULL
   ,"ValidationCheck"                long VARCHAR NULL
   ,"ValidationMessage"              long VARCHAR NULL
   ,"WarningCheck"                   long VARCHAR NULL
   ,"WarningMessage"                 long VARCHAR NULL
   ,"AuditFlag"                      SMALLINT NULL DEFAULT 0
   ,"CanEditWhenAuthorised"          SMALLINT NULL DEFAULT 0
   ,PRIMARY KEY ("PlacementElementTypeID" ASC) 
)
GO
 
 
COMMENT ON TABLE "pears"."PlacementElementType" IS 
	'Stages in the calculation of fees and other headings for optional data collected at placement time.'
GO
 
 
CREATE INDEX "PlacElType_SortOrder" ON "pears"."PlacementElementType"
    ( "SortOrder" )
GO
 
 
CREATE UNIQUE INDEX "PlacElType_Name" ON "pears"."PlacementElementType"
    ( "Name" )
GO
  • database/tables/pears_placementelementtype.txt
  • Last modified: 2026/08/07 19:24
  • by 127.0.0.1