DBA Data[Home] [Help]

APPS.CSR_COSTS_PKG dependencies on CSR_COSTS_VL

Line 14: Insert, update, delete or lock tables belonging to view CSR_COSTS_VL:

10: CSR_COSTS_PKG
11:
12: Purpose
13: -------
14: Insert, update, delete or lock tables belonging to view CSR_COSTS_VL:
15: - base table CSR_COSTS_ALL_B, and
16: - translation table CSR_COSTS_ALL_TL.
17: Restore data integrity to a corrupted base/translation pair.
18:

Line 62: from csr_costs_vl

58: is
59: cursor c_cost ( p_cost_id number )
60: is
61: select row_id
62: from csr_costs_vl
63: where cost_id = p_cost_id;
64:
65: begin
66:

Line 216: from csr_costs_vl

212: is
213: cursor c_cost
214: is
215: select *
216: from csr_costs_vl
217: where cost_id = p_cost_id
218: for update nowait;
219:
220: l_rec c_cost%rowtype;