Search Results per_proposal_question_types
Overview
PER_PROPOSAL_QUESTION_TYPES is a Human Resources (PER) module table in Oracle E-Business Suite that stores the master definitions of generic web offer questions. In EBS 12.1.1 and 12.2.2, it functions as the reusable question library underpinning the recruiting and offer-management workflow, where recruiters, hiring managers, and applicants answer configured questions during the offer or proposal process. Each row defines one question along with its presentation, formatting, default-value, and lookup behavior, so that the same question template can be attached to many offers without redefining its metadata.
From a Data Vault modeling perspective, the mined foreign-key structure classifies this table as hub-leaning. It behaves as a central reference point: the question type is the business entity, and the two dependent tables (answers and members) act as link or satellite structures pointing back to it. This classification is a heuristic suggestion derived from the FK topology rather than a documented Oracle design statement.
Key Information Stored
The table is owned by the HR schema and contains 24 documented columns. The primary key constraint is PER_PROPOSAL_QUESTIONS_TYPE_PK, which is built on the business-key candidate PROPOSAL_QUESTION_NAME together with the ZD_EDITION_NAME column. PROPOSAL_QUESTION_NAME is the natural identifier referenced by all dependent tables; ZD_EDITION_NAME supports multi-tenant or editioning semantics. No separate numeric surrogate key is documented, so the composite of these two columns serves as the effective unique identifier.
The most significant columns include:
- PROPOSAL_QUESTION_NAME — the business name of the question; the column propagated to dependent tables.
- FULL_TEXT — the complete question text presented to the respondent.
- QUESTION_HEADER — a short header or label rendered above the input control.
- HELP_TEXT and NOTE_TEXT — guidance and annotation displayed to the user.
- HTML_TYPE — controls the HTML control type used to render the question (for example text area, list, or checkbox).
- ALIGN, WIDTH_SIZE, HEIGHT_SIZE, and MAXLENGTH — layout and input-length attributes.
- DEFAULT_VALUE_TYPE and DEFAULT_VALUE — the default-answer mechanism and its value.
- LOOKUP_TYPE — identifies the lookup values used when the question is list-driven.
- OPTION_SQL_TEXT, PROVIDE_FIND, FIND_FILTER_COLUMN, and FIND_SELECT_SQL — the dynamic list-of-values and search configuration.
- TYPE — categorizes the question.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATED_BY, and CREATION_DATE — standard audit columns.
Common Use Cases and Queries
The table is most commonly queried to inventory the question catalog, to diagnose how a specific offer question renders, and to verify which lookup or SQL source supplies its values. A typical reporting pattern joins it to PER_ASSIGN_PROPOSAL_ANSWERS to determine which questions were actually answered on an offer:
- List all questions by type:
SELECT proposal_question_name, full_text, html_type FROM hr.per_proposal_question_types WHERE type = :p_type; - Find list-driven questions:
SELECT proposal_question_name, lookup_type, option_sql_text FROM hr.per_proposal_question_types WHERE lookup_type IS NOT NULL; - Resolve answers to question text:
SELECT a.*, q.full_text FROM hr.per_assign_proposal_answers a, hr.per_proposal_question_types q WHERE a.proposal_question_name = q.proposal_question_name;
Because ZD_EDITION_NAME participates in the unique index, edition-aware queries should restrict on the appropriate edition when running in 12.2.x environments.
Related Objects
Two documented foreign keys reference this table through the PROPOSAL_QUESTION_NAME column, making them the principal dependent objects:
- PER_ASSIGN_PROPOSAL_ANSWERS — stores the answers captured against each assigned offer; joined on PER_ASSIGN_PROPOSAL_ANSWERS.PROPOSAL_QUESTION_NAME = PER_PROPOSAL_QUESTION_TYPES.PROPOSAL_QUESTION_NAME.
- PER_PROPOSAL_QUESTION_MEMBERS — associates question types with their member definitions; joined on PER_PROPOSAL_QUESTION_MEMBERS.PROPOSAL_QUESTION_NAME = PER_PROPOSAL_QUESTION_TYPES.PROPOSAL_QUESTION_NAME.
Additional PER objects such as the proposal and assignment tables that consume these questions through the answer and member tables complete the offer-question model, but the two FK relationships above are the documented dependents grounded in the ETRM metadata.
-
Table: PER_PROPOSAL_QUESTION_TYPES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_PROPOSAL_QUESTION_TYPES, object_name:PER_PROPOSAL_QUESTION_TYPES, status:VALID, product: PER - Human Resources , description: Generic web offer questions , implementation_dba_data: HR.PER_PROPOSAL_QUESTION_TYPES ,
-
Table: PER_PROPOSAL_QUESTION_TYPES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_PROPOSAL_QUESTION_TYPES, object_name:PER_PROPOSAL_QUESTION_TYPES, status:VALID, product: PER - Human Resources , description: Generic web offer questions , implementation_dba_data: HR.PER_PROPOSAL_QUESTION_TYPES ,
-
TABLE: HR.PER_PROPOSAL_QUESTION_MEMBERS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_PROPOSAL_QUESTION_MEMBERS, object_name:PER_PROPOSAL_QUESTION_MEMBERS, status:VALID,
-
TABLE: HR.PER_PROPOSAL_QUESTION_MEMBERS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_PROPOSAL_QUESTION_MEMBERS, object_name:PER_PROPOSAL_QUESTION_MEMBERS, status:VALID,
-
VIEW: APPS.PER_PROPOSAL_QUESTION_TYPES_V
12.2.2
-
VIEW: HR.PER_PROPOSAL_QUESTION_TYPES#
12.2.2
owner:HR, object_type:VIEW, object_name:PER_PROPOSAL_QUESTION_TYPES#, status:VALID,
-
TRIGGER: APPS.PER_PROPOSAL_QUESTION_TYPES+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:PER_PROPOSAL_QUESTION_TYPES+, status:VALID,
-
VIEW: APPS.HRBV_PROPOSAL_QUESTION_TYPES_V
12.1.1
-
TRIGGER: APPS.PER_PROPOSAL_QUESTION_TYPES+
12.2.2
-
APPS.PER_QUESTION_TYPES_PKG SQL Statements
12.2.2
-
SYNONYM: PUBLIC.PER_PROPOSAL_QUESTION_TYPES
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PER_PROPOSAL_QUESTION_TYPES, status:VALID,
-
VIEW: APPS.PER_PROPOSAL_QUESTION_TYPES_V
12.1.1
-
SYNONYM: APPS.PER_PROPOSAL_QUESTION_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PER_PROPOSAL_QUESTION_TYPES, status:VALID,
-
SYNONYM: APPS.PER_PROPOSAL_QUESTION_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PER_PROPOSAL_QUESTION_TYPES, status:VALID,
-
VIEW: APPS.HRBV_PROPOSAL_QUESTION_TYPES_V
12.2.2
-
APPS.PER_QUESTION_TYPES_PKG SQL Statements
12.1.1
-
VIEW: HR.PER_PROPOSAL_QUESTION_TYPES#
12.2.2
-
TABLE: HR.PER_PROPOSAL_QUESTION_TYPES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_PROPOSAL_QUESTION_TYPES, object_name:PER_PROPOSAL_QUESTION_TYPES, status:VALID,
-
FUNCTION: APPS.PER_PROPOSAL_QUESTION_TYPES=
12.2.2
-
Table: PER_ASSIGN_PROPOSAL_ANSWERS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ASSIGN_PROPOSAL_ANSWERS, object_name:PER_ASSIGN_PROPOSAL_ANSWERS, status:VALID, product: PER - Human Resources , description: Web Candidate Offer Answers , implementation_dba_data: HR.PER_ASSIGN_PROPOSAL_ANSWERS ,
-
Table: PER_ASSIGN_PROPOSAL_ANSWERS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ASSIGN_PROPOSAL_ANSWERS, object_name:PER_ASSIGN_PROPOSAL_ANSWERS, status:VALID, product: PER - Human Resources , description: Web Candidate Offer Answers , implementation_dba_data: HR.PER_ASSIGN_PROPOSAL_ANSWERS ,
-
PACKAGE BODY: APPS.PER_QUESTION_TYPES_PKG
12.1.1
-
VIEW: APPS.HRBV_PROPOSAL_QUESTION_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, object_name:HRBV_PROPOSAL_QUESTION_TYPES_V, status:VALID,
-
FUNCTION: APPS.PER_PROPOSAL_QUESTION_TYPES=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:PER_PROPOSAL_QUESTION_TYPES=, status:VALID,
-
Table: PER_PROPOSAL_QUESTION_MEMBERS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_PROPOSAL_QUESTION_MEMBERS, object_name:PER_PROPOSAL_QUESTION_MEMBERS, status:VALID, product: PER - Human Resources , description: Web offer profile questions , implementation_dba_data: HR.PER_PROPOSAL_QUESTION_MEMBERS ,
-
TRIGGER: APPS.PER_PROPOSAL_QUESTION_TYPE_WHO
12.1.1
owner:APPS, object_type:TRIGGER, object_name:PER_PROPOSAL_QUESTION_TYPE_WHO, status:VALID,
-
View: PER_PROPOSAL_QUESTION_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PROPOSAL_QUESTION_TYPES_V, object_name:PER_PROPOSAL_QUESTION_TYPES_V, status:VALID, product: PER - Human Resources , description: HR Web Offer question types view , implementation_dba_data: APPS.PER_PROPOSAL_QUESTION_TYPES_V ,
-
TRIGGER: APPS.PER_PROPOSAL_QUESTION_TYPE_WHO
12.2.2
owner:APPS, object_type:TRIGGER, object_name:PER_PROPOSAL_QUESTION_TYPE_WHO, status:VALID,
-
PACKAGE BODY: APPS.PER_QUESTION_TYPES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PER_QUESTION_TYPES_PKG, status:VALID,
-
VIEW: APPS.HRBV_PROPOSAL_QUESTION_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:HRBV_PROPOSAL_QUESTION_TYPES_V, status:VALID,
-
PACKAGE BODY: APPS.PER_QUESTION_TYPES_PKG
12.2.2
-
Table: PER_PROPOSAL_QUESTION_MEMBERS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_PROPOSAL_QUESTION_MEMBERS, object_name:PER_PROPOSAL_QUESTION_MEMBERS, status:VALID, product: PER - Human Resources , description: Web offer profile questions , implementation_dba_data: HR.PER_PROPOSAL_QUESTION_MEMBERS ,
-
TRIGGER: APPS.PER_PROPOSAL_QUESTION_TYPE_WHO
12.1.1
-
PACKAGE BODY: APPS.PER_QUESTION_TYPES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PER_QUESTION_TYPES_PKG, status:VALID,
-
View: PER_PROPOSAL_QUESTION_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PROPOSAL_QUESTION_TYPES_V, object_name:PER_PROPOSAL_QUESTION_TYPES_V, status:VALID, product: PER - Human Resources , description: HR Web Offer question types view , implementation_dba_data: APPS.PER_PROPOSAL_QUESTION_TYPES_V ,
-
12.2.2 DBA Data
12.2.2
-
TRIGGER: APPS.PER_PROPOSAL_QUESTION_TYPE_WHO
12.2.2
-
TABLE: HR.PER_PROPOSAL_QUESTION_TYPES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_PROPOSAL_QUESTION_TYPES, object_name:PER_PROPOSAL_QUESTION_TYPES, status:VALID,
-
VIEW: APPS.PER_PROPOSAL_QUESTION_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PROPOSAL_QUESTION_TYPES_V, object_name:PER_PROPOSAL_QUESTION_TYPES_V, status:VALID,
-
VIEW: APPS.PER_PROPOSAL_QUESTION_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PROPOSAL_QUESTION_TYPES_V, object_name:PER_PROPOSAL_QUESTION_TYPES_V, status:VALID,
-
VIEW: APPS.HRBV_APPRAISAL_TEMPLATES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:HRBV_APPRAISAL_TEMPLATES_V, status:VALID,
-
VIEW: APPS.HRBV_APPRAISAL_TEMPLATES_V
12.2.2
owner:APPS, object_type:VIEW, object_name:HRBV_APPRAISAL_TEMPLATES_V, status:VALID,
-
TABLE: HR.PER_PROPOSAL_TEMPLATES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_PROPOSAL_TEMPLATES, object_name:PER_PROPOSAL_TEMPLATES, status:VALID,
-
TABLE: HR.PER_ASSIGN_PROPOSAL_ANSWERS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ASSIGN_PROPOSAL_ANSWERS, object_name:PER_ASSIGN_PROPOSAL_ANSWERS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
TABLE: HR.PER_ASSIGN_PROPOSAL_ANSWERS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ASSIGN_PROPOSAL_ANSWERS, object_name:PER_ASSIGN_PROPOSAL_ANSWERS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1