PROPOSAL 
Logical Entity Name  Proposal 
Default Table Name  PROPOSAL 
Oracle Temporary Table  NO 
Physical Only  NO 
Do Not Generate  False 
Owner  CNMS_PRPSL 
Definition 
Proposal: The propsal to conduct an experiment at the experimental facility.
 
Note 
 
PreSQL   
DDL Code  CREATE TABLE CNMS_PRPSL.PROPOSAL(
     PRPSL_ID               VARCHAR2(10)       NOT NULL,
     USER_ACCESS_ID         VARCHAR2(20),
     RAPID_ACC_IND          CHAR(1)            DEFAULT 'N' NOT NULL,
     RA_JUST                VARCHAR2(2000),
     STAT_ID                VARCHAR2(20)       NOT NULL,
     REVIEW_STAT_ID         VARCHAR2(20),
     TITLE                  VARCHAR2(128)      NOT NULL,
     REASON_USE             VARCHAR2(500),
     CY_ID                  VARCHAR2(25),
     STAFF_CONT_IND         CHAR(1)            DEFAULT 'N',
     INST_ID                NUMBER(38, 0)      NOT NULL,
     PERSON_ID              VARCHAR2(10)       NOT NULL,
     REQ_BEGIN_WORK_DTE     DATE               NOT NULL,
     REQ_DAY_NBR            NUMBER(3, 0),
     ACT_DAY_NBR            NUMBER(3, 0),
     PRPSL_CAT_ID           VARCHAR2(25),
     PRPSL_DTE              DATE               DEFAULT sysdate NOT NULL,
     MOD_DATE               DATE               NOT NULL,
     APEX_PAGE_NBR          NUMBER(4, 0),
     SPEC_COND              VARCHAR2(4000),
     PART_USER_DESCR        VARCHAR2(255),
     RSS_ID                 NUMBER(38, 0),
     RSS_CMNT               VARCHAR2(2000),
     GRP_LEAD_APRV_IND      CHAR(1)            DEFAULT 'N' NOT NULL,
     CONSTRAINT PK_PROPOSAL PRIMARY KEY (PRPSL_ID)
     USING INDEX
         LOGGING,
     CONSTRAINT fk_proposal_to_person FOREIGN KEY (PERSON_ID)
     REFERENCES XF_ADMIN.PERSON(PERSON_ID),
     CONSTRAINT fk_proposal_to_institute FOREIGN KEY (INST_ID)
     REFERENCES XF_ADMIN.INST(INST_ID),
     CONSTRAINT fk_proposal_to_prpsl_stat FOREIGN KEY (STAT_ID)
     REFERENCES CNMS_PRPSL.PRPSL_STAT(STAT_ID),
     CONSTRAINT fk_proposal_to_prpsl_cat FOREIGN KEY (PRPSL_CAT_ID)
     REFERENCES CNMS_PRPSL.PRPSL_CAT(PRPSL_CAT_ID),
     CONSTRAINT fk_proposal_to_expt_cycle FOREIGN KEY (CY_ID)
     REFERENCES CNMS_PRPSL.EXPT_CYCLE(CY_ID),
     CONSTRAINT fk_prpsl_to_user_access_mode FOREIGN KEY (USER_ACCESS_ID)
     REFERENCES CNMS_PRPSL.USER_ACESS_MODE(USER_ACCESS_ID)
)
LOGGING
NOPARALLEL
NOCACHE
NOCOMPRESS
;
 
PostSQL   

PROPOSAL Columns 
ColumnName  Domain  Datatype  NULL  Definition 
PRPSL_ID(PK)    VARCHAR2(10)  NO 
Proposal Identifier: Unique identifer assigned to the proposal.
 
USER_ACCESS_ID(FK)    VARCHAR2(20)  YES 
Proposal Type Idenitifer: Abbreviated identifer for the type of proposal. (General user. Partner user). Mandatory but enforced through the UI.
 
RAPID_ACC_IND  Indicator  CHAR(1)  NO 
 
RA_JUST  Comment  VARCHAR2(2000)  YES 
Comment:  General comments.
 
STAT_ID(FK)    VARCHAR2(20)  NO 
Status Identifer: Abbreviated idenfifer for the given status.
 
