Search Results ies_deployed_scripts
Overview
The IES_DEPLOYED_SCRIPTS table, owned by the IES schema, is a core transactional and configuration table within the Oracle E-Business Suite IES - Scripting module. It stores the master registry of every script deployed in a given EBS instance, together with the metadata required to render, execute, version, and relate those scripts. Each script is uniquely identified by DSCRIPT_ID, and the table serves as the central hub from which panels, lookups, transactions, survey definitions, and JAR file associations are derived.
From a data-warehouse modeling perspective, the mined foreign-key topology classifies IES_DEPLOYED_SCRIPTS heuristically as a hub. This is a modeling suggestion rather than a documented Oracle designation: the table holds a stable surrogate key (DSCRIPT_ID) and is referenced by a large fan-out of dependent tables, which is characteristic of a hub entity in a Data Vault design. A companion satellite would normally be created for the descriptive attributes such as DESCRIPTION and ACTIVE_STATUS.
Key Information Stored
The physical schema documents 40 columns. The most operationally significant are:
- DSCRIPT_ID — Surrogate primary key (constraint
IES_DEPLOYED_SCRIPTS_PK). Every dependent table joins back to the parent through this column. - DSCRIPT_NAME, DSCRIPT_FILE — The logical script name and its deployed file reference.
- SCRIPT_BLOB — The binary payload of the deployed script; this makes the table a large-object table and warrants care in extraction and backup routines.
- SCRIPT_TYPE, SCRIPT_CATEGORY, SUSPENDABLE — Classify the script and define execution behaviour.
- PANEL_TABLE_ID, QUESTION_TABLE_ID — Foreign keys into
IES_DATA_TABLES, binding the script to its panel and question data sources. - DSCRIPT_LANG_ID — Language attribute governing the deployed script's locale.
- SCHEMA_MAPPING — Describes how script fields map to database schema objects.
- APPLICATION_ID, FUNCTION_ID — Tie the script to an EBS application and menu function for access and navigation.
- SECURITY_GROUP_ID — Foreign key to
FND_SECURITY_GROUPS, enforcing multi-org style access control. - ACTIVE_STATUS, LOCK_STATUS, F_DELETEDFLAG — Lifecycle and soft-delete flags used to filter deployable scripts.
- OBJECT_VERSION_NUMBER — Optimistic locking column used by the framework for concurrent updates.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — The standard Oracle EBS descriptive flexfield (DFF) columns.
The unique indexes documented are function-based LOB indexes (SYS_IL0000083914C…) rather than business keys, so DSCRIPT_ID remains the only true business-key candidate.
Common Use Cases and Queries
Typical use cases include auditing deployed scripts, reporting script inventory by application or function, and tracing which survey or transaction consumed a given script.
SELECT d.DSCRIPT_ID,
d.DSCRIPT_NAME,
d.ACTIVE_STATUS,
d.APPLICATION_ID,
a.APPLICATION_SHORT_NAME
FROM IES.IES_DEPLOYED_SCRIPTS d,
FND_APPLICATION a
WHERE d.APPLICATION_ID = a.APPLICATION_ID
AND d.F_DELETEDFLAG = 'N'
AND d.ACTIVE_STATUS = 'Y'
ORDER BY d.DSCRIPT_NAME;
A second common pattern counts dependent panels and lookups per script to detect orphaned or unreferenced deployments.
SELECT d.DSCRIPT_ID, d.DSCRIPT_NAME, COUNT(p.PANEL_ID) AS panel_count FROM IES.IES_DEPLOYED_SCRIPTS d, IES.IES_PANELS p WHERE d.DSCRIPT_ID = p.DSCRIPT_ID (+) GROUP BY d.DSCRIPT_ID, d.DSCRIPT_NAME;
Related Objects
The table participates in an extensive foreign-key network. The most significant related objects are:
- IES_PANELS — Child table;
IES_PANELS.DSCRIPT_IDreferences the parent. - IES_LOOKUPS — Child table;
IES_LOOKUPS.DSCRIPT_IDreferences the parent. - IES_TRANSACTIONS — Records transactions executed against a deployed script.
- IES_SCRIPT_JARFILES — Links a script to its packaged JAR artefacts.
- IES_DATA_TABLES — Parent table for both
PANEL_TABLE_IDandQUESTION_TABLE_ID. - IES_SVY_SURVEYS_ALL, IES_SVY_DEPLYMENTS_ALL, IES_SVY_RESPONSE_ENTRIES, IES_SVY_LIST_ENTRIES — Survey-module children that reference a deployed script.
- IES_AUX_SCRIPT_RELATIONSHIPS — Associates scripts via
SCRIPT_A_IDandSCRIPT_B_ID. - AMS_ACT_SCRIPTS — Marketing (AMS) child table referencing
DSCRIPT_ID. - FND_SECURITY_GROUPS — Parent for the
SECURITY_GROUP_IDaccess-control reference.
-
Table: IES_DEPLOYED_SCRIPTS
12.1.1
owner:IES, object_type:TABLE, fnd_design_data:IES.IES_DEPLOYED_SCRIPTS, object_name:IES_DEPLOYED_SCRIPTS, status:VALID, product: IES - Scripting , description: This table holds all deployed scripts and related information. , implementation_dba_data: IES.IES_DEPLOYED_SCRIPTS ,
-
Table: IES_DEPLOYED_SCRIPTS
12.2.2
owner:IES, object_type:TABLE, fnd_design_data:IES.IES_DEPLOYED_SCRIPTS, object_name:IES_DEPLOYED_SCRIPTS, status:VALID, product: IES - Scripting , description: This table holds all deployed scripts and related information. , implementation_dba_data: IES.IES_DEPLOYED_SCRIPTS ,
-
APPS.IES_DEPL_SCRIPT_PKG SQL Statements
12.1.1
-
APPS.IES_DEPL_SCRIPT_PKG SQL Statements
12.2.2
-
VIEW: APPS.AST_AVAIL_SCRIPTS_V
12.2.2
-
Table: IES_AUX_SCRIPT_RELATIONSHIPS
12.1.1
owner:IES, object_type:TABLE, fnd_design_data:IES.IES_AUX_SCRIPT_RELATIONSHIPS, object_name:IES_AUX_SCRIPT_RELATIONSHIPS, status:VALID, product: IES - Scripting , description: Auxillary table for storing script relationships. , implementation_dba_data: IES.IES_AUX_SCRIPT_RELATIONSHIPS ,
-
Table: IES_AUX_SCRIPT_RELATIONSHIPS
12.2.2
owner:IES, object_type:TABLE, fnd_design_data:IES.IES_AUX_SCRIPT_RELATIONSHIPS, object_name:IES_AUX_SCRIPT_RELATIONSHIPS, status:VALID, product: IES - Scripting , description: Auxillary table for storing script relationships. , implementation_dba_data: IES.IES_AUX_SCRIPT_RELATIONSHIPS ,
-
VIEW: IES.IES_DEPLOYED_SCRIPTS#
12.2.2
owner:IES, object_type:VIEW, object_name:IES_DEPLOYED_SCRIPTS#, status:VALID,
-
VIEW: APPS.AST_AVAIL_SCRIPTS_V
12.1.1
-
Table: IES_DATA_TABLES
12.1.1
owner:IES, object_type:TABLE, fnd_design_data:IES.IES_DATA_TABLES, object_name:IES_DATA_TABLES, status:VALID, product: IES - Scripting , description: This table holds the names of all tables that are to be used for footprinting and answer_data collected for a script. , implementation_dba_data: IES.IES_DATA_TABLES ,
-
Table: IES_DATA_TABLES
12.2.2
owner:IES, object_type:TABLE, fnd_design_data:IES.IES_DATA_TABLES, object_name:IES_DATA_TABLES, status:VALID, product: IES - Scripting , description: This table holds the names of all tables that are to be used for footprinting and answer_data collected for a script. , implementation_dba_data: IES.IES_DATA_TABLES ,
-
VIEW: APPS.AST_SOURCE_AVAIL_SCRIPTS_V
12.1.1
-
VIEW: APPS.AST_AGENT_SCRIPTS_V
12.1.1
-
SYNONYM: APPS.IES_DEPLOYED_SCRIPTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IES_DEPLOYED_SCRIPTS, status:VALID,
-
SYNONYM: APPS.IES_DEPLOYED_SCRIPTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IES_DEPLOYED_SCRIPTS, status:VALID,
-
VIEW: APPS.AST_SOURCE_AVAIL_SCRIPTS_V
12.2.2
-
eTRM - IES Tables and Views
12.1.1
description: This table holds all interactions for a session. ,
-
eTRM - IES Tables and Views
12.2.2
description: This table holds all interactions for a session. ,
-
VIEW: APPS.AST_AGENT_SCRIPTS_V
12.2.2
-
VIEW: APPS.IES_SUSPENDED_TRANS_V
12.1.1
-
VIEW: APPS.IES_SUSPENDED_TRANS_V
12.2.2
-
VIEW: IES.IES_DEPLOYED_SCRIPTS#
12.2.2
-
Table: IES_PANELS
12.1.1
owner:IES, object_type:TABLE, fnd_design_data:IES.IES_PANELS, object_name:IES_PANELS, status:VALID, product: IES - Scripting , description: This table contains all panels in a deployed script. , implementation_dba_data: IES.IES_PANELS ,
-
APPS.IES_DEPLOYED_SCRIPTS_PVT SQL Statements
12.1.1
-
Table: IES_TRANSACTIONS
12.2.2
owner:IES, object_type:TABLE, fnd_design_data:IES.IES_TRANSACTIONS, object_name:IES_TRANSACTIONS, status:VALID, product: IES - Scripting , description: This table holds all interactions for a session. , implementation_dba_data: IES.IES_TRANSACTIONS ,
-
Table: IES_SVY_SURVEYS_ALL
12.1.1
owner:IES, object_type:TABLE, fnd_design_data:IES.IES_SVY_SURVEYS_ALL, object_name:IES_SVY_SURVEYS_ALL, status:VALID, product: IES - Scripting , implementation_dba_data: IES.IES_SVY_SURVEYS_ALL ,
-
View: AST_SOURCE_AVAIL_SCRIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SOURCE_AVAIL_SCRIPTS_V, object_name:AST_SOURCE_AVAIL_SCRIPTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SOURCE_AVAIL_SCRIPTS_V ,
-
APPS.AMS_COLLAB_ASSOC_PVT SQL Statements
12.1.1
-
View: AST_AVAIL_SCRIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_AVAIL_SCRIPTS_V, object_name:AST_AVAIL_SCRIPTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_AVAIL_SCRIPTS_V ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
Table: IES_SCRIPT_JARFILES
12.2.2
owner:IES, object_type:TABLE, fnd_design_data:IES.IES_SCRIPT_JARFILES, object_name:IES_SCRIPT_JARFILES, status:VALID, product: IES - Scripting , description: This table stores the jar file associations with deployed scripts. , implementation_dba_data: IES.IES_SCRIPT_JARFILES ,
-
12.2.2 FND Design Data
12.2.2
-
View: AST_AVAIL_SCRIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_AVAIL_SCRIPTS_V, object_name:AST_AVAIL_SCRIPTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_AVAIL_SCRIPTS_V ,
-
PACKAGE BODY: APPS.IES_DEPL_SCRIPT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IES_DEPL_SCRIPT_PKG, status:VALID,
-
Table: IES_LOOKUPS
12.1.1
owner:IES, object_type:TABLE, fnd_design_data:IES.IES_LOOKUPS, object_name:IES_LOOKUPS, status:VALID, product: IES - Scripting , description: This table contains all lookups used by questions in a given script. , implementation_dba_data: IES.IES_LOOKUPS ,
-
APPS.IES_DEPLOYED_SCRIPTS_PVT SQL Statements
12.2.2
-
VIEW: APPS.AST_SUSPENDED_SCRIPTS_V
12.1.1
-
Table: IES_TRANSACTIONS
12.1.1
owner:IES, object_type:TABLE, fnd_design_data:IES.IES_TRANSACTIONS, object_name:IES_TRANSACTIONS, status:VALID, product: IES - Scripting , description: This table holds all interactions for a session. , implementation_dba_data: IES.IES_TRANSACTIONS ,
-
Table: IES_SVY_SURVEYS_ALL
12.2.2
owner:IES, object_type:TABLE, fnd_design_data:IES.IES_SVY_SURVEYS_ALL, object_name:IES_SVY_SURVEYS_ALL, status:VALID, product: IES - Scripting , implementation_dba_data: IES.IES_SVY_SURVEYS_ALL ,
-
Table: IES_PANELS
12.2.2
owner:IES, object_type:TABLE, fnd_design_data:IES.IES_PANELS, object_name:IES_PANELS, status:VALID, product: IES - Scripting , description: This table contains all panels in a deployed script. , implementation_dba_data: IES.IES_PANELS ,
-
APPS.IES_SVY_CREATE_INIT_RECORDS SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IES_SURVEY_SUMMARY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IES_SURVEY_SUMMARY, status:VALID,
-
PACKAGE BODY: APPS.IES_SURVEY_SUMMARY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IES_SURVEY_SUMMARY, status:VALID,
-
Table: IES_SCRIPT_JARFILES
12.1.1
owner:IES, object_type:TABLE, fnd_design_data:IES.IES_SCRIPT_JARFILES, object_name:IES_SCRIPT_JARFILES, status:VALID, product: IES - Scripting , description: This table stores the jar file associations with deployed scripts. , implementation_dba_data: IES.IES_SCRIPT_JARFILES ,
-
12.1.1 FND Design Data
12.1.1
-
Table: IES_LOOKUPS
12.2.2
owner:IES, object_type:TABLE, fnd_design_data:IES.IES_LOOKUPS, object_name:IES_LOOKUPS, status:VALID, product: IES - Scripting , description: This table contains all lookups used by questions in a given script. , implementation_dba_data: IES.IES_LOOKUPS ,
-
PACKAGE BODY: APPS.AMS_COLLAB_ASSOC_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_COLLAB_ASSOC_PVT, status:VALID,