[Home] [Help]
[Dependency Information]
| Object Name: | IRC_COMM_MESSAGES |
|---|---|
| Object Type: | TABLE |
| Owner: | HR |
| Subobject Name: | |
| Status: | VALID |
This table stores information about all communication messages that happened for a particular topic. It stores the actual message communicated and details of when and who posted it.
| Tablespace: | APPS_TS_TX_DATA |
|---|---|
| PCT Free: | 10 |
| PCT Used: |
| Name | Datatype | Length | Mandatory | Comments |
|---|---|---|---|---|
| COMMUNICATION_MESSAGE_ID | NUMBER | (15) | Yes | Primary key |
| PARENT_ID | NUMBER | (15) | ID of the earlier communication message in the chain. | |
| COMMUNICATION_TOPIC_ID | NUMBER | (15) | Yes | Foreign key to IRC_COMM_TOPICS |
| MESSAGE_SUBJECT | VARCHAR2 | (150) | Subject of the topic for which this message is submitted. | |
| MESSAGE_BODY | VARCHAR2 | (4000) | Message body. | |
| MESSAGE_POST_DATE | DATE | Yes | Date on which this message was posted. | |
| SENDER_TYPE | VARCHAR2 | (50) | Yes | Type of the sender who has posted the message |
| SENDER_ID | NUMBER | (15) | Yes | ID of the sender. |
| DOCUMENT_TYPE | VARCHAR2 | (50) | Type of the document. | |
| DOCUMENT_ID | NUMBER | (15) | ID of the document. | |
| DELETED_FLAG | VARCHAR2 | (1) | Y if the message is deleted by the moderator. | |
| LAST_UPDATE_DATE | DATE | Yes | Standard WHO Column | |
| LAST_UPDATED_BY | NUMBER | (15) | Yes | Standard WHO Column |
| LAST_UPDATE_LOGIN | NUMBER | (15) | Standard WHO Column | |
| CREATION_DATE | DATE | Yes | Standard WHO Column | |
| CREATED_BY | NUMBER | (15) | Yes | Standard WHO Column |
| OBJECT_VERSION_NUMBER | NUMBER | (9) | Yes | System-generated version of row. Increments by one with each update |
Cut, paste (and edit) the following text to query this object:
SELECT COMMUNICATION_MESSAGE_ID
, PARENT_ID
, COMMUNICATION_TOPIC_ID
, MESSAGE_SUBJECT
, MESSAGE_BODY
, MESSAGE_POST_DATE
, SENDER_TYPE
, SENDER_ID
, DOCUMENT_TYPE
, DOCUMENT_ID
, DELETED_FLAG
, LAST_UPDATE_DATE
, LAST_UPDATED_BY
, LAST_UPDATE_LOGIN
, CREATION_DATE
, CREATED_BY
, OBJECT_VERSION_NUMBER
FROM HR.IRC_COMM_MESSAGES;
HR.IRC_COMM_MESSAGES does not reference any database object
HR.IRC_COMM_MESSAGES is referenced by following:
APPS
IRC_COMM_MESSAGES
IRC_COMM_MESSAGES_WHO
|
|
|
|