REVIEW_STAT_ID    VARCHAR2(20)  YES 
Status Identifer: Abbreviated idenfifer for the given status.
 
TITLE    VARCHAR2(128)  NO 
Title: The title for the proposed experiment.
 
REASON_USE    VARCHAR2(500)  YES 
Abstract: Abstract for the proposed experiment. Mandatory but enforced through the UI.
 
CY_ID(FK)    VARCHAR2(25)  YES 
Run Cycle Identifier: Identifer for the run cycle period. Mandatory but enforced through the UI.
 
STAFF_CONT_IND  Indicator  CHAR(1)  YES 
Instrument Scientist Contacted Indicator: Indicates if the PI contacted an facilityt scientist for a given instrument. Mandatory but enforced through the UI.
 
INST_ID(FK)    NUMBER(38, 0)  NO 
Institute Identifer: Abbreviated identifier for a institute.
 
PERSON_ID(FK)    VARCHAR2(10)  NO 
Person Identifier: Unique identifier for a person derived from XCAMS.
 
REQ_BEGIN_WORK_DTE  Date  DATE  NO 
Date: Date and time to seconds.
 
REQ_DAY_NBR    NUMBER(3, 0)  YES 
Requested Day Number: The number of days at CNMS requested by the PI. Mandatory but enforced through the UI.
 
ACT_DAY_NBR    NUMBER(3, 0)  YES 
Actual Day Number: The number of days at CNMS granted to the experiment.
 
PRPSL_CAT_ID(FK)  Identifier  VARCHAR2(25)  YES 
 
PRPSL_DTE  Date  DATE  NO 
Date: Date and time to seconds.
 
MOD_DATE  Modify Date  DATE  NO 
Modify Date: The date the entity values were were created or modified.
 
APEX_PAGE_NBR    NUMBER(4, 0)  YES 
 
SPEC_COND    VARCHAR2(4000)  YES 
 
PART_USER_DESCR  Description  VARCHAR2(255)  YES 
Description: Often used in validation tables accompanying an abbreviated identifer.
 
RSS_ID  Identifier  NUMBER(38, 0)  YES 
 
RSS_CMNT  Comment  VARCHAR2(2000)  YES 
Comment:  General comments.
 
GRP_LEAD_APRV_IND  Indicator  CHAR(1)  NO 
 

PROPOSAL Primary and Unique Keys 
Key Name  Key Type  Keys 
PK_PROPOSAL  PrimaryKey  PRPSL_ID 

