FND_NTF_APP_MODULE
Entity for managing external client application module registrations along with all their identifiers, preferences and global settings.
Details
-
Schema: FUSION
-
Object owner: FND
-
Object type: TABLE
-
Tablespace: Default
Primary Key
| Name | Columns |
|---|---|
|
FND_NTF_APP_MODULE_PK |
APP_MODULE_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| APP_MODULE_ID | NUMBER | 18 | Yes | Primary Key of the fnd_ntf_application_module table. | |
| NAME | VARCHAR2 | 1024 | Yes | The given name for the ApplicationModule. | |
| APIKEY | VARCHAR2 | 1024 | Yes | Unique API Subscription Key alloted to the ApplicationModule. | |
| URL | VARCHAR2 | 1024 | Yes | Callback URL hosted by the ApplicationModule. | |
| IS_ACTIVE | VARCHAR2 | 1 | Yes | Used as pause/resume or enable/disable switch. Also works like a soft delete column. | |
| PREFERENCE_JSON | CLOB | Yes | Structured (versioned) JSON object describing the application wide preference and defaults. The JSON schmea is enforced and maintained by the application layer. | ||
| 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. |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| FND_NTF_APP_MODULE_U1 | Unique | Default | APP_MODULE_ID |
| FND_NTF_APP_MODULE_U2 | Unique | Default | APIKEY |