[Home] [Help]
[Dependency Information]
| Object Name: | PON_TE_RECIPIENTS |
|---|---|
| Object Type: | TABLE |
| Owner: | PON |
| FND Design Data: | PON.PON_TE_RECIPIENTS
|
| Subobject Name: | |
| Status: | VALID |
Its is denormalized to allow multiple recipients, which can be important depending on the viewing/posting rules for the thread.When it is inserted, a broadcast message will only have rows in the table as users read the message. Howevere, each unique reader will get his own row, to keep track of who read and/or replied to the message. For a broadcast message, the TO_ID will normally be the person who posted the message. The PK is TO_ID + Message_ID
| Tablespace: | APPS_TS_TX_DATA |
|---|---|
| PCT Free: | 10 |
| PCT Used: |
| Index | Type | Uniqueness | Tablespace | Column |
|---|---|---|---|---|
| PON_TE_RECIPIENTS_N3 | NORMAL | UNIQUE |
APPS_TS_TX_IDX
|
TO_ID
ENTRY_ID
|
| PON_TE_RECIPIENTS_N2 | NORMAL | NONUNIQUE |
APPS_TS_TX_IDX
|
ENTRY_ID
|
| Name | Datatype | Length | Mandatory | Comments |
|---|---|---|---|---|
| TO_ID | NUMBER | (15) | Yes | FK to HZ_PARTIES for the PARTY_ID of the recipient. Part of the PK for the table, with ENTRY_ID. |
| READ_FLAG | VARCHAR2 | (1) | Yes | 'Y' if the user has read the entry, 'N' otherwise |
| REPLIED_FLAG | VARCHAR2 | (1) | Yes | 'Y' if the user has replied to the entry, 'N' otherwise. |
| ENTRY_ID | NUMBER | (15) | Yes | The message for which the recipient is being listed. FK to PON_THREAD_ENTRIES, and also part of the PK for this table with TO_ID. |
| TO_FIRST_NAME | VARCHAR2 | (150) | Stores receipient's first name | |
| TO_LAST_NAME | VARCHAR2 | (150) | Stores recipient's last name | |
| TO_COMPANY_NAME | VARCHAR2 | (360) | Stores recipient's company name | |
| TO_COMPANY_ID | NUMBER | Stores recipient company's trading partner id |
Cut, paste (and edit) the following text to query this object:
SELECT TO_ID
, READ_FLAG
, REPLIED_FLAG
, ENTRY_ID
, TO_FIRST_NAME
, TO_LAST_NAME
, TO_COMPANY_NAME
, TO_COMPANY_ID
FROM PON.PON_TE_RECIPIENTS;
PON.PON_TE_RECIPIENTS does not reference any database object
PON.PON_TE_RECIPIENTS is referenced by following:
PON
PON_TE_RECIPIENTS#
|
|
|
|