RCPT_ITEM 
Logical Entity Name  Rcpt Item 
Default Table Name  RCPT_ITEM 
Oracle Temporary Table  NO 
Physical Only  NO 
Do Not Generate  False 
Owner   
Definition 
Receipt Item:  Contains information regarding the quantity and test status for each item received.
 
Note 
Full Name:  Receipt Item

Contains information regarding the quantity and test status for each item received.
 
PreSQL   
DDL Code  CREATE TABLE RCPT_ITEM(
     EQUIP_RCPT_ID          NUMBER(38, 0)      NOT NULL,
     EQUIP_RCPT_VER         NUMBER(38, 0)      NOT NULL,
     RCPT_ITEM_ID           NUMBER(38, 0)      NOT NULL,
     ITEM_DESC              VARCHAR2(255)      NOT NULL,
     QTY_RCVD               NUMBER(38, 0)      DEFAULT 1 NOT NULL,
     QTY_REJECT             NUMBER(38, 0)      DEFAULT 0,
     ACCPT_TEST_REQ_IND     CHAR(1)            DEFAULT 'N' NOT NULL,
     TEST_INSPECT_STAT      CHAR(4)            DEFAULT 'N',
     CERT_RCVD_IND          CHAR(1)            DEFAULT 'N' NOT NULL,
     ITEM_CMNT              VARCHAR2(2000),
     BLDG_ID                VARCHAR2(10)       NOT NULL,
     AREA_ID                VARCHAR2(50)       NOT NULL,
     EQUIP_ID               VARCHAR2(30),
     MOD_DTE                DATE               NOT NULL,
     MOD_BY_UID             VARCHAR2(64)       NOT NULL,
     CONSTRAINT RECPT_ITEM_PK PRIMARY KEY (EQUIP_RCPT_ID, EQUIP_RCPT_VER, RCPT_ITEM_ID)
     USING INDEX
         PCTFREE 10
         INITRANS 2
         MAXTRANS 255
         TABLESPACE EQUIP_INDEX_TS
         LOGGING
         STORAGE(INITIAL 64K
                 NEXT 64K
                 MINEXTENTS 1
                 MAXEXTENTS UNLIMITED
                 PCTINCREASE 0
                 ),
     CONSTRAINT EQUIP_RCPT_ITEM_RF FOREIGN KEY (EQUIP_RCPT_ID, EQUIP_RCPT_VER)
     REFERENCES EQUIP_RCPT(EQUIP_RCPT_ID, EQUIP_RCPT_VER),
     CONSTRAINT RCPT_ITEM_BLDG_AREA_RF FOREIGN KEY (BLDG_ID, AREA_ID)
     REFERENCES BLDG_AREA(BLDG_ID, AREA_ID)
)
PCTFREE 10
PCTUSED 40
INITRANS 1
MAXTRANS 255
TABLESPACE EQUIP_TS
LOGGING
NOPARALLEL
STORAGE(INITIAL 64K
         NEXT 64K
         MINEXTENTS 1
         MAXEXTENTS UNLIMITED
         PCTINCREASE 0
         )
NOCACHE
NOCOMPRESS
;
 
PostSQL   

RCPT_ITEM Columns 
ColumnName  Domain  Datatype  NULL  Definition 
EQUIP_RCPT_ID(PK)(FK)    NUMBER(38, 0)  NO 
Equipment Receipt Identifier:  The unique identifier for an equipment receipt transaction.
 
EQUIP_RCPT_VER(PK)(FK)    NUMBER(38, 0)  NO 
Equipment Receipt Version: Indicates the version of the equipment receipt.  If a  receipt is changed the original information is saved and a new version is created.
 
RCPT_ITEM_ID(PK)    NUMBER(38, 0)  NO 
Receipt Item Identifier: A numeric field used to represent each line item within a receipt.  A line item exists for each type of equipment received. The system automatically generates this number and increments it by 1 for each line item for a given receipt.
 
ITEM_DESC  Description  VARCHAR2(255)  NO 
Item Description: A free form text field used identify the item received.
 
QTY_RCVD  Quantity  NUMBER(38, 0)  NO 
Quantity Received: The number of units received for a specific item.
 
QTY_REJECT  Quantity Rejected  NUMBER(38, 0)  YES 
Quantity Rejected: The number of units for a particular item that were rejected.  The default value is 0.
 
ACCPT_TEST_REQ_IND  Indicator  CHAR(1)  NO 
Acceptance Test Required Indicator: Used to indicate if an acceptance test must be performed on the item received. Valid values include "Y" and "N."  Default value is "N."
 
TEST_INSPECT_STAT    CHAR(4)  YES 
Test Inspection Status: Used to document whether the item inspected passed or failed the inspection.  Valid values include "pass" and "fail."
 
CERT_RCVD_IND  Indicator  CHAR(1)  NO 
Certification Received Indicator: Used to document if certification papers associated with the item received were received.  Valid values are "Y' and "N."  Default value is "Y."
 
ITEM_CMNT  Comment  VARCHAR2(2000)  YES 
Item Comment:  A free form text field used to record notes for a specific item within a receipt transaction.
 
BLDG_ID(FK)    VARCHAR2(10)  NO 
Building Code: The unique identifier for a building. 
 
AREA_ID(FK)  Default Text  VARCHAR2(50)  NO 
 Area Identifier: The unique identifier for a location within a building.
 
EQUIP_ID  Asset Identifier  VARCHAR2(30)  YES 
Barcode Identifier: The barcode number associated with the item.  This field is validated manually against the Equipment table.
 
