Search Results applies_to
Overview
IGW_PRPO_YN_RESPONSES_V is a reporting view in the Oracle E-Business Suite Grants Management (IGW) schema. Its purpose is to consolidate Yes/No questionnaire responses collected during the pre-proposal and proposal lifecycle into a single, uniformly structured result set. The view normalizes three distinct sources of answers — proposal-level, organization-level, and person-level questions — into one common format, tagging each row with an applies_to discriminator of 'P', 'O', or 'I' respectively.
In the EBS 12.1.1 and 12.2.2 code lines this object is exposed under the APPS schema and is typically consumed by Grants Management forms, OAF pages, and downstream reporting or integration routines that need a flattened picture of qualification questions. Because the view filters on ANSWER <> 3, it deliberately excludes unanswered questions and returns only affirmative (Y) or negative (N) responses. This makes it well suited to decision-support reporting, compliance checks, and extraction feeds.
Underlying Base Objects
The view text is defined as a three-way UNION over the following documented base tables:
IGW_PROP_QUESTIONS— proposal-level questions; contributes rows whereapplies_to = 'P'.IGW_ORG_QUESTIONSjoined toIGW_PROPOSALS— organization-level questions, matched viaQ.ORGANIZATION_ID = P.SUBMITTING_ORGANIZATION_ID; contributes rows whereapplies_to = 'O'.IGW_PROP_PERSON_QUESTIONS— person-level questions on the proposal; contributes rows whereapplies_to = 'I'.
All three branches enforce the same filter predicate ANSWER <> 3, ensuring consistency. The ETRM metadata lists no additional referenced base objects beyond these three tables and the join to IGW_PROPOSALS.
Key Columns
- PROPOSAL_ID — identifier of the proposal to which the response belongs; present in all three branches and the primary correlation key.
- APPLIES_TO — literal discriminator:
'P'(proposal),'O'(organization),'I'(person/party). This is the column users search for when filtering by response scope. - QUESTION_NUMBER — the ordinal/number of the qualification question answered.
- RESPONSE — decoded value:
'Y'whenANSWER = '1','N'whenANSWER = '2'. Because the predicate excludes3, no other values appear. - EXPLANATION — free-text justification supplied with the answer.
- REVIEW_DATE — timestamp indicating when the response was last reviewed.
- ORGANIZATION_ID / PERSON_ID / PARTY_ID (PERSON_PARTY_ID) — context identifiers returned only by the branch relevant to the row; the other positional columns are populated with
TO_NUMBER(NULL).
Common Use Cases and Queries
Typical consumption includes proposal qualification dashboards, compliance auditing of Yes/No answers, and extraction of responses for integration into external grant systems. A representative query filtering by scope is:
SELECT PROPOSAL_ID, APPLIES_TO, QUESTION_NUMBER, RESPONSE, EXPLANATION FROM APPS.IGW_PRPO_YN_RESPONSES_V WHERE PROPOSAL_ID = :p_proposal_id ORDER BY APPLIES_TO, QUESTION_NUMBER;SELECT APPLIES_TO, RESPONSE, COUNT(*) FROM APPS.IGW_PRPO_YN_RESPONSES_V GROUP BY APPLIES_TO, RESPONSE;SELECT PROPOSAL_ID, QUESTION_NUMBER, EXPLANATION FROM APPS.IGW_PRPO_YN_RESPONSES_V WHERE RESPONSE = 'N' AND REVIEW_DATE > SYSDATE - 30;
Because the view resolves organization identity through IGW_PROPOSALS.SUBMITTING_ORGANIZATION_ID, joins back to proposal and organization tables should key on PROPOSAL_ID to avoid duplication across the unioned branches.
-
VIEW: APPS.IGW_PRPO_YN_RESPONSES_V
12.1.1
-
VIEW: OKS.OKS_REPORT_TEMPLATES#
12.2.2
-
APPS.OKS_REPORT_TEMPLATES_PVT SQL Statements
12.1.1
-
VIEW: OKS.OKS_REPORT_TEMPLATES#
12.2.2
owner:OKS, object_type:VIEW, object_name:OKS_REPORT_TEMPLATES#, status:VALID,
-
View: IGW_PRPO_YN_RESPONSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_PRPO_YN_RESPONSES_V, object_name:IGW_PRPO_YN_RESPONSES_V, status:VALID, product: IGW - Grants Proposal , description: View displays answers to questions about individuals, the proposal, and the organization , implementation_dba_data: APPS.IGW_PRPO_YN_RESPONSES_V ,
-
View: IGW_PRPO_YN_RESPONSES_V
12.2.2
product: IGW - Grants Proposal (Obsolete) , description: View displays answers to questions about individuals, the proposal, and the organization , implementation_dba_data: Not implemented in this database ,
-
APPS.OKS_REPORT_TEMPLATES_PVT SQL Statements
12.2.2
-
VIEW: APPS.IGWBV_GRNT_PRPSL_CERT_QUESTION
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWBV_GRNT_PRPSL_CERT_QUESTION, object_name:IGWBV_GRNT_PRPSL_CERT_QUESTION, status:VALID,
-
VIEW: APPS.OKS_REPORT_TEMPLATES_V
12.2.2
-
VIEW: APPS.OKS_REPORT_TEMPLATES_V
12.1.1
-
VIEW: APPS.IGW_QUESTIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_QUESTIONS_VL, object_name:IGW_QUESTIONS_VL, status:VALID,
-
VIEW: APPS.IGWFV_GRNT_PRPSL_CERT_QUESTION
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWFV_GRNT_PRPSL_CERT_QUESTION, object_name:IGWFV_GRNT_PRPSL_CERT_QUESTION, status:VALID,
-
VIEW: APPS.OKS_REPORT_TEMPLATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_REPORT_TEMPLATES_V, object_name:OKS_REPORT_TEMPLATES_V, status:VALID,
-
View: IGW_QUESTIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_QUESTIONS_VL, object_name:IGW_QUESTIONS_VL, status:VALID, product: IGW - Grants Proposal , implementation_dba_data: APPS.IGW_QUESTIONS_VL ,
-
TABLE: MST.MST_PERSONAL_QUERIES
12.1.1
owner:MST, object_type:TABLE, object_name:MST_PERSONAL_QUERIES, status:VALID,
-
VIEW: APPS.OKS_REPORT_TEMPLATES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_REPORT_TEMPLATES_V, object_name:OKS_REPORT_TEMPLATES_V, status:VALID,
-
View: IGWBV_GRNT_PRPSL_CERT_QUESTION
12.2.2
product: IGW - Grants Proposal (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGWFV_GRNT_PRPSL_CERT_QUESTION
12.2.2
product: IGW - Grants Proposal (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGWFV_GRNT_PRPSL_CERT_QUESTION
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWFV_GRNT_PRPSL_CERT_QUESTION, object_name:IGWFV_GRNT_PRPSL_CERT_QUESTION, status:VALID, product: IGW - Grants Proposal , implementation_dba_data: APPS.IGWFV_GRNT_PRPSL_CERT_QUESTION ,
-
View: IGWBV_GRNT_PRPSL_CERT_QUESTION
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWBV_GRNT_PRPSL_CERT_QUESTION, object_name:IGWBV_GRNT_PRPSL_CERT_QUESTION, status:VALID, product: IGW - Grants Proposal , implementation_dba_data: APPS.IGWBV_GRNT_PRPSL_CERT_QUESTION ,
-
APPS.OKS_AUTO_REMINDER SQL Statements
12.1.1
-
View: IGW_QUESTIONS_VL
12.2.2
product: IGW - Grants Proposal (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGW.IGW_QUESTIONS
12.1.1
owner:IGW, object_type:TABLE, fnd_design_data:IGW.IGW_QUESTIONS, object_name:IGW_QUESTIONS, status:VALID,
-
APPS.IGW_QUESTIONS_PKG SQL Statements
12.1.1
-
APPS.OKS_AUTO_REMINDER SQL Statements
12.2.2
-
TABLE: OKS.OKS_REPORT_TEMPLATES
12.1.1
owner:OKS, object_type:TABLE, fnd_design_data:OKS.OKS_REPORT_TEMPLATES, object_name:OKS_REPORT_TEMPLATES, status:VALID,
-
TABLE: OKS.OKS_REPORT_TEMPLATES
12.2.2
owner:OKS, object_type:TABLE, fnd_design_data:OKS.OKS_REPORT_TEMPLATES, object_name:OKS_REPORT_TEMPLATES, status:VALID,
-
APPS.IGW_PROP_QUESTIONS_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGW_QUESTIONS_PKG
12.1.1
-
PACKAGE: APPS.OKS_REPORT_TEMPLATES_PVT
12.1.1
-
PACKAGE: APPS.OKS_REPORT_TEMPLATES_PVT
12.2.2
-
PACKAGE BODY: APPS.OKS_REPORT_TEMPLATES_PVT
12.1.1
-
PACKAGE BODY: APPS.OKS_REPORT_TEMPLATES_PVT
12.2.2
-
PACKAGE BODY: APPS.IGW_PROP_QUESTIONS_PVT
12.1.1
-
PACKAGE BODY: APPS.OKS_AUTO_REMINDER
12.1.1
-
PACKAGE BODY: APPS.OKS_AUTO_REMINDER
12.2.2
-
APPS.OKS_REPORT_TEMPLATES_PVT dependencies on OKS_REPORT_TEMPLATES_V
12.1.1
-
APPS.OKS_REPORT_TEMPLATES_PVT dependencies on OKS_REPORT_TEMPLATES_V
12.2.2
-
APPS.OKS_REPORT_TEMPLATES_PVT dependencies on OKS_REPORT_TEMPLATES
12.1.1
-
APPS.OKS_REPORT_TEMPLATES_PVT dependencies on OKS_REPORT_TEMPLATES
12.2.2
-
APPS.OKS_REPORT_TEMPLATES_PVT dependencies on OKC_API
12.2.2
-
APPS.OKS_REPORT_TEMPLATES_PVT dependencies on OKC_API
12.1.1
-
APPS.OKS_REPORT_TEMPLATES_PVT dependencies on FND_LOG
12.2.2
-
APPS.OKS_REPORT_TEMPLATES_PVT dependencies on FND_LOG
12.1.1
-
APPS.IGW_PROP_QUESTIONS_PVT dependencies on IGW_QUESTIONS
12.1.1
-
APPS.OKS_REPORT_TEMPLATES_PVT dependencies on OKS_REPORT_TEMPLATES
12.1.1
-
APPS.OKS_REPORT_TEMPLATES_PVT dependencies on OKS_REPORT_TEMPLATES
12.2.2
-
APPS.IGW_QUESTIONS_PKG dependencies on IGW_QUESTIONS
12.1.1
-
APPS.MST_PQ_WORKS dependencies on MST_PERSONAL_QUERIES
12.1.1
-
APPS.MST_PQ_WORKS SQL Statements
12.1.1