PROPOSAL Foreign Keys 
Parent Relationships: 
Table Name  Type  Cardinality  Constraint Name  VerbPhrase  InversePhrase  Foreign Keys  Is Supertype  Deferrable  Initially Deferred 
EXPT_CYCLE  Non-Identifying  Zero or One to Zero or More  fk_proposal_to_expt_cycle      CY_ID  NO  NO  NO 
INST  Non-Identifying  One To Zero or More  fk_proposal_to_institute      INST_ID  NO  NO  NO 
PERSON  Non-Identifying  One To Zero or More  fk_proposal_to_person      PERSON_ID  NO  NO  NO 
PRPSL_CAT  Non-Identifying  Zero or One to Zero or More  fk_proposal_to_prpsl_cat      PRPSL_CAT_ID  NO  NO  NO 
PRPSL_STAT  Non-Identifying  One To Zero or More  fk_proposal_to_prpsl_stat      STAT_ID  NO  NO  NO 
USER_ACESS_MODE  Non-Identifying  Zero or One to Zero or More  fk_prpsl_to_user_access_mode      USER_ACCESS_ID  NO  NO  NO 
Child Relationships: 
Table Name  Type  Cardinality  Constraint Name  VerbPhrase  InversePhrase  Foreign Keys  Is Subtype  Deferrable  Initially Deferred 
ADDNL_REV  Identifying  One To Zero or More  fk_addnl_rev_to_proposal        NO  NO  NO 
EMAIL_PREV  Non-Identifying  One To Zero or More  fk_email_prev_to_prpsl        NO  NO  NO 
PRPSL_FEAS_REV  Identifying  One To Zero or More  fk_feas_rev_to_prpsl        NO  NO  NO 
NONVAL_EXPT_TEAM_MBR  Identifying  One To Zero or More  fk_netm_to_proposal        NO  NO  NO 
PRPSL_SUGG_REV  Identifying  One To Zero or More  fk_p_sugg_rev_to_proposal        NO  NO  NO 
PRPSL_DESC_RSCH_ASSC  Identifying  One To Zero or More  fk_pdora_to_prpsl        NO  NO  NO 
PRPSL_RSCH_AREA  Identifying  One To Zero or More  fk_pra_to_proposal        NO  NO  NO 
PRPSL_FUND_STAT  Identifying  One To Zero or More  fk_prpsl_fund_stat_to_prpsl        NO  NO  NO 
PRPSL_FUND  Identifying  One To Zero or More  fk_prpsl_fund_to_proposal        NO  NO  NO 
PRPSL_INSTR_ASSC  Identifying  One To Zero or More  fk_prpsl_instr_assc_to_prpsl        NO  NO  NO 
PRPSL_LOG  Identifying  One To Zero or More  fk_prpsl_log_to_prpsl        NO  NO  NO 
PRPSL_PDF  Identifying  One To Zero or More  fk_prpsl_pdf_to_prpsl        NO  NO  NO 
PRPSL_REV_COMM  Identifying  One To Zero or More  fk_prpsl_rev_comm_to_prpsl        NO  NO  NO 
PRPSL_STAFF_CONT  Identifying  One To Zero or More  fk_prpsl_staff_cont_to_prpsl        NO  NO  NO 
PRPSL_TECH_CONT  Identifying  One To Zero or More  fk_prpsl_tech_cont_to_prpsl        NO  NO  NO 
PRPSL_SCI_REV  Identifying  One To Zero or More  fk_psrm_to_proposal        NO  NO  NO 
PRPSL_SMPL_TYPE_ASSC  Identifying  One To Zero or More  fk_psta_to_proposal        NO  NO  NO 
VAL_EXPT_TEAM_MBR  Identifying  One To Zero or More  fk_vetm_to_proposal        NO  NO  NO 

PROPOSAL Check Constraints 
Check Constraint Name  CheckConstraint 

PROPOSAL Storage 
STORAGE OPTION  STORAGE VALUE 
TABLESPACE   
PctFree   
PCTUSED    
MinExtents   
MaxExtents   
Initial   
Next   
PctIncrease   
InitTrans   
MaxTrans   
Organization  Heap 
Cache  NO 
Logging   
Parallel  NO 
Parallel Degrees   
Parallel Instances   
FREELISTS   
FREELIST GROUPS   
Buffer Pool   
Table Compression  NO 
Compress Expression   
Row Movement  Disabled 

PROPOSAL Partitions 
PARTITION PROPERTY  PARTITION PROPERTY VALUE 

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

PROPOSAL Object Permissions 

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

PROPOSAL Bound Attachments 
Name  Current Value 

PROPOSAL Where Used - Model Usage 
Mapped Object  Is User Defined?  Denormalization Mappings  Description  Bound Attachments 
Logical
CNMS_PRPSL.Proposal 
NO       
Logical
PRPSL.Proposal 
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)
CNMS_PRPSL.PROPOSAL 
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)
Does Not Exist 
NO       
EXPRESS (Oracle)
PRPSL.PROPOSAL 
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)
PRPSL.PROPOSAL 
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)
PRPSL.PROPOSAL 
NO       
PUBL (Oracle)
PRPSL.PROPOSAL 
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)
PRPSL.PROPOSAL 
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       

PROPOSAL Where Used - Submodel Usage 
Model  Submodel Usage 
Logical  Main Model 
Logical  CNMS Proposal 
Logical  Express 
Logical  Integrated Proposal Tracking System 
Logical  Publication 
Logical  Sample 
CNMS_PRPSL (Oracle)  Main Model 
EXPRESS (Oracle)  Main Model 
IPTSv5 (Oracle)  Main Model 
PRPSL (Oracle)  Main Model 
PUBL (Oracle)  Main Model 
SMPL (Oracle)  Main Model 

PROPOSAL Data Movement Rules 
Name  Type  Rule Text/Value