Show pageOld revisionsBacklinksExport to PDFFold/unfold allBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== pears.IQXNetAction ====== <WRAP center round info> Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. </WRAP> ===== Description ===== Used to determine IQXWeb actions (EG: web refrencing uses this table to know when to send out emails/faxs for timesheet approvals) ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | **IQXNetActionID** | char(20) | NOT NULL | | | | IQXNetUserID | char(20) | NOT NULL | | | | ActionType | char(50) | NOT NULL | | | | TargetType | char(20) | NOT NULL | | U-User P-Person E-Employee R-Progress L-Placement SHIFT-Shift etc | | ActionState | char(1) | NOT NULL | | 0-newly added 1-performed X-ignored | | WhenRequested | timestamp | NOT NULL | | | | WhenPerformed | timestamp | NULL | | | | TargetID | char(20) | NULL | | | | ActionAddress | char(100) | NULL | | | ===== Primary Key ===== * IQXNetActionID ===== Foreign Keys ===== ^ Constraint ^ Columns ^ References ^ Delete/update action ^ | IQXNetUser | IQXNetUserID | [[database:tables:pears_iqxnetuser|pears.IQXNetUser (IQXNetUserID)]] | NOT NULL; ON DELETE CASCADE | ===== Referenced By ===== * No incoming foreign keys found. ===== Indexes ===== ^ Name ^ Type ^ Columns ^ Detail ^ | IQXNetActionState | Index | ActionState, WhenRequested | | ===== Triggers ===== * No triggers found. ===== Original SQL ===== <code sql> -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."IQXNetAction" -- Table comment: Used to determine IQXWeb actions (EG: web refrencing uses this table to know when to send out emails/faxs for timesheet approvals) -- Statement count: 6 CREATE TABLE "pears"."IQXNetAction" ( "IQXNetActionID" char(20) NOT NULL ,"IQXNetUserID" char(20) NOT NULL ,"ActionType" char(50) NOT NULL ,"TargetType" char(20) NOT NULL ,"ActionState" char(1) NOT NULL ,"WhenRequested" timestamp NOT NULL ,"WhenPerformed" timestamp NULL ,"TargetID" char(20) NULL ,"ActionAddress" char(100) NULL ,PRIMARY KEY ("IQXNetActionID" ASC) ) go COMMENT ON COLUMN "pears"."IQXNetAction"."TargetType" IS 'U-User P-Person E-Employee R-Progress L-Placement SHIFT-Shift etc' go COMMENT ON COLUMN "pears"."IQXNetAction"."ActionState" IS '0-newly added 1-performed X-ignored' go COMMENT ON TABLE "pears"."IQXNetAction" IS 'Used to determine IQXWeb actions (EG: web refrencing uses this table to know when to send out emails/faxs for timesheet approvals)' go ALTER TABLE "pears"."IQXNetAction" ADD NOT NULL FOREIGN KEY "IQXNetUser" ("IQXNetUserID" ASC) REFERENCES "pears"."IQXNetUser" ("IQXNetUserID") ON DELETE CASCADE go CREATE INDEX "IQXNetActionState" ON "pears"."IQXNetAction" ( "ActionState","WhenRequested" ) go </code> database/tables/pears_iqxnetaction.txt Last modified: 2026/08/07 19:24by 127.0.0.1