Search Results igf_ap_css_profile
Overview
IGF_AP_CSS_PROFILE is a VALID database view owned by the APPS schema within the IGF – Financial Aid product of Oracle E-Business Suite. The view is designated as retrieving CSS Profile records, where CSS Profile refers to the College Scholarship Service Profile, a standardized financial aid application form administered by the College Board and used extensively by postsecondary institutions to determine eligibility for institutional need-based aid. In EBS 12.1.1 and 12.2.2, the view functions as a reporting and integration surface through which CSS Profile data captured in the financial aid module can be queried, extracted, and consumed by downstream processes such as need analysis, packaging, and institutional reporting.
The view exposes a broad, denormalized projection of profile data, including student biographical identifiers, registration and receipt dates, and an extensive set of financial variables covering income, assets, liabilities, household composition, and parental contribution data. Because it is a view rather than a table, it presents a read-oriented interface suitable for concurrent reporting workloads without imposing additional storage.
Underlying Base Objects
The ETRM 12.2.2 metadata documents no referenced base objects and lists no owner for the underlying definition, so the base tables composing this view are not enumerated in the supplied reference. What is documented is the view text itself, which is a single SELECT statement projecting a fixed column list and generating a synthetic key via ROWID ROW_ID as the first projected column.
The column naming conventions strongly indicate lineage to CSS Profile staging or detail tables within the IGF schema, with the view consolidating multiple related record groups into one horizontal row: student-level data (LAST_NAME, FIRST_NAME, MIDDLE_INITIAL, DATE_OF_BIRTH, SOCIAL_SECURITY_NUMBER), tax and income figures, asset and debt fields (HOME_VALUE, INVEST_VALUE, BUS_FARM_VALUE), and parental fields prefixed with P_. The leading column CSSP_ID functions as the CSS Profile record identifier, while ORG_ID and BASE_ID provide organizational and base-record context. Because the view relies on ROWID, it should be treated as a non-updatable, read-only reporting object; DML should be directed at the underlying tables.
Key Columns
- CSSP_ID – Primary identifier for the CSS Profile record; the principal join key to related aid records.
- ACTIVE_PROFILE – Flag indicating whether the profile record is currently active; central to the user's "active_profile" search and the primary filtering column.
- ORG_ID – Operating unit context, required for multi-org (MOAC) security and partitioning of results.
- ACADEMIC_YEAR – Award year the profile applies to, typically the driver of aid-year reporting.
- COLLEGE_CODE – Institution code the profile was filed against.
- SYSTEM_RECORD_TYPE / STU_RECORD_TYPE / REGISTRATION_TYPE / APPLICATION_TYPE – Record classification codes distinguishing applicant, registration, and application states.
- REGISTRATION_RECEIPT_DATE / APPLICATION_RECEIPT_DATE / ASR_RECEIPT_DATE – Chronological milestones for profile receipt processing.
- FINANCIAL_AID_STATUS / YEAR_IN_COLLEGE / MARITAL_STATUS / CITIZENSHIP_STATUS – Student status attributes used in eligibility and packaging logic.
- ADJUSTED_GROSS_INC, US_TAX_PAID, ITEMIZED_DEDUCTIONS, STU_INCOME_WORK, SPOUSE_INCOME_WORK, OTHER_UNTAX_INCOME – Core income variables feeding the Federal Methodology and institutional need analysis.
- HOME_VALUE, INVEST_VALUE, BUS_FARM_VALUE, TRUST_AMOUNT, CASH_SAV_CHECK – Asset values, each paired with corresponding debt columns such as HOME_DEBT and INVEST_DEBT.
- HOUSEHOLD_SIZE / NUMBER_IN_COLLEGE – Household composition inputs to needs analysis.
- P_* columns – Parental data block (e.g., P_MARITAL_STATUS, P_HOUSEHOLD_SIZE, P_NUMBER_IN_COLLEGE, P_CHILD_SUPP_PAID, P_REPAY_ED_LOANS), supporting dependent-student assessment.
Common Use Cases and Queries
The view is most commonly used to locate and audit active CSS Profile records for a given operating unit and award year, to feed need-analysis extracts, and to reconcile profile receipt milestones against aid applications. Because ACTIVE_PROFILE is exposed as a discrete column, the canonical query filters on it directly:
- Retrieve all active profiles for an award year and operating unit:
SELECT cssp_id, org_id, college_code, academic_year, last_name, first_name, financial_aid_status
FROM apps.igf_ap_css_profile
WHERE active_profile = 'Y'
AND academic_year = :academic_year
AND org_id = :org_id; - Report profiles by receipt date for workload monitoring:
SELECT academic_year, application_receipt_date, registration_receipt_date, active_profile, COUNT(*)
FROM apps.igf_ap_css_profile
WHERE org_id = :org_id
GROUP BY academic_year, application_receipt_date, registration_receipt_date, active_profile; - Extract financial variables for need-analysis staging by CSSP_ID, joining back to aid application tables on CSSP_ID and ORG_ID.
All queries should be constrained by ORG_ID to respect multi-org access, and by ACADEMIC_YEAR where historical volume is significant. As a view, it carries no indexes of its own; performance depends entirely on the underlying base tables and the predicates applied.
-
View: IGF_AP_CSS_PROFILE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_CSS_PROFILE, object_name:IGF_AP_CSS_PROFILE, status:VALID, product: IGF - Financial Aid , description: Retrieves the CSS Profile records , implementation_dba_data: APPS.IGF_AP_CSS_PROFILE ,
-
View: IGF_AP_CSS_PROFILE
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Retrieves the CSS Profile records , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGF_AP_UHK_INAS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_UHK_INAS_PKG, status:VALID,
-
SYNONYM: APPS.IGF_AP_CSS_PROFILE_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGF_AP_CSS_PROFILE_ALL, status:VALID,
-
PACKAGE: APPS.IGF_AP_UHK_INAS_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGF_AP_UHK_INAS_PKG, status:VALID,
-
PACKAGE: APPS.IGF_AP_PROFILE_MATCHING_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGF_AP_PROFILE_MATCHING_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGF_AP_PROFILE_GEN_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_PROFILE_GEN_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGF_AP_MK_PROF_ACT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_MK_PROF_ACT_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGF_AP_CALC_IM_EFC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_CALC_IM_EFC, status:VALID,
-
PACKAGE BODY: APPS.IGF_AP_LI_PROF_IMP_PROC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_LI_PROF_IMP_PROC, status:VALID,
-
PACKAGE BODY: APPS.IGF_AP_PROFILE_MATCHING_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_PROFILE_MATCHING_PKG, status:VALID,
-
VIEW: APPS.IGF_AP_CSS_PROFILE_V
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_MATCHING_PROCESS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_MATCHING_PROCESS_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.IGF_AP_CSS_FNAR_V
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
APPS.IGF_AP_MK_PROF_ACT_PKG SQL Statements
12.1.1
-
View: IGF_AP_CSS_PROFILE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_CSS_PROFILE_V, object_name:IGF_AP_CSS_PROFILE_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AP_CSS_PROFILE_V ,
-
View: IGF_AP_CSS_PROFILE_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_AP_PROFILE_MATCHING_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_PROFILE_MATCHING_PKG
12.1.1
-
View: IGF_AP_CSS_FNAR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_CSS_FNAR_V, object_name:IGF_AP_CSS_FNAR_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AP_CSS_FNAR_V ,
-
View: IGF_AP_CSS_FNAR_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_AP_UHK_INAS_PKG dependencies on IGF_AP_CSS_PROFILE
12.1.1
-
APPS.IGF_AP_PROFILE_MATCHING_PKG dependencies on IGF_AP_CSS_PROFILE
12.1.1
-
APPS.IGF_AP_LI_PROF_IMP_PROC dependencies on IGF_AP_CSS_PROFILE
12.1.1
-
APPS.IGF_AP_UHK_INAS_PKG dependencies on IGF_AP_CSS_PROFILE
12.1.1
-
APPS.IGF_AP_PROFILE_MATCHING_PKG dependencies on IGF_AP_CSS_PROFILE
12.1.1
-
APPS.IGF_AP_MK_PROF_ACT_PKG dependencies on IGF_AP_CSS_PROFILE
12.1.1
-
APPS.IGF_AP_PROFILE_GEN_PKG dependencies on IGF_AP_CSS_PROFILE
12.1.1
-
APPS.IGF_AP_MATCHING_PROCESS_PKG dependencies on IGF_AP_CSS_PROFILE
12.1.1
-
APPS.IGF_AP_CALC_IM_EFC dependencies on IGF_AP_CSS_PROFILE
12.1.1
-
VIEW: APPS.IGF_AP_CSS_PROFILE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_CSS_PROFILE_V, object_name:IGF_AP_CSS_PROFILE_V, status:VALID,
-
VIEW: APPS.IGF_AP_CSS_PROFILE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_CSS_PROFILE, object_name:IGF_AP_CSS_PROFILE, status:VALID,
-
APPS.IGF_AP_CALC_IM_EFC SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_MK_PROF_ACT_PKG
12.1.1
-
VIEW: APPS.IGF_AP_CSS_FNAR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_CSS_FNAR_V, object_name:IGF_AP_CSS_FNAR_V, status:VALID,
-
APPS.IGF_AP_UHK_INAS_PKG SQL Statements
12.1.1
-
APPS.IGF_AP_LI_PROF_IMP_PROC SQL Statements
12.1.1
-
APPS.IGF_AP_UHK_INAS_PKG dependencies on FND_NEW_MESSAGES
12.1.1
-
APPS.IGF_AP_PROFILE_MATCHING_PKG dependencies on IGF_AP_FA_BASE_REC
12.1.1
-
APPS.IGF_AP_UHK_INAS_PKG dependencies on FND_NEW_MESSAGES
12.1.1
-
APPS.IGF_AP_PROFILE_MATCHING_PKG dependencies on IGF_AP_CSS_PROFILE_PKG
12.1.1
-
APPS.IGF_AP_UHK_INAS_PKG dependencies on IGF_AP_BATCH_AW_MAP
12.1.1
-
APPS.IGF_AP_PROFILE_MATCHING_PKG dependencies on IGF_AP_CSS_PROFILE_ALL
12.1.1
-
APPS.IGF_AP_UHK_INAS_PKG dependencies on IGF_AP_BATCH_AW_MAP
12.1.1
-
APPS.IGF_AP_PROFILE_MATCHING_PKG dependencies on IGF_AP_CSS_INTERFACE_ALL
12.1.1
-
APPS.IGF_AP_PROFILE_MATCHING_PKG dependencies on IGF_AP_PERSON_MATCH
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_UHK_INAS_PKG
12.1.1