[Home] [Help]
[Dependency Information]
| Object Name: | IRC_COMM_RECIPIENTS |
|---|---|
| Object Type: | TABLE |
| Owner: | HR |
| Subobject Name: | |
| Status: | VALID |
This table stores information about recipients for a topic, like when was the recipient added to the topic, whether a recipient is also creator of the topic. We can use this table to fetch all recipients for a given topic
| Tablespace: | APPS_TS_TX_DATA |
|---|---|
| PCT Free: | 10 |
| PCT Used: |
| Index | Type | Uniqueness | Tablespace | Column |
|---|---|---|---|---|
| IRC_COMM_RECIPIENTS_N1 | NORMAL | NONUNIQUE |
APPS_TS_TX_IDX
|
COMMUNICATION_OBJECT_TYPE
|
| IRC_COMM_RECIPIENTS_N2 | NORMAL | NONUNIQUE |
APPS_TS_TX_IDX
|
COMMUNICATION_OBJECT_ID
|
| Name | Datatype | Length | Mandatory | Comments |
|---|---|---|---|---|
| COMMUNICATION_RECIPIENT_ID | NUMBER | (15) | Yes | Primary key |
| COMMUNICATION_OBJECT_TYPE | VARCHAR2 | (50) | Yes | Identifier for the communication type. Ex. 'TOPIC' |
| COMMUNICATION_OBJECT_ID | NUMBER | (15) | Yes | ID of the object defined in the above column. |
| RECIPIENT_TYPE | VARCHAR2 | (50) | Yes | Type of the recipient. |
| RECIPIENT_ID | NUMBER | (15) | Yes | ID of the recipient. |
| START_DATE_ACTIVE | DATE | Yes | Date on which this recipient was made active. | |
| END_DATE_ACTIVE | DATE | Date after which this recipient was made inactive for the topic. | ||
| PRIMARY_FLAG | VARCHAR2 | (1) | Y, if recipient is the PRIMARY recipient of the topic..i.e. creator of the topic. | |
| 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_RECIPIENT_ID
, COMMUNICATION_OBJECT_TYPE
, COMMUNICATION_OBJECT_ID
, RECIPIENT_TYPE
, RECIPIENT_ID
, START_DATE_ACTIVE
, END_DATE_ACTIVE
, PRIMARY_FLAG
, LAST_UPDATE_DATE
, LAST_UPDATED_BY
, LAST_UPDATE_LOGIN
, CREATION_DATE
, CREATED_BY
, OBJECT_VERSION_NUMBER
FROM HR.IRC_COMM_RECIPIENTS;
HR.IRC_COMM_RECIPIENTS does not reference any database object
HR.IRC_COMM_RECIPIENTS is referenced by following:
HR
IRC_COMM_RECIPIENTS#
|
|
|
|