Search Results person_full_name
Overview
APPS.IGWFV_GRNT_PRPSL_PERS_BIOSKTCH is a Business Intelligence System (BIS) view owned by the APPS schema within the Oracle E-Business Suite Grants Management (IGW) product family. The "FV" prefix identifies it as a formatted, presentation-oriented view designed for reporting and inquiry rather than for transactional data entry. Its purpose is to expose grant proposal personnel biographical sketch data — narrative descriptions of investigators, key personnel, and consultants associated with a grant proposal — in a structure suited to reporting tools, listings, and integration extracts.
The view is registered under FND Design Data as IGW.IGWFV_GRNT_PRPSL_PERS_BIOSKTCH and carries a status of VALID. It is not referenced by any other database object, confirming its role as a terminal, read-only reporting artifact. Because the object name includes PERSON_FULL_NAME — the column surfaced as the first attribute in the documented query text — it is frequently located by implementers searching for a person-level descriptive name within grants reporting rather than within the standard HR person directory.
Underlying Base Objects
The view is defined over four documented dependency objects: IGW_PERSON_BIOSKETCH, PER_ALL_PEOPLE_F, IGW_LOOKUPS_V, and FND_GLOBAL. IGW_PERSON_BIOSKETCH is the primary transactional base and supplies the biographical sketch record itself, including the biosketch identifier, type, sequence, and line text. PER_ALL_PEOPLE_F supplies person identity and the derived person full name, which accounts for the PERSON_FULL_NAME column at its documented VARCHAR2(240) length. IGW_LOOKUPS_V resolves coded lookup values into their display meanings, and FND_GLOBAL is referenced for runtime context such as the current user, responsibility, and application. The metadata explicitly notes that the view references these objects but is referenced by none, reinforcing that it is a leaf-level reporting construct.
Key Columns
- PERSON_FULL_NAME (VARCHAR2(240)) — the formatted full name of the person to whom the biographical sketch belongs; the attribute most commonly searched for.
- BIOSKETCH_TYPE (VARCHAR2(80)) — the category of biographical sketch, typically resolved through lookup values.
- BIOSKETCH_LINE_SEQUENCE (NUMBER) — the ordering sequence used to reconstruct the narrative from its individual lines.
- BIOSKETCH_LINE (VARCHAR2(500)) — each stored line of the biographical narrative; a single biosketch spans multiple rows that must be assembled in sequence.
- ENABLE_FLAG (VARCHAR2) — indicates whether the biosketch or line is active for display.
- PERSON_BIOSKETCH_ID (NUMBER(10)) and PERSON_ID (NUMBER(15)) — the unique identifiers for the biosketch record and the underlying person respectively.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY — the standard EBS audit columns.
Common Use Cases and Queries
Typical uses include producing personnel biosketch listings for grant proposals, extracting narrative content for sponsor submissions, and joining biosketch data to person records for reporting. Because the narrative is line-based, queries usually order by sequence and aggregate accordingly.
SELECT PERSON_FULL_NAME,
BIOSKETCH_TYPE,
BIOSKETCH_LINE_SEQUENCE,
BIOSKETCH_LINE
FROM APPS.IGWFV_GRNT_PRPSL_PERS_BIOSKTCH
WHERE PERSON_ID = :person_id
AND ENABLE_FLAG = 'Y'
ORDER BY BIOSKETCH_LINE_SEQUENCE;
For a consolidated narrative per person, the line column can be aggregated with LISTAGG or an equivalent string function. A simpler inquiry returns all rows directly:
SELECT PERSON_FULL_NAME
, BIOSKETCH_TYPE
, BIOSKETCH_LINE_SEQUENCE
, BIOSKETCH_LINE
, ENABLE_FLAG
, PERSON_BIOSKETCH_ID
, PERSON_ID
, LAST_UPDATE_DATE
, LAST_UPDATED_BY
, CREATION_DATE
, CREATED_BY
FROM APPS.IGWFV_GRNT_PRPSL_PERS_BIOSKTCH;
Because the view is read-only and not referenced by other objects, it may be used freely in custom reports, discoverer workbooks, and BI Publisher data templates without affecting Grants Management transaction processing.
-
VIEW: APPS.IGWFV_GRNT_PRPSL_PERS_BIOSKTCH
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWFV_GRNT_PRPSL_PERS_BIOSKTCH, object_name:IGWFV_GRNT_PRPSL_PERS_BIOSKTCH, status:VALID,
-
VIEW: APPS.IGWFV_GRNT_PRPSL_PERS_DEGREE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWFV_GRNT_PRPSL_PERS_DEGREE, object_name:IGWFV_GRNT_PRPSL_PERS_DEGREE, status:VALID,
-
VIEW: APPS.IGWFV_GRANT_PROPOSAL_PERS_ASGN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWFV_GRANT_PROPOSAL_PERS_ASGN, object_name:IGWFV_GRANT_PROPOSAL_PERS_ASGN, status:VALID,
-
View: PA_UPDATE_TEAM_ROLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_UPDATE_TEAM_ROLES_V, object_name:PA_UPDATE_TEAM_ROLES_V, status:VALID, product: PA - Projects , description: This view retrieves the team roles of planning resources linked/not linked to task assignments for updation purposes , implementation_dba_data: APPS.PA_UPDATE_TEAM_ROLES_V ,
-
View: IGSFV_ST_HESA_ADMISSION_DETAIL
12.2.2
product: IGS - Student System (Obsolete) , description: Full business view to allow queries on Student Admission Application HESA Details. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGWFV_GRANT_PRPSL_BDGT_PERSON
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWFV_GRANT_PRPSL_BDGT_PERSON, object_name:IGWFV_GRANT_PRPSL_BDGT_PERSON, status:VALID,
-
View: IGSFV_ST_PROG_ATT_UCAS_TARIFF
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_PROG_ATT_UCAS_TARIFF, object_name:IGSFV_ST_PROG_ATT_UCAS_TARIFF, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Student Program Attempt UCAS Tariff HESA Details. , implementation_dba_data: APPS.IGSFV_ST_PROG_ATT_UCAS_TARIFF ,
-
View: IGSFV_ST_PROG_ATT_UCAS_TARIFF
12.2.2
product: IGS - Student System (Obsolete) , description: Full business view to allow queries on Student Program Attempt UCAS Tariff HESA Details. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AST_LM_PER_SMARTSEARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_PER_SMARTSEARCH_V, object_name:AST_LM_PER_SMARTSEARCH_V, status:VALID,
-
View: IGSFV_ST_PROG_ATT_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Full business view to allow queries on Student Program Attempt Cost Center HESA details. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PER_SUCCESSION_PLANNING_V
12.1.1
-
VIEW: APPS.PA_CREATE_TEAM_ROLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CREATE_TEAM_ROLES_V, object_name:PA_CREATE_TEAM_ROLES_V, status:VALID,
-
View: IGSFV_ST_PROG_ATT_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_PROG_ATT_COST_CENTRES, object_name:IGSFV_ST_PROG_ATT_COST_CENTRES, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Student Program Attempt Cost Center HESA details. , implementation_dba_data: APPS.IGSFV_ST_PROG_ATT_COST_CENTRES ,
-
View: PA_UPDATE_TEAM_ROLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_UPDATE_TEAM_ROLES_V, object_name:PA_UPDATE_TEAM_ROLES_V, status:VALID, product: PA - Projects , description: This view retrieves the team roles of planning resources linked/not linked to task assignments for updation purposes , implementation_dba_data: APPS.PA_UPDATE_TEAM_ROLES_V ,
-
TABLE: JTF.CAC_SYNC_CONTACT_TEMPS
12.2.2
owner:JTF, object_type:TABLE, object_name:CAC_SYNC_CONTACT_TEMPS, status:VALID,
-
VIEW: APPS.PA_CREATE_TEAM_ROLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CREATE_TEAM_ROLES_V, object_name:PA_CREATE_TEAM_ROLES_V, status:VALID,
-
VIEW: APPS.PER_SUCCESSION_PLANNING_V
12.2.2
-
View: IGS_PE_VISA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_VISA_V, object_name:IGS_PE_VISA_V, status:VALID, product: IGS - Student System , description: This view is designed to retrieve all information on the visas that are stored for a person. , implementation_dba_data: APPS.IGS_PE_VISA_V ,
-
View: IGSFV_HESA_EXT_RUN_DAT_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_HESA_EXT_RUN_DAT_LINES, object_name:IGSFV_HESA_EXT_RUN_DAT_LINES, status:VALID, product: IGS - Student System , description: Full View for HESA extract data , implementation_dba_data: APPS.IGSFV_HESA_EXT_RUN_DAT_LINES ,
-
VIEW: APPS.IGWFV_GRNT_PRPSL_BDGT_LIN_PERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWFV_GRNT_PRPSL_BDGT_LIN_PERS, object_name:IGWFV_GRNT_PRPSL_BDGT_LIN_PERS, status:VALID,
-
VIEW: APPS.IGWFV_GRNT_PRPSL_BDGT_PERS_AMT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWFV_GRNT_PRPSL_BDGT_PERS_AMT, object_name:IGWFV_GRNT_PRPSL_BDGT_PERS_AMT, status:VALID,
-
View: IGS_PE_VISA_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is designed to retrieve all information on the visas that are stored for a person. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_ST_PROG_ATT_UCAS_TARIFF
12.1.1
-
VIEW: APPS.IGS_PE_VISA_V
12.1.1
-
View: IGSFV_HESA_EXT_RUN_DAT_LINES
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for HESA extract data , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_ST_HESA_ADMISSION_DETAIL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_HESA_ADMISSION_DETAIL, object_name:IGSFV_ST_HESA_ADMISSION_DETAIL, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Student Admission Application HESA Details. , implementation_dba_data: APPS.IGSFV_ST_HESA_ADMISSION_DETAIL ,
-
View: IGSFV_ST_UNIT_SET_ATT_COST_CNT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_UNIT_SET_ATT_COST_CNT, object_name:IGSFV_ST_UNIT_SET_ATT_COST_CNT, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Student Unit Set Attempt Cost Center HESA Details. , implementation_dba_data: APPS.IGSFV_ST_UNIT_SET_ATT_COST_CNT ,
-
VIEW: APPS.PA_UPDATE_TEAM_ROLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_UPDATE_TEAM_ROLES_V, object_name:PA_UPDATE_TEAM_ROLES_V, status:VALID,
-
VIEW: APPS.PA_UPDATE_TEAM_ROLES_V
12.1.1
-
VIEW: APPS.PA_UPDATE_TEAM_ROLES_V
12.2.2
-
VIEW: APPS.IGSFV_ST_UNIT_SET_ATT_COST_CNT
12.1.1
-
VIEW: APPS.PA_UPDATE_TEAM_ROLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_UPDATE_TEAM_ROLES_V, object_name:PA_UPDATE_TEAM_ROLES_V, status:VALID,
-
View: IGSFV_ST_UNIT_SET_ATT_COST_CNT
12.2.2
product: IGS - Student System (Obsolete) , description: Full business view to allow queries on Student Unit Set Attempt Cost Center HESA Details. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AST_BUSINESS_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_BUSINESS_CONTACTS_V, object_name:AST_BUSINESS_CONTACTS_V, status:VALID,
-
VIEW: APPS.PAFV_EXPENDITURES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_EXPENDITURES, object_name:PAFV_EXPENDITURES, status:VALID,
-
VIEW: APPS.PAFV_EXPENDITURES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_EXPENDITURES, object_name:PAFV_EXPENDITURES, status:VALID,
-
VIEW: APPS.IGWFV_GRNT_PRPSL_PERS_OTHR_SUP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWFV_GRNT_PRPSL_PERS_OTHR_SUP, object_name:IGWFV_GRNT_PRPSL_PERS_OTHR_SUP, status:VALID,
-
VIEW: APPS.AST_BUSINESS_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_BUSINESS_CONTACTS_V, object_name:AST_BUSINESS_CONTACTS_V, status:VALID,
-
VIEW: APPS.AST_LM_REL_SMARTSEARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_SMARTSEARCH_V, object_name:AST_LM_REL_SMARTSEARCH_V, status:VALID,
-
VIEW: APPS.IGSFV_ST_PROG_ATT_COST_CENTRES
12.1.1
-
VIEW: APPS.AST_LM_PER_SMARTSEARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_PER_SMARTSEARCH_V, object_name:AST_LM_PER_SMARTSEARCH_V, status:VALID,
-
View: IGWFV_GRANT_PRPSL_BDGT_PERSON
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWFV_GRANT_PRPSL_BDGT_PERSON, object_name:IGWFV_GRANT_PRPSL_BDGT_PERSON, status:VALID, product: IGW - Grants Proposal , implementation_dba_data: APPS.IGWFV_GRANT_PRPSL_BDGT_PERSON ,
-
View: IGWFV_GRANT_PRPSL_BDGT_PERSON
12.2.2
product: IGW - Grants Proposal (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: JTF.CAC_SYNC_CONTACT_TEMPS
12.1.1
owner:JTF, object_type:TABLE, object_name:CAC_SYNC_CONTACT_TEMPS, status:VALID,
-
VIEW: APPS.PA_TXN_ACCUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TXN_ACCUM_V, object_name:PA_TXN_ACCUM_V, status:VALID,
-
VIEW: APPS.IGSFV_HESA_EXT_RUN_DAT_LINES
12.1.1
-
VIEW: APPS.PA_TXN_ACCUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TXN_ACCUM_V, object_name:PA_TXN_ACCUM_V, status:VALID,
-
VIEW: APPS.PER_SUCCESSION_PLANNING_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_SUCCESSION_PLANNING_V, object_name:PER_SUCCESSION_PLANNING_V, status:VALID,
-
VIEW: APPS.IGSFV_ST_HESA_ADMISSION_DETAIL
12.1.1
-
VIEW: APPS.PER_SUCCESSION_PLANNING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_SUCCESSION_PLANNING_V, object_name:PER_SUCCESSION_PLANNING_V, status:VALID,