Search Results sys_fund_type_desc
Overview
IGF_AW_FN_RPKG_PRTY_V is a reporting view in the Oracle E-Business Suite (EBS) Oracle Grants/Funds Management (IGF) schema, owned by APPS. It presents the funding priority records held in IGF_AW_FN_RPKG_PRTY, enriched with descriptive attributes drawn from the fund master and from Oracle lookups, and joined to the calendar instance that identifies the award or proposal period to which the priority applies. The view is therefore a denormalized presentation layer: it converts code values stored on the fund record — system fund type, fund source, and federal fund code — into their human-readable lookup meanings, so that downstream reports, concurrent programs, and integration extracts do not need to repeat the lookup resolution logic.
Within the ETRM 12.1.1 and 12.2.2 documentation set, the object is documented as a view over the IGF_AW (Award Management) family of tables. It is relevant to users who search on "igf_aw_fund_source," because one of its projected columns, FUND_SOURCE_DESC, is derived precisely from the IGF_AW_FUND_SOURCE lookup applied to the fund master's FUND_SOURCE value. The view returns no base-table identifiers of its own; it is a query-only construct and carries no independent storage, privileges beyond those granted on APPS, or triggers.
Underlying Base Objects
The view is defined over the following objects, as documented in the view text:
- IGF_AW_FN_RPKG_PRTY RPP — the funding priority (rank package priority) table, supplying the primary key ROWID, FUND_ORDER_NUM, calendar type and sequence, FUND_ID, and the standard WHO audit columns.
- IGF_AW_FUND_MAST_V FM — the fund master, supplying FUND_CODE, DESCRIPTION, SYS_FUND_TYPE, FUND_SOURCE, and FED_FUND_CODE, joined on FUND_ID.
- IGF_LOOKUPS_VIEW FNDS1 — resolves IGF_AW_SYS_FUND_TYPE into SYS_FUND_TYPE_DESC.
- IGF_LOOKUPS_VIEW FNDS2 — resolves IGF_AW_FUND_SOURCE into FUND_SOURCE_DESC, the fund source description referenced by the "igf_aw_fund_source" search term.
- IGF_LOOKUPS_VIEW FNDS3 — resolves IGF_AW_FED_FUND into SYS_FUND_CODE_DESC.
- IGS_CA_INST CA — the calendar instance, supplying ALTERNATE_CODE and joined on CAL_TYPE and SEQUENCE_NUMBER against CI_CAL_TYPE and CI_SEQUENCE_NUMBER.
The joins are inner joins throughout, so a priority row appears only when a matching fund, all three lookup codes, and a matching calendar instance exist. Calendar type and sequence number are concatenated into the join, reflecting the IGS_CA_INST composite key design.
Key Columns
- ROWID — the row identifier of the underlying priority record; useful for targeted updates and diagnostics.
- FUND_ORDER_NUM — the ordering/priority rank assigned to the fund.
- CI_CAL_TYPE, CI_SEQUENCE_NUMBER — the calendar type and instance sequence identifying the award or proposal period.
- ALTERNATE_CODE — the user-facing code of the resolved calendar instance.
- FUND_ID, FUND_CODE, DESCRIPTION — the fund identity and its descriptive text.
- SYS_FUND_TYPE_DESC, FUND_SOURCE_DESC, SYS_FUND_CODE_DESC — decoded meanings for the fund's system fund type, fund source, and federal fund code.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard audit columns propagated from the priority table.
Common Use Cases and Queries
The view is typically used to report funding priority by award period, to validate that a fund carries the expected fund source before it is considered in an award budget, and to feed extracts that must present descriptions rather than lookup codes. A representative query listing priorities for a given award period follows:
SELECT fund_order_num, fund_code, description, fund_source_desc, alternate_code
FROM apps.igf_aw_fn_rpkg_prty_v
WHERE alternate_code = :p_award_number
ORDER BY fund_order_num;
To isolate funds by source — the scenario implied by the "igf_aw_fund_source" search — filter on the decoded column rather than on the base fund master:
SELECT fund_code, description, fund_source_desc, sys_fund_type_desc
FROM apps.igf_aw_fn_rpkg_prty_v
WHERE fund_source_desc = 'Federal';
Because all joins are inner, rows with unmapped lookup codes or missing calendar instances are silently excluded. When reconciliations differ from IGF_AW_FN_RPKG_PRTY, the discrepancy should be traced to the lookup tables, the fund master, or IGS_CA_INST rather than to the view itself.
-
VIEW: APPS.IGF_AW_FN_RPKG_PRTY_V
12.1.1
-
View: IGF_AW_REPKG_PRTY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_REPKG_PRTY_V, object_name:IGF_AW_REPKG_PRTY_V, status:VALID, product: IGF - Financial Aid , description: Sets up the re-package priority of funds at the System Fund Level , implementation_dba_data: APPS.IGF_AW_REPKG_PRTY_V ,
-
View: IGF_AW_FN_RPKG_PRTY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FN_RPKG_PRTY_V, object_name:IGF_AW_FN_RPKG_PRTY_V, status:VALID, product: IGF - Financial Aid , description: Sets up the re-package priority of funds at the Fund Level , implementation_dba_data: APPS.IGF_AW_FN_RPKG_PRTY_V ,
-
View: IGF_AW_FUND_CAT_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Shows the different funds , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AW_FN_RPKG_PRTY_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Sets up the re-package priority of funds at the Fund Level , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AW_FUND_CAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_CAT_V, object_name:IGF_AW_FUND_CAT_V, status:VALID, product: IGF - Financial Aid , description: Shows the different funds , implementation_dba_data: APPS.IGF_AW_FUND_CAT_V ,
-
View: IGF_AW_REPKG_PRTY_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Sets up the re-package priority of funds at the System Fund Level , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AW_FN_RPKG_PRTY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FN_RPKG_PRTY_V, object_name:IGF_AW_FN_RPKG_PRTY_V, status:VALID,
-
VIEW: APPS.IGF_AW_REPKG_PRTY_V
12.1.1
-
VIEW: APPS.IGF_AW_REPKG_PRTY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_REPKG_PRTY_V, object_name:IGF_AW_REPKG_PRTY_V, status:VALID,
-
VIEW: APPS.IGF_AW_FUND_CAT_V
12.1.1
-
VIEW: APPS.IGF_AW_FUND_CAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_CAT_V, object_name:IGF_AW_FUND_CAT_V, status:VALID,
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,