Search Results wsh_cc_request_setups_v
Overview
WSH_CC_REQUEST_SETUPS_V is an APPS-owned database view in the Oracle E-Business Suite Shipping Execution (WSH) module, valid in both 12.1.1 and 12.2.2. It exposes configuration data for Customs and Trade Compliance (CC) request setups, presenting the rules that determine which parties, applications, request handlers, and category sets are involved when compliance requests (such as ECCN or HTS classifications) are generated. Rather than requiring join logic against multiple HR, FND, and inventory tables, the view denormalizes the base setup table WSH_CC_REQUEST_SETUPS into a single queryable surface with resolved names, making it convenient for reporting, data extraction, and integration.
Underlying Base Objects
The view is defined over the base table WSH_CC_REQUEST_SETUPS (referenced via a synonym) and joins several supporting objects to resolve foreign keys into human-readable values. The documented referenced objects are:
- WSH_CC_REQUEST_SETUPS — the primary setup table holding each customs compliance request configuration record.
- HR_ORGANIZATION_UNITS (view) — joined twice to resolve the master organization and the requesting organization names.
- FND_USER — resolves the application user to a user name.
- FND_APPLICATION_TL — resolves the application to its translated application name.
- MTL_CATEGORY_SETS — outer-joined three times for ECCN, HTS, and additional category sets.
- HR_GENERAL and HR_SECURITY (packages) — used to enforce organization security on the returned records.
The view text is constructed as a UNION ALL, with a second branch substituting a null application user name, ensuring records without a valid user assignment still return.
Key Columns
- CC_REQUEST_SEQUENCE_ID — unique identifier for the request setup record; the primary lookup key.
- MASTER_ORGANIZATION_ID / MASTER_ORGANIZATION_NAME — the master organization and its resolved name.
- ORGANIZATION_ID / ORGANIZATION_NAME — the specific organization to which the setup applies.
- APPLICATION_ID / APPLICATION_NAME — the owning application and its translated name.
- APPLICATION_USER_ID / USER_NAME — the designated application user and resolved user name.
- REQUEST_TYPE_CODE, REQUEST_VERSION, REQUEST_LANGUAGE, REQUEST_DATE_FORMAT — parameters governing the generated request.
- REQUEST_DEPLOYMENT_MODE, REQUEST_HANDLER, REQUEST_OUTPUT_TYPE — how the request is processed and delivered.
- ADDITIONAL_ECE_COUNTRY_CHECK, REQUEST_INCLUDE_FLAG — compliance and inclusion flags.
- ECCN_CATG_SET_ID/CATEGORY_SET_NAME, HTS_CATG_SET_ID/CATEGORY_SET_NAME, ADDL_CATG_SET_ID/CATEGORY_SET_NAME — the category sets used for ECCN, HTS, and additional classification.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard audit columns.
Common Use Cases and Queries
Typical uses include auditing which compliance request setups exist per organization, validating that category sets and handlers are correctly assigned, and feeding downstream reporting. The view is preferable to querying the base table directly because names are pre-resolved and organization security is applied.
List all setups for a given organization:
SELECT cc_request_sequence_id,
organization_name,
request_type_code,
request_handler,
request_output_type
FROM apps.wsh_cc_request_setups_v
WHERE organization_id = :org_id;
Retrieve the category sets configured for compliance:
SELECT cc_request_sequence_id,
eccn_catg_set_id, category_set_name,
hts_catg_set_id, category_set_name,
addl_catg_set_id, category_set_name
FROM apps.wsh_cc_request_setups_v
WHERE request_include_flag = 'Y';
Because the view is read-only and exposes a stable column set across 12.1.1 and 12.2.2, it is well suited to custom reports and integrations that must remain consistent across upgrades.
-
View: WSH_CC_REQUEST_SETUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_CC_REQUEST_SETUPS_V, object_name:WSH_CC_REQUEST_SETUPS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_CC_REQUEST_SETUPS_V ,
-
View: WSH_CC_REQUEST_SETUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_CC_REQUEST_SETUPS_V, object_name:WSH_CC_REQUEST_SETUPS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_CC_REQUEST_SETUPS_V ,
-
SYNONYM: APPS.WSH_CC_REQUEST_SETUPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WSH_CC_REQUEST_SETUPS, status:VALID,
-
SYNONYM: APPS.WSH_CC_REQUEST_SETUPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WSH_CC_REQUEST_SETUPS, status:VALID,
-
VIEW: APPS.WSH_CC_REQUEST_SETUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_CC_REQUEST_SETUPS_V, object_name:WSH_CC_REQUEST_SETUPS_V, status:VALID,
-
VIEW: APPS.WSH_CC_REQUEST_SETUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_CC_REQUEST_SETUPS_V, object_name:WSH_CC_REQUEST_SETUPS_V, status:VALID,
-
SYNONYM: APPS.FND_APPLICATION_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_APPLICATION_TL, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.FND_APPLICATION_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_APPLICATION_TL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.MTL_CATEGORY_SETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_CATEGORY_SETS, status:VALID,
-
SYNONYM: APPS.MTL_CATEGORY_SETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_CATEGORY_SETS, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
SYNONYM: APPS.FND_USER
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_USER, status:VALID,
-
SYNONYM: APPS.FND_USER
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_USER, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
eTRM - WSH Tables and Views
12.1.1
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,
-
eTRM - WSH Tables and Views
12.2.2
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PER Tables and Views
12.2.2
description: Table to store NQF Training info for a person ,
-
eTRM - WSH Tables and Views
12.1.1
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,
-
eTRM - WSH Tables and Views
12.2.2
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - PER Tables and Views
12.2.2
description: Table to store NQF Training info for a person ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,