Search Results scheduled_date
Overview
The Oracle E-Business Suite view APPS.JAI_RCV_RGM_INSTALLMENT_V is a reporting and integration construct in the ETRM (Enterprise Tax and Receivables Management) family of objects, specifically associated with the localization functionality for Receiving and Returnable Goods Management (RGM). The view presents a summarized, installment-level picture of claim recoveries tied to receiving shipments. Its role is to aggregate amounts recorded in the underlying claims table so that scheduled installment data can be reported and consumed by downstream processes without requiring callers to perform their own GROUP BY aggregation.
Because the view pre-aggregates amounts, it typically serves as a read-only source for inquiries, dashboards, and integration interfaces that need to see how much is recoverable and how much has been claimed for a given shipment header, line, and scheduled installment. The naming convention (the JAI_ prefix) indicates it belongs to the Oracle EBS localization layer rather than the core Oracle Receiving schema.
Underlying Base Objects
Per the documented ETRM 12.2.2 metadata, the view is defined with the owner APPS and references a single documented base object: the synonym JAI_RCV_RGM_CLAIMS. The view text selects from this object, aliased as A:
SELECT shipment_header_id, shipment_line_id, installment_no, scheduled_date, NVL(SUM(a.installment_amount),0) recoverable_amount, NVL(SUM(a.claimed_amount),0) claimed_amount FROM jai_rcv_rgm_claims a GROUP BY shipment_header_id, shipment_line_id, installment_no, scheduled_date
The parenthesized synonym reference shown in the metadata (JAI_RCV_RGM_CLAIMS (SYNONYM)) indicates that callers resolve the underlying physical table through the APPS synonym layer. The grouping keys — shipment_header_id, shipment_line_id, installment_no, and scheduled_date — define the level of granularity at which recoverable and claimed amounts are rolled up.
Key Columns
SHIPMENT_HEADER_ID— Identifier of the receiving shipment header that the claim installment relates to; part of the grouping key.SHIPMENT_LINE_ID— Identifier of the specific shipment line; narrows the claim to a line-level entity.INSTALLMENT_NO— The installment sequence number, indicating which scheduled installment the aggregated amounts belong to.SCHEDULED_DATE— The date on which the installment is scheduled; a grouping key and the column most commonly used for date-range filtering and aging.RECOVERABLE_AMOUNT— The sum ofINSTALLMENT_AMOUNTacross matching claim rows, coalesced to zero viaNVL(...,0)so that null sums are never returned.CLAIMED_AMOUNT— The sum ofCLAIMED_AMOUNTacross matching claim rows, likewise coalesced to zero.
Common Use Cases and Queries
The view is most often queried when reconciling what has been scheduled against what has actually been claimed for a shipment. A typical query filters on the scheduled date to isolate an accounting or reporting period:
SELECT shipment_header_id, shipment_line_id, installment_no, scheduled_date, recoverable_amount, claimed_amount FROM apps.jai_rcv_rgm_installment_v WHERE scheduled_date BETWEEN :p_from AND :p_to ORDER BY scheduled_date;- To identify outstanding balances, compare the two aggregated measures:
... WHERE recoverable_amount > claimed_amount. - To drill into a single shipment line:
... WHERE shipment_header_id = :p_header AND shipment_line_id = :p_line.
Because the view already groups by installment number and schedule date, it is suitable for aging reports, installment schedules, and integration extracts that feed downstream recovery or reconciliation programs. Filters on SCHEDULED_DATE, header, or line identifiers are the most efficient access paths given the view's GROUP BY structure.
-
VIEW: APPS.JAI_RCV_RGM_INSTALLMENT_V
12.2.2
-
APPS.AHL_LTP_MATRL_AVAL_PVT SQL Statements
12.1.1
-
VIEW: ENG.ENG_CURRENT_SCHEDULED_DATES#
12.2.2
-
VIEW: APPS.AHL_VISIT_TASK_MATRL_V
12.1.1
-
VIEW: APPS.JAI_RCV_RGM_INSTALLMENT_V
12.1.1
-
View: JAI_RCV_RGM_INSTALLMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_RCV_RGM_INSTALLMENT_V, object_name:JAI_RCV_RGM_INSTALLMENT_V, status:VALID, product: JA - Asia/Pacific Localizations , implementation_dba_data: APPS.JAI_RCV_RGM_INSTALLMENT_V ,
-
VIEW: APPS.AHL_VISIT_TASK_MATRL_V
12.2.2
-
VIEW: ENG.ENG_CHANGE_LINES#
12.2.2
-
View: JAI_RCV_RGM_INSTALLMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_RCV_RGM_INSTALLMENT_V, object_name:JAI_RCV_RGM_INSTALLMENT_V, status:VALID, product: JA - Asia/Pacific Localizations , implementation_dba_data: APPS.JAI_RCV_RGM_INSTALLMENT_V ,
-
VIEW: JA.JAI_RCV_RGM_CLAIMS#
12.2.2
-
VIEW: ENG.ENG_CHANGE_LINES_INTERFACE#
12.2.2
-
APPS.AHL_LTP_MATRL_AVAL_PVT SQL Statements
12.2.2
-
VIEW: MSD.MSD_BOOKING_DATA#
12.2.2
-
VIEW: AMS.AMS_DM_SCORES_ALL_B#
12.2.2
-
VIEW: AMS.AMS_DM_MODELS_ALL_B#
12.2.2
-
VIEW: AHL.AHL_WO_OPERATIONS_TXNS#
12.2.2
-
VIEW: AHL.AHL_SCHEDULE_MATERIALS#
12.2.2
-
VIEW: GMD.GMD_SS_TIME_POINTS#
12.2.2
-
VIEW: MSD.MSD_ST_BOOKING_DATA#
12.2.2
-
VIEW: OSM.AS_COLLATERAL_REQ_ALL#
12.2.2
-
VIEW: APPS.GMD_QM_E_TIMEPOINTS_V
12.1.1
-
VIEW: APPS.GMD_QM_E_TIMEPOINTS_V
12.2.2
-
View: GMD_QM_E_TIMEPOINTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_QM_E_TIMEPOINTS_V, object_name:GMD_QM_E_TIMEPOINTS_V, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM Quality Timepoint ERES View , implementation_dba_data: APPS.GMD_QM_E_TIMEPOINTS_V ,
-
View: GMD_QM_E_TIMEPOINTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_QM_E_TIMEPOINTS_V, object_name:GMD_QM_E_TIMEPOINTS_V, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM Quality Timepoint ERES View , implementation_dba_data: APPS.GMD_QM_E_TIMEPOINTS_V ,
-
View: GMP_SR_SHIPMENT_DATA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_SR_SHIPMENT_DATA_V, object_name:GMP_SR_SHIPMENT_DATA_V, status:VALID, product: GMP - Process Manufacturing Process Planning , implementation_dba_data: APPS.GMP_SR_SHIPMENT_DATA_V ,
-
View: GMP_SR_BOOKING_DATA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_SR_BOOKING_DATA_V, object_name:GMP_SR_BOOKING_DATA_V, status:VALID, product: GMP - Process Manufacturing Process Planning , implementation_dba_data: APPS.GMP_SR_BOOKING_DATA_V ,
-
VIEW: ENG.ENG_REVISED_ITEMS_INTERFACE#
12.2.2
-
View: GMP_SR_BOOKING_DATA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_SR_BOOKING_DATA_V, object_name:GMP_SR_BOOKING_DATA_V, status:VALID, product: GMP - Process Manufacturing Process Planning , description: OPM Orders Booking data - Demand Planner , implementation_dba_data: APPS.GMP_SR_BOOKING_DATA_V ,
-
View: GMP_SR_SHIPMENT_DATA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_SR_SHIPMENT_DATA_V, object_name:GMP_SR_SHIPMENT_DATA_V, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Shipment data view for Demand Planner , implementation_dba_data: APPS.GMP_SR_SHIPMENT_DATA_V ,
-
TABLE: ENG.MLOG$_ENG_REVISED_ITEMS
12.2.2
owner:ENG, object_type:TABLE, object_name:MLOG$_ENG_REVISED_ITEMS, status:VALID,
-
VIEW: APPS.MSD_SR_CMRO_PLAN_HIST_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSD_SR_CMRO_PLAN_HIST_V, status:VALID,
-
VIEW: APPS.MSD_SR_CMRO_FIRM_MTLREQ_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MSD_SR_CMRO_FIRM_MTLREQ_V, status:VALID,
-
VIEW: APPS.JAI_RCV_RGM_INSTALLMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_RCV_RGM_INSTALLMENT_V, object_name:JAI_RCV_RGM_INSTALLMENT_V, status:VALID,
-
VIEW: APPS.JAI_RCV_RGM_INSTALLMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_RCV_RGM_INSTALLMENT_V, object_name:JAI_RCV_RGM_INSTALLMENT_V, status:VALID,
-
View: AHL_VISIT_TASK_MATRL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_VISIT_TASK_MATRL_V, object_name:AHL_VISIT_TASK_MATRL_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve Work flow nformation , implementation_dba_data: APPS.AHL_VISIT_TASK_MATRL_V ,
-
VIEW: APPS.MSD_SR_CMRO_PLAN_HIST_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MSD_SR_CMRO_PLAN_HIST_V, status:VALID,
-
TABLE: ENG.MLOG$_ENG_REVISED_ITEMS
12.1.1
owner:ENG, object_type:TABLE, object_name:MLOG$_ENG_REVISED_ITEMS, status:VALID,
-
VIEW: ENG.ENG_REVISED_ITEMS#
12.2.2
-
VIEW: APPS.MSD_SR_CMRO_UNPLAN_HIST_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MSD_SR_CMRO_UNPLAN_HIST_V, status:VALID,
-
VIEW: APPS.MSD_SR_CMRO_UNPLAN_HIST_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSD_SR_CMRO_UNPLAN_HIST_V, status:VALID,
-
VIEW: APPS.GMD_QM_E_TIMEPOINTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_QM_E_TIMEPOINTS_V, object_name:GMD_QM_E_TIMEPOINTS_V, status:VALID,
-
VIEW: ENG.ENG_CURRENT_SCHEDULED_DATES#
12.2.2
owner:ENG, object_type:VIEW, object_name:ENG_CURRENT_SCHEDULED_DATES#, status:VALID,
-
VIEW: APPS.GMD_QM_E_TIMEPOINTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_QM_E_TIMEPOINTS_V, object_name:GMD_QM_E_TIMEPOINTS_V, status:VALID,
-
View: AS_COLLATERAL_REQ
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_COLLATERAL_REQ, object_name:AS_COLLATERAL_REQ, status:VALID, product: AS - Sales Foundation , description: Collateral requests (multi-org) , implementation_dba_data: APPS.AS_COLLATERAL_REQ ,
-
View: AHL_VISIT_TASK_MATRL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_VISIT_TASK_MATRL_V, object_name:AHL_VISIT_TASK_MATRL_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve Work flow nformation , implementation_dba_data: APPS.AHL_VISIT_TASK_MATRL_V ,
-
VIEW: APPS.AHL_MATERIAL_REQUIREMENTS_V
12.1.1
-
VIEW: APPS.PJM_PROJECT_PROJ_LS_DAILY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_PROJ_LS_DAILY_V, object_name:PJM_PROJECT_PROJ_LS_DAILY_V, status:VALID,
-
VIEW: APPS.PJM_PROJECT_PROJ_LS_WEEKLY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_PROJ_LS_WEEKLY_V, object_name:PJM_PROJECT_PROJ_LS_WEEKLY_V, status:VALID,
-
VIEW: APPS.PJM_PROJECT_PROJ_LS_DAILY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_PROJ_LS_DAILY_V, object_name:PJM_PROJECT_PROJ_LS_DAILY_V, status:VALID,
-
VIEW: APPS.PJM_PROJECT_PROJ_LS_WEEKLY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_PROJ_LS_WEEKLY_V, object_name:PJM_PROJECT_PROJ_LS_WEEKLY_V, status:VALID,