Search Results submit_method
Overview
IGSBV_AS_DOCUMENT_ORDERS is a read-only Oracle EBS view owned by the APPS schema that exposes order header data from the Advanced Supply / Order Management context, specifically sourced from the IGS_AS_ORDER_HDR table. The "BV" naming convention indicates a business view intended for reporting and integration consumption rather than transactional data entry, and the view is defined with the WITH READ ONLY clause, confirming it cannot be used for DML operations. The view presents a horizontally oriented, denormalized snapshot of an order's descriptive, address, contact, fee, and submission attributes, making it suitable for extraction into reporting layers, document generation engines, and integration staging areas. Because it is owned by APPS and carries no documented dependencies beyond its base table, it functions as a stable abstraction layer that shields downstream consumers from the physical column layout of IGS_AS_ORDER_HDR.
Underlying Base Objects
The ETRM metadata documents the view as selecting exclusively from IGS_AS_ORDER_HDR, filtered by no predicates and constrained only by the WITH READ ONLY directive. No other base tables are referenced, meaning the view performs a straight projection of columns with no joins. Two columns are not physical values but synthetic Lookup substitution expressions: the first, positioned after ORDER_DESCRIPTION, resolves the ORDER_STATUS through the lookup type IGS_AS_ORDER_STATUS, and the second, positioned before SUBMIT_METHOD, resolves REQUEST_TYPE through IGS_AS_DOC_REQTYPE. These embedded lookup strings follow the EBS descriptive-flexfield-style substitution convention, meaning the raw stored code is translated to its human-readable MEANING at query time. The absence of documented referencing objects indicates the view is a leaf consumer of IGS_AS_ORDER_HDR rather than a dependency for other database objects.
Key Columns
- ORDER_NUMBER / ORDER_DESCRIPTION — Primary identification and narrative description of the order.
- ORDER_STATUS (lookup-derived) — Rendered from IGS_AS_ORDER_STATUS; returns the MEANING rather than the stored code.
- DATE_COMPLETED — Timestamp marking order completion.
- ADDR_LINE_1..4, CITY, STATE, PROVINCE, COUNTY, COUNTRY, POSTAL_CODE — Full postal address block for the order.
- EMAIL_ADDRESS, PHONE_COUNTRY_CODE, PHONE_AREA_CODE, PHONE_NUMBER, PHONE_EXTENSION — Primary contact channel data.
- FAX_COUNTRY_CODE, FAX_AREA_CODE, FAX_NUMBER — Facsimile contact data.
- DELIVERY_FEE, ORDER_FEE — Monetary charges associated with fulfillment and the order itself.
- REQUEST_TYPE (lookup-derived) — Rendered from IGS_AS_DOC_REQTYPE; classifies the document request.
- SUBMIT_METHOD — The method by which the order was submitted, relevant to channel and workflow analysis.
- PERSON_ID, ORDER_PLACED_BY — Party and person identifiers identifying who placed the order.
- INVOICE_ID — Link to the associated invoice record.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — Standard EBS audit columns.
Common Use Cases and Queries
Typical usage centers on order reporting, submission-channel analysis, and document generation. Because SUBMIT_METHOD is exposed directly, one frequent pattern groups orders by submission channel and status.
SELECT ORDER_NUMBER, SUBMIT_METHOD, ORDER_STATUS, REQUEST_TYPE, DATE_COMPLETED
FROM APPS.IGSBV_AS_DOCUMENT_ORDERS
WHERE SUBMIT_METHOD = :p_submit_method;
A second pattern extracts contact and addressing data for notification or fulfillment documents, joining to PER_ALL_PEOPLE_F on PERSON_ID where person details are required. A third pattern performs financial reconciliation using ORDER_FEE, DELIVERY_FEE, and INVOICE_ID. Because the view is read-only and unjoined, queries are inexpensive; filtering predicates should be applied on ORDER_NUMBER, PERSON_ID, or ORDER_STATUS to limit result sets. Consumers should treat the lookup-derived columns as display values rather than codes, since they return MEANING text from IGS_LOOKUP_VALUES.
-
VIEW: APPS.IGSBV_AS_DOCUMENT_ORDERS
12.1.1
-
View: IGSBV_AS_DOCUMENT_ORDERS
12.2.2
product: IGS - Student System (Obsolete) , description: Shows the Orders placed for Transcripts and Enrollment Certificates. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AS_DOCUMENT_ORDERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_DOCUMENT_ORDERS, object_name:IGSBV_AS_DOCUMENT_ORDERS, status:VALID, product: IGS - Student System , description: Shows the Orders placed for Transcripts and Enrollment Certificates. , implementation_dba_data: APPS.IGSBV_AS_DOCUMENT_ORDERS ,
-
VIEW: APPS.IGS_AS_ORDER_HDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_ORDER_HDR_V, object_name:IGS_AS_ORDER_HDR_V, status:VALID,
-
VIEW: APPS.IGSBV_AS_DOCUMENT_ORDERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_DOCUMENT_ORDERS, object_name:IGSBV_AS_DOCUMENT_ORDERS, status:VALID,
-
VIEW: APPS.IGS_AS_ORDER_PAYMENT_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_ORDER_PAYMENT_INFO_V, object_name:IGS_AS_ORDER_PAYMENT_INFO_V, status:VALID,
-
View: IGSFV_AS_DOCUMENT_ORDERS
12.2.2
product: IGS - Student System (Obsolete) , description: Shows the Orders placed for Transcripts and Enrollment Certificates. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_AS_DOCUMENT_ORDERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_DOCUMENT_ORDERS, object_name:IGSFV_AS_DOCUMENT_ORDERS, status:VALID, product: IGS - Student System , description: Shows the Orders placed for Transcripts and Enrollment Certificates. , implementation_dba_data: APPS.IGSFV_AS_DOCUMENT_ORDERS ,
-
TABLE: IGS.IGS_AS_ORDER_HDR
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_ORDER_HDR, object_name:IGS_AS_ORDER_HDR, status:VALID,
-
VIEW: APPS.IGSFV_AS_DOCUMENT_ORDERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_DOCUMENT_ORDERS, object_name:IGSFV_AS_DOCUMENT_ORDERS, status:VALID,
-
View: IGS_AS_ORDER_PAYMENT_INFO_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is used to get the payment related information corresponding to the order for document placed by the user. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_ORDER_HDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_ORDER_HDR_V, object_name:IGS_AS_ORDER_HDR_V, status:VALID, product: IGS - Student System , description: This view stores the document order information. This will store the information like student address, order status, payment type information related to the document request. One order can have multiple documents associated with the order. , implementation_dba_data: APPS.IGS_AS_ORDER_HDR_V ,
-
View: IGS_AS_ORDER_HDR_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view stores the document order information. This will store the information like student address, order status, payment type information related to the document request. One order can have multiple documents associated with the order. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_ORDER_PAYMENT_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_ORDER_PAYMENT_INFO_V, object_name:IGS_AS_ORDER_PAYMENT_INFO_V, status:VALID, product: IGS - Student System , description: This view is used to get the payment related information corresponding to the order for document placed by the user. , implementation_dba_data: APPS.IGS_AS_ORDER_PAYMENT_INFO_V ,
-
APPS.IGS_AS_ORDER_HDR_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_ORDER_HDR_PKG
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,