DBA Data[Home] [Help]

APPS.OZF_CHARGEBACK_PVT dependencies on OZF_SYS_PARAMETERS_ALL

Line 230: -- FROM ozf_sys_parameters_all;

226:
227: CURSOR end_cust_relation_flag_csr IS
228: SELECT end_cust_relation_flag
229: -- BUG 4992408 (+)
230: -- FROM ozf_sys_parameters_all;
231: FROM ozf_sys_parameters;
232: -- BUG 4992408 (-)
233:
234: l_end_cust_relation_flag VARCHAR2(30);

Line 288: FROM ozf_sys_parameters_all ospa,

284: --Bug# 8632964 fixed by anuj and muthu (+)
285: CURSOR sysparam_accrual_flag_csr (p_resale_batch_id IN NUMBER)
286: IS
287: SELECT NVL(ospa.ship_debit_accrual_flag, 'F')
288: FROM ozf_sys_parameters_all ospa,
289: ozf_resale_batches_all orba
290: WHERE ospa.org_id = orba.org_id
291: AND orba.resale_batch_id = p_resale_batch_id;
292: