PSC_COM_PROJECT
Stores details about a particular project. A project is a collection of related permits.
Details
-
Schema: FUSION
-
Object owner: PSC_CC
-
Object type: TABLE
-
Tablespace: TRANSACTION_TABLES
Primary Key
| Name | Columns |
|---|---|
|
PSC_COM_PROJECT_PK |
AGENCY_ID, PROJECT_CODE |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| AGENCY_ID | NUMBER | 8 | Yes | Unique identifier for the Agency level Installation. Agency ID comes from the table PSC_COM_AGENCY_B. | |
| PROJECT_CODE | VARCHAR2 | 30 | Yes | Unique code to identify a project. This will be an alphanumeric number generated by the auto number generator. | |
| PROJECT_NAME | VARCHAR2 | 50 | Yes | User-friendly name for the project. | |
| PROJECT_SUMMARY | VARCHAR2 | 500 | Yes | Brief description of the project. | |
| STATUS | VARCHAR2 | 7 | Yes | Status of the project. Project can have an Active or Inactive Status | |
| START_DATE | TIMESTAMP | Yes | The date on which the project has started. | ||
| END_DATE | TIMESTAMP | The estimated completion date of the project. | |||
| PROJECT_TYPE | VARCHAR2 | 50 | Yes | Classifying the projects based on the type of the project. The project type value is configured by the agency and is stored in PSC_COM_PROJECT_TYPE_B table. | |
| ESTIMATED_VALUATION | NUMBER | Estimated valuation for the project. | |||
| CURRENCY_CODE | VARCHAR2 | 3 | Currency code of the currency in which the project valuation is captured. | ||
| PROJECT_ADMIN | NUMBER | 18 | Party ID of the Project Administrator. | ||
| PROJECT_ADMIN_BIZ_PROFILE_ID | NUMBER | 18 | This column is used to associate the business profile used by the Project Administrator. | ||
| PROJECT_ADMIN_PROFILE_ID | NUMBER | 18 | This column is used to associate the user profile used by the Project Administrator. | ||
| OBJECT_VERSION_NUMBER | NUMBER | 9 | Yes | Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried. | |
| CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
| CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
| LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated the row. | |
| LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
| LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. |
Foreign Keys
| Table | Foreign Table | Foreign Key Column |
|---|---|---|
| PSC_COM_PROJECT | psc_com_project_type_b | AGENCY_ID, PROJECT_TYPE |
| psc_com_project_address | psc_com_project | AGENCY_ID, PROJECT_CODE |
| psc_com_project_parcel | psc_com_project | PARCEL_KEY, PROJECT_CODE |
| psc_com_project_contact | psc_com_project | AGENCY_ID, PROJECT_CODE |
| psc_com_prj_attachment | psc_com_project | AGENCY_ID, PROJECT_CODE |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| PSC_COM_PROJECT_PK | Unique | Default | AGENCY_ID, PROJECT_CODE |