MOD_DTE  Modify Date  DATE  NO 
Modify Date: The date the Receipt Item record was modified.
 
MOD_BY_UID  Userid  VARCHAR2(64)  NO 
Modified By Userid: The userid of the person who last made changes to the Receipt Item record.
 

RCPT_ITEM Primary and Unique Keys 
Key Name  Key Type  Keys 
RECPT_ITEM_PK  PrimaryKey  EQUIP_RCPT_ID, EQUIP_RCPT_VER, RCPT_ITEM_ID 

RCPT_ITEM Foreign Keys 
Parent Relationships: 
Table Name  Type  Cardinality  Constraint Name  VerbPhrase  InversePhrase  Foreign Keys  Is Supertype  Deferrable  Initially Deferred 
EQUIP_RCPT  Identifying  One to One or More  EQUIP_RCPT_ITEM_RF      EQUIP_RCPT_ID, EQUIP_RCPT_VER  NO  NO  NO 
BLDG_AREA  Non-Identifying  One To Zero or More  RCPT_ITEM_BLDG_AREA_RF      BLDG_ID, AREA_ID  NO  NO  NO 
Child Relationships: 
Table Name  Type  Cardinality  Constraint Name  VerbPhrase  InversePhrase  Foreign Keys  Is Subtype  Deferrable  Initially Deferred 

RCPT_ITEM Check Constraints 
Check Constraint Name  CheckConstraint 

RCPT_ITEM Storage 
STORAGE OPTION  STORAGE VALUE 
TABLESPACE  EQUIP_TS 
PctFree  10 
PCTUSED   40 
MinExtents 
MaxExtents  2147483645 
Initial  64 
Next  64 
PctIncrease 
InitTrans 
MaxTrans  255 
Organization  Heap 
Cache  NO 
Logging   
Parallel  NO 
Parallel Degrees   
Parallel Instances   
FREELISTS   
FREELIST GROUPS   
Buffer Pool   
Table Compression  NO 
Row Movement  Disabled 

RCPT_ITEM Partitions 
PARTITION PROPERTY  PARTITION PROPERTY VALUE 

RCPT_ITEM Growth Metrics 
TABLE METRIC  TABLE METRIC VALUE 
Current Row Count 
Growth  Static 
Growth Type  N/A 
Growth Period  N/A 
Maximum Rows 

RCPT_ITEM Object Permissions 

User/Role Name  Grantee Type  Permission Type  Action Type  Is Action Extended  Is System 
RCPT_ITEM Security Types 
Name  Current Value 

RCPT_ITEM Bound Attachments 
Name  Current Value 

RCPT_ITEM Where Used - Model Usage 
Mapped Object  Is User Defined?  Denormalization Mappings  Description  Bound Attachments 
Logical
Does Not Exist 
NO       
ALARM_MYSQL (MySQL)
Does Not Exist 
NO       
ALARM_ORACLE (Oracle)
Does Not Exist 
NO       
BICS (Oracle)
Does Not Exist 
NO       
BLM (Oracle)
Does Not Exist 
NO       
BYPASS_REQ (Oracle)
Does Not Exist 
NO       
CHAN_ARCH (Oracle)
Does Not Exist 
NO       
CNMS_PRPSL (Oracle)
Does Not Exist 
NO       
DIAG (Oracle)
Does Not Exist 
NO       
DIAG_MPS (Oracle)
Does Not Exist 
NO       
ENGA (Oracle)
Does Not Exist 
NO       
EPICS (Oracle)
Does Not Exist 
NO       
EQUIP (Oracle)
RCPT_ITEM 
NO       
EXPRESS (Oracle)
Does Not Exist 
NO       
ICS_SFTW_APPL (Oracle)
Does Not Exist 
NO       
INSTR (Oracle)
Does Not Exist 
NO       
Instrument Logbook (Oracle)
Does Not Exist 
NO       
INVT (Oracle)
Does Not Exist 
NO       
IONSRC (Oracle)
Does Not Exist 
NO       
IONSRC1 (Oracle)
Does Not Exist 
NO       
IPTSv5 (Oracle)
Does Not Exist 
NO       
IRMISBase (Oracle)
Does Not Exist 
NO       
Logbook (Oracle)
Does Not Exist 
NO       
Magnet (Oracle)
Does Not Exist 
NO       
MPS (Oracle)
Does Not Exist 
NO       
NS_OPER (Oracle)
Does Not Exist 
NO       
OPER (Oracle)
Does Not Exist 
NO       
PART (Oracle)
Does Not Exist 
NO       
PRINT (Oracle)
Does Not Exist 
NO       
PROC (Oracle)
Does Not Exist 
NO       
PRPSL (Oracle)
Does Not Exist 
NO       
PUBL (Oracle)
Does Not Exist 
NO       
PUBL_V1 (Oracle)
Does Not Exist 
NO       
PV_LOGGER (Oracle)
Does Not Exist 
NO       
SCORE (Oracle)
Does Not Exist 
NO       
SICAT (Oracle)
Does Not Exist 
NO       
SMPL (Oracle)
Does Not Exist 
NO       
SMPLACT (Oracle)
Does Not Exist 
NO       
SURVEY (Oracle)
Does Not Exist 
NO       
Watchman (Oracle)
Does Not Exist 
NO       
XAL_OPTICS (Oracle)
Does Not Exist 
NO       
XF_ADMIN (Oracle)
Does Not Exist 
NO       

RCPT_ITEM Where Used - Submodel Usage 
Model  Submodel Usage 
EQUIP (Oracle)  Main Model 

RCPT_ITEM Data Movement Rules 
Name  Type  Rule Text/Value