DBA Data[Home] [Help]

APPS.OPI_DBI_BOUNDS_PKG dependencies on FND_MESSAGE

Line 198: FND_MESSAGE.SET_NAME('INV','OPI_DBI_INIT_LOAD_NOT_RUN');

194: opi_dbi_bounds_pkg.write(g_pkg_name, l_proc_name, l_stmt_no, l_debug_msg);
195: END IF;
196:
197: else /* Initial Load is not run prior to Incr Load failed */
198: FND_MESSAGE.SET_NAME('INV','OPI_DBI_INIT_LOAD_NOT_RUN');
199: RAISE INIT_LOAD_NOT_RUN;
200: end if;
201:
202: else /* This is not the first time incremental load */

Line 307: l_debug_msg := FND_MESSAGE.GET;

303:
304: EXCEPTION
305: WHEN INIT_LOAD_NOT_RUN THEN
306: IF l_debug_mode = 'Y' AND upper(l_module_name) like 'BIS%' THEN
307: l_debug_msg := FND_MESSAGE.GET;
308: opi_dbi_bounds_pkg.write(g_pkg_name, l_proc_name, l_stmt_no, l_debug_msg);
309: END IF;
310: RAISE;
311:

Line 606: FND_MESSAGE.SET_NAME('INV','OPI_DBI_INV_LOAD_NOT_RUN');

602: /* if etl_type is cycle count and inv load is not run then error out */
603:
604: if (p_etl_type = 'CYCLE_COUNT' and l_inv_count = 0) then
605: /* Error msg for init load not run prior to incr load */
606: FND_MESSAGE.SET_NAME('INV','OPI_DBI_INV_LOAD_NOT_RUN');
607: RAISE INV_LOAD_NOT_RUN;
608: end if;
609:
610: -- cycle count uses the same bounds as Inventory hence for cycle count get

Line 850: l_debug_msg := FND_MESSAGE.GET;

846: RAISE;
847:
848: WHEN INV_LOAD_NOT_RUN THEN
849: IF l_debug_mode = 'Y' AND upper(l_module_name) like 'BIS%' THEN
850: l_debug_msg := FND_MESSAGE.GET;
851: opi_dbi_bounds_pkg.write(g_pkg_name, l_proc_name, l_stmt_no, l_debug_msg);
852: END IF;
853: RAISE;
854: