Search Results lending_task_number
Overview
APPS.PJM_BORROW_PAYBACK_SUMMARY_V is a reporting view in the Oracle EBS Projects and Cost Management modules that consolidates borrow and payback activity between lending and borrowing project/task combinations. It aggregates outstanding quantities recorded in the PJM_BORROW_TRANSACTIONS table and presents them alongside project, task, cost group, and aging bucket information derived from the transaction loan dates. The view is primarily used in the context of inter-project material transfers, where one project borrows inventory from another and later returns (pays back) the borrowed quantity.
The view's central purpose is to summarize outstanding borrow quantities grouped by organization, inventory item, revision, borrowing and lending project/task, and the cost groups assigned to each side of the transaction. It also computes aging indicators based on the difference between the system date and the loan date, divided by the package-level BUCKET_SIZE constant defined in PJM_BORROW_PAYBACK. This provides a bucketed view of how long borrowed inventory has remained outstanding, which supports cost allocation, reconciliation, and payback prioritization reporting.
Underlying Base Objects
According to the documented ETRM metadata, the view references the following base objects:
- CST_COST_GROUPS (SYNONYM) — joined twice, as CG1 and CG2, to resolve the cost group for the borrowing project and the lending project respectively.
- PJM_BORROW_TRANSACTIONS (SYNONYM) — the primary transactional source (aliased PBT) supplying outstanding quantities, loan dates, item, revision, organization, and project/task identifiers.
- PJM_PROJECT_PARAMETERS (SYNONYM) — joined twice (PP1 and PP2) to link the borrowing and lending projects to their costing group assignments.
- PJM_PROJECT (PACKAGE) — supplies the ALL_PROJ_IDTONUM, ALL_PROJ_IDTONAME, ALL_TASK_IDTONUM, and ALL_TASK_IDTONAME functions used to translate internal project and task IDs into descriptive numbers and names.
- PJM_BORROW_PAYBACK (PACKAGE) — provides the BUCKET_SIZE constant used in the aging calculations.
The join logic requires that both the borrowing and lending project parameters match at the same organization ID as the borrow transaction, and cost groups are resolved using NVL(PP.COSTING_GROUP_ID, 1), defaulting to cost group ID 1 when no explicit costing group is assigned.
Key Columns
- ORGANIZATION_ID — the inventory organization in which the borrow transaction occurred.
- INVENTORY_ITEM_ID and REVISION — the item and revision being borrowed.
- BORROW_PROJECT_ID / BORROW_TASK_ID — internal identifiers for the borrowing project and task, alongside their translated project number and name (via PJM_PROJECT functions) and the associated cost group (CG1.COST_GROUP_ID, CG1.COST_GROUP).
- LENDING_PROJECT_ID / LENDING_TASK_ID — corresponding identifiers, translated names, and cost group (CG2) for the lending side.
- SUM(OUTSTANDING_QUANTITY) — the aggregated quantity still not paid back.
- Four aging bucket columns — SUM expressions using TRUNC((SYSDATE - LOAN_DATE - 1) / BUCKET_SIZE) to classify outstanding quantities into buckets prior to bucket 1, exactly bucket 1, exactly bucket 2, and beyond bucket 2.
Common Use Cases and Queries
Because the user searched for "cost_group," the most relevant use cases involve reporting outstanding borrow balances broken down by the cost groups of the borrowing and lending projects. Typical queries include cost group verification for inter-project borrow reconciliation, identifying aged outstanding borrow quantities per cost group, and driving payback processing.
Sample query by cost group:
SELECT organization_id, inventory_item_id, borrow_project_id, lending_project_id, cost_group_id, cost_group, SUM(outstanding_quantity) FROM apps.pjm_borrow_payback_summary_v GROUP BY organization_id, inventory_item_id, borrow_project_id, lending_project_id, cost_group_id, cost_group;
A second common pattern filters by a specific cost group or project to review aging: SELECT borrow_project_id, lending_project_id, cost_group, outstanding_quantity, aging_bucket_1 FROM apps.pjm_borrow_payback_summary_v WHERE cost_group = :p_cost_group;
The view is typically consumed by custom reports, cost accountants reconciling inter-project borrow activity, and integration routines feeding downstream cost allocation or inventory valuation processes.
-
VIEW: APPS.PJM_BORROW_PAYBACK_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_BORROW_PAYBACK_SUMMARY_V, object_name:PJM_BORROW_PAYBACK_SUMMARY_V, status:VALID,
-
VIEW: APPS.MSC_FLP_END_DEMAND2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_END_DEMAND2_V, object_name:MSC_FLP_END_DEMAND2_V, status:VALID,
-
VIEW: APPS.PJM_BORROW_PAYBACK_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_BORROW_PAYBACK_SUMMARY_V, object_name:PJM_BORROW_PAYBACK_SUMMARY_V, status:VALID,
-
VIEW: APPS.MSC_FLP_END_DEMAND2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_END_DEMAND2_V, object_name:MSC_FLP_END_DEMAND2_V, status:VALID,
-
VIEW: APPS.MSC_FLP_END_DEMAND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_END_DEMAND_V, object_name:MSC_FLP_END_DEMAND_V, status:VALID,
-
VIEW: APPS.MRP_FLP_END_DEMAND2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FLP_END_DEMAND2_V, object_name:MRP_FLP_END_DEMAND2_V, status:VALID,
-
VIEW: APPS.MRPFV_PLAN_DEMANDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_DEMANDS, object_name:MRPFV_PLAN_DEMANDS, status:VALID,
-
VIEW: APPS.MSC_FLP_END_DEMAND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_END_DEMAND_V, object_name:MSC_FLP_END_DEMAND_V, status:VALID,
-
VIEW: APPS.MRP_FLP_END_DEMAND2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FLP_END_DEMAND2_V, object_name:MRP_FLP_END_DEMAND2_V, status:VALID,
-
VIEW: APPS.MRPFV_PLAN_DEMANDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_DEMANDS, object_name:MRPFV_PLAN_DEMANDS, status:VALID,
-
VIEW: APPS.MRP_FLP_SUPPLY_DEMAND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FLP_SUPPLY_DEMAND_V, object_name:MRP_FLP_SUPPLY_DEMAND_V, status:VALID,
-
VIEW: APPS.MRP_FLP_END_DEMAND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FLP_END_DEMAND_V, object_name:MRP_FLP_END_DEMAND_V, status:VALID,
-
VIEW: APPS.MSC_FLP_SUPPLY_DEMAND_ATP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_SUPPLY_DEMAND_ATP_V, object_name:MSC_FLP_SUPPLY_DEMAND_ATP_V, status:VALID,
-
VIEW: APPS.MSC_FLP_SUPPLY_DEMAND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_SUPPLY_DEMAND_V, object_name:MSC_FLP_SUPPLY_DEMAND_V, status:VALID,
-
VIEW: APPS.MSC_FLP_SUPPLY_DEMAND_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_SUPPLY_DEMAND_V2, object_name:MSC_FLP_SUPPLY_DEMAND_V2, status:VALID,
-
VIEW: APPS.MSC_FLP_SUPPLY_DEMAND_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_SUPPLY_DEMAND_V2, object_name:MSC_FLP_SUPPLY_DEMAND_V2, status:VALID,
-
View: MSC_FLP_END_DEMAND2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_END_DEMAND2_V, object_name:MSC_FLP_END_DEMAND2_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_FLP_END_DEMAND2_V ,
-
VIEW: APPS.MSC_FLP_SUPPLY_DEMAND_ATP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_SUPPLY_DEMAND_ATP_V, object_name:MSC_FLP_SUPPLY_DEMAND_ATP_V, status:VALID,
-
View: MSC_FLP_END_DEMAND2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_END_DEMAND2_V, object_name:MSC_FLP_END_DEMAND2_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_FLP_END_DEMAND2_V ,
-
VIEW: APPS.MRP_FLP_END_DEMAND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FLP_END_DEMAND_V, object_name:MRP_FLP_END_DEMAND_V, status:VALID,
-
VIEW: APPS.MRP_FLP_SUPPLY_DEMAND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FLP_SUPPLY_DEMAND_V, object_name:MRP_FLP_SUPPLY_DEMAND_V, status:VALID,
-
VIEW: APPS.MSC_FLP_SUPPLY_DEMAND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_SUPPLY_DEMAND_V, object_name:MSC_FLP_SUPPLY_DEMAND_V, status:VALID,
-
View: MSC_FLP_END_DEMAND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_END_DEMAND_V, object_name:MSC_FLP_END_DEMAND_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_FLP_END_DEMAND_V ,
-
View: MSC_FLP_END_DEMAND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_END_DEMAND_V, object_name:MSC_FLP_END_DEMAND_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_FLP_END_DEMAND_V ,
-
VIEW: APPS.MRP_FLP_SUPPLY_DEMAND_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FLP_SUPPLY_DEMAND_V2, object_name:MRP_FLP_SUPPLY_DEMAND_V2, status:VALID,
-
View: MRP_FLP_END_DEMAND2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FLP_END_DEMAND2_V, object_name:MRP_FLP_END_DEMAND2_V, status:VALID, product: MRP - Master Scheduling/MRP , description: View of demand information , implementation_dba_data: APPS.MRP_FLP_END_DEMAND2_V ,
-
View: MRP_FLP_END_DEMAND2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FLP_END_DEMAND2_V, object_name:MRP_FLP_END_DEMAND2_V, status:VALID, product: MRP - Master Scheduling/MRP , description: View of demand information , implementation_dba_data: APPS.MRP_FLP_END_DEMAND2_V ,
-
VIEW: APPS.MRP_ORDERS_SC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_ORDERS_SC_V, object_name:MRP_ORDERS_SC_V, status:VALID,
-
VIEW: APPS.MRP_ORDERS_SC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_ORDERS_SC_V, object_name:MRP_ORDERS_SC_V, status:VALID,
-
View: PJM_BORROW_PAYBACK_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_BORROW_PAYBACK_SUMMARY_V, object_name:PJM_BORROW_PAYBACK_SUMMARY_V, status:VALID, product: PJM - Project Manufacturing , description: Inter-project borrow/payback summary view , implementation_dba_data: APPS.PJM_BORROW_PAYBACK_SUMMARY_V ,
-
View: PJM_BORROW_PAYBACK_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_BORROW_PAYBACK_SUMMARY_V, object_name:PJM_BORROW_PAYBACK_SUMMARY_V, status:VALID, product: PJM - Project Manufacturing , description: Inter-project borrow/payback summary view , implementation_dba_data: APPS.PJM_BORROW_PAYBACK_SUMMARY_V ,
-
VIEW: APPS.MRP_FLP_SUPPLY_DEMAND_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FLP_SUPPLY_DEMAND_V2, object_name:MRP_FLP_SUPPLY_DEMAND_V2, status:VALID,
-
View: MRP_FLP_END_DEMAND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FLP_END_DEMAND_V, object_name:MRP_FLP_END_DEMAND_V, status:VALID, product: MRP - Master Scheduling/MRP , description: View of demand information for end assemblies , implementation_dba_data: APPS.MRP_FLP_END_DEMAND_V ,
-
View: MRPFV_PLAN_DEMANDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_DEMANDS, object_name:MRPFV_PLAN_DEMANDS, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_PLAN_DEMANDS ,
-
View: MRPFV_PLAN_DEMANDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_DEMANDS, object_name:MRPFV_PLAN_DEMANDS, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_PLAN_DEMANDS ,
-
View: MRP_FLP_END_DEMAND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FLP_END_DEMAND_V, object_name:MRP_FLP_END_DEMAND_V, status:VALID, product: MRP - Master Scheduling/MRP , description: View of demand information for end assemblies , implementation_dba_data: APPS.MRP_FLP_END_DEMAND_V ,
-
VIEW: APPS.MSC_PEGGING_DEMAND_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_PEGGING_DEMAND_V, status:VALID,
-
VIEW: APPS.MSC_ORDERS_RP_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_ORDERS_RP_V, status:VALID,
-
VIEW: APPS.MSC_ORDERS_DRP_COL_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MSC_ORDERS_DRP_COL_V, status:VALID,
-
VIEW: APPS.MSC_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ORDERS_V, object_name:MSC_ORDERS_V, status:VALID,
-
View: MSC_FLP_SUPPLY_DEMAND_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_SUPPLY_DEMAND_V2, object_name:MSC_FLP_SUPPLY_DEMAND_V2, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_FLP_SUPPLY_DEMAND_V2 ,
-
VIEW: APPS.MSC_ORDERS_DRP_COL_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_ORDERS_DRP_COL_V, status:VALID,
-
VIEW: APPS.MSC_PEGGING_SUPPLY_V3
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_PEGGING_SUPPLY_V3, status:VALID,
-
VIEW: APPS.MSC_ORDERS_DRP_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MSC_ORDERS_DRP_V, status:VALID,
-
VIEW: APPS.MSC_ORDERS_COL_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MSC_ORDERS_COL_V, status:VALID,
-
VIEW: APPS.MSC_PEGGING_DEMAND_V2
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_PEGGING_DEMAND_V2, status:VALID,
-
VIEW: APPS.MSC_PEGGING_SUPPLY_V2
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_PEGGING_SUPPLY_V2, status:VALID,
-
VIEW: APPS.MSC_ORDERS_DRP_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_ORDERS_DRP_V, status:VALID,
-
VIEW: APPS.MSC_ORDERS_COL_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_ORDERS_COL_V, status:VALID,
-
VIEW: APPS.MSC_PEGGING_SUPPLY_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_PEGGING_SUPPLY_V, status:VALID,