Search Results igs_as_order_status
Overview
The view APPS.IGS_AS_ORDER_HDR_V is a reporting and inquiry construct within the Oracle E-Business Suite Student Information / Student Systems (IGS) product family. It exposes the header-level content of document or service orders captured by the IGS Administrative Services (AS) module, presenting the stored order record in a denormalized, display-ready form. Rather than forcing a report, concurrent program, or integration routine to join transactional tables with lookup, territory, and party tables on every execution, the view resolves the descriptive meaning values at query time. It is therefore most frequently consumed by Oracle Reports, OAF pages, BI Publisher data templates, and custom SQL used for order tracking and operational monitoring.
The presence of the ROWID of the underlying header table as the first selected column indicates the view is key-preserved with respect to IGS_AS_ORDER_HDR, so it may also be used as the target of DML and as a base for further updatable views.
Underlying Base Objects
The view is defined over five documented objects: IGS_AS_ORDER_HDR, FND_TERRITORIES_TL, FND_LOOKUP_VALUES (joined twice), and HZ_PARTIES.
IGS_AS_ORDER_HDRis the driving table and supplies the order number, status code, address, contact, fee, and audit columns.FND_TERRITORIES_TLsupplies the translated territory short name, joined oncountry = territory_codefiltered by the session language.FND_LOOKUP_VALUESis joined twice:lkresolves the order status meaning from lookup typeIGS_AS_ORDER_STATUS, answering the user's search forigs_as_order_status;lk2resolves the request type meaning fromIGS_AS_DOC_REQTYPEvia an outer join.HZ_PARTIESprovides the ordered-by party name through an outer join onorder_placed_by = party_id.- The view also invokes the packaged function
IGS_AS_SS_DOC_REQUEST.IS_ORDER_DEL_ALWD(order_number)to derive theis_order_del_alwdindicator.
Key Columns
order_number,order_status, andmeaning— the order identifier and its decoded status description.date_completed,creation_date, and audit columns (created_by,last_updated_by,last_update_date,program_id,request_id) — lifecycle and traceability information.- Address block (
addr_line_1–addr_line_4,city,state,province,county,country,postal_code,territory_short_name) — delivery location details. - Contact block (
person_id,email_address,phone_*,fax_*) — recipient communication data. delivery_fee,order_fee,request_typewith its decoded meaning, andsubmit_method— commercial and routing attributes.order_placed_by,party_name,order_description,is_order_del_alwd— requester identification and operational control flags.
Common Use Cases and Queries
Typical consumers include customer service inquiries, fulfillment backlog reporting, and status dashboards. A representative query filters on the decoded status meaning and sorts by completion date:
SELECT order_number, meaning, date_completed, party_name FROM apps.igs_as_order_hdr_v WHERE meaning = 'Completed' ORDER BY date_completed DESC;SELECT order_number, request_type, is_order_del_alwd FROM apps.igs_as_order_hdr_v WHERE order_status = 'NEW';SELECT party_name, COUNT(*) FROM apps.igs_as_order_hdr_v GROUP BY party_name;
Because the view is key-preserved, it can also support updates to order header attributes where security and business rules permit.
-
Lookup Type: IGS_AS_ORDER_STATUS
12.1.1
product: IGS - Student System , meaning: Order Status , description: Order Status ,
-
Lookup Type: IGS_AS_ORDER_STATUS
12.2.2
product: IGS - Student System (Obsolete) , meaning: Order Status , description: Order Status ,
-
VIEW: APPS.IGS_AS_ORDER_HDR_V
12.1.1
-
VIEW: APPS.IGS_AS_ORDER_PAYMENT_INFO_V
12.1.1
-
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.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_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_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 ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_DOCUMENTS_API
12.1.1
-
APPS.IGS_AS_DOCUMENTS_API dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_AS_DOCUMENTS_API dependencies on FND_FILE
12.1.1
-
APPS.IGS_AS_DOCUMENTS_API dependencies on FND_API
12.1.1