Search Results confirmed_ind
Overview
APPS.IGS_RE_THS_PNL_MBR_V is a reporting view within the Oracle E-Business Suite (EBS) Release 12.1.1 and 12.2.2 environment, belonging to the Oracle Student System / Records and Enrollment module. The view exposes thesis panel member data held in the base table IGS_RE_THS_PNL_MBR, enriched with party identification information from the Trading Community Architecture (TCA) table HZ_PARTIES. It presents, for each thesis panel member, the person's party number, panel member type, confirmation and decline status flags and dates, anonymity indicator, thesis result code, payment date, and audit columns. The view plays a supporting role in reporting and integration flows where downstream consumers require a denormalised, ready-to-query representation of panel membership rather than the raw base table. Because it joins to HZ_PARTIES, the view provides the PARTY_NUMBER attribute, which is the standard external identifier used across Oracle Applications for a person or organisation party.
Underlying Base Objects
The view is defined over two documented source objects: IGS_RE_THS_PNL_MBR (aliased TPM) and HZ_PARTIES (aliased PE). The join is an inner join on the person identifier: TPM.PERSON_ID = PE.PARTY_ID, meaning only thesis panel member rows whose PERSON_ID resolves to an existing HZ_PARTIES record are returned. The view selects TPM.ROWID as ROW_ID, which preserves a pseudo-column handle back to the driving table row for update or identification purposes. ETRM documentation for this object lists no further referenced base objects beyond these two tables. No analytic functions, aggregations, or GROUP BY clauses are present; the view is a straightforward projection with one DECODE-based derivation per status flag.
Key Columns
- ROW_ID — the ROWID of the underlying IGS_RE_THS_PNL_MBR row.
- CA_PERSON_ID, CA_SEQUENCE_NUMBER — identifiers linking the panel member to the applicant/person assignment context.
- THE_SEQUENCE_NUMBER — the thesis sequence identifier for the panel on which the person sits.
- PERSON_ID, PARTY_NUMBER — TPM.PERSON_ID joined to the HZ_PARTIES party number.
- PANEL_MEMBER_TYPE — classification of the member's role on the thesis panel.
- CONFIRMED_IND — derived value: DECODE(NVL(CONFIRMED_DT, SYSDATE), SYSDATE, 'N', 'Y'). Returns 'Y' when a confirmation date exists, 'N' when it is null.
- CONFIRMED_DT — the date on which the member confirmed participation.
- DECLINED_IND — derived: DECODE(NVL(DECLINED_DT, SYSDATE), SYSDATE, 'N', 'Y'), returning 'Y' when a decline date is present.
- DECLINED_DT — the date the member declined.
- ANONYMITY_IND, THESIS_RESULT_CD, PAID_DT, TRACKING_ID — anonymity flag, thesis outcome code, payment date, and tracking reference.
- RECOMMENDATION_SUMMARY — the panel member's recommendation text.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard audit columns.
Common Use Cases and Queries
The view is typically queried to report confirmed versus outstanding panel members, or to reconcile panel invitations and payment status. Filtering on the derived CONFIRMED_IND is the most frequent access pattern, since that column is the one most often searched by name.
List all confirmed members for a thesis panel:
SELECT party_number, panel_member_type, confirmed_dt
FROM apps.igs_re_ths_pnl_mbr_v
WHERE the_sequence_number = :p_thesis_seq
AND confirmed_ind = 'Y';
Identify members who have neither confirmed nor declined, i.e. outstanding invitations:
SELECT party_number, panel_member_type, recommendation_summary
FROM apps.igs_re_ths_pnl_mbr_v
WHERE confirmed_ind = 'N' AND declined_ind = 'N';
Report members awaiting payment:
SELECT party_number, the_sequence_number, paid_dt
FROM apps.igs_re_ths_pnl_mbr_v
WHERE paid_dt IS NULL
ORDER BY the_sequence_number;
Because CONFIRMED_IND and DECLINED_IND are derived at runtime by DECODE rather than stored, queries cannot use an index on those columns, and the SYSDATE comparison means the value is evaluated at execution time. Users should therefore treat these flags as computed statuses and reference the underlying CONFIRMED_DT and DECLINED_DT columns when precise date predicates are required.
-
VIEW: APPS.IGS_RE_THS_PNL_MBR_V
12.1.1
-
View: IGS_RE_THS_PNL_MBR_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_RE_THS_PNL_MBR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_RE_THS_PNL_MBR_V, object_name:IGS_RE_THS_PNL_MBR_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_RE_THS_PNL_MBR_V ,
-
VIEW: APPS.IGS_RE_THS_PNL_MBR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_RE_THS_PNL_MBR_V, object_name:IGS_RE_THS_PNL_MBR_V, status:VALID,
-
VIEW: APPS.IGS_PS_FAC_ASG_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_FAC_ASG_TASK_V, object_name:IGS_PS_FAC_ASG_TASK_V, status:VALID,
-
View: IGS_PS_FAC_ASG_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_FAC_ASG_TASK_V, object_name:IGS_PS_FAC_ASG_TASK_V, status:VALID, product: IGS - Student System , description: This view stores assigned task for the faculty. , implementation_dba_data: APPS.IGS_PS_FAC_ASG_TASK_V ,
-
View: IGS_PS_FAC_ASG_TASK_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view stores assigned task for the faculty. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_PS_FAC_ASG_TASK
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_FAC_ASG_TASK, object_name:IGS_PS_FAC_ASG_TASK, status:VALID,
-
APPS.IGS_PS_FAC_ASG_TASK_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_FAC_ASG_TASK_PKG
12.1.1
-
APPS.IGS_PS_FAC_ASG_TASK_PKG dependencies on IGS_PS_FAC_ASG_TASK
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,