DBA Data[Home] [Help]

APPS.PN_PURGE_INTERFACE_PKG dependencies on APP_EXCEPTION

Line 35: APP_EXCEPTION.raise_exception;

31: BEGIN
32: delete_locations(p_batch_name);
33: EXCEPTION
34: when OTHERS then
35: APP_EXCEPTION.raise_exception;
36: END;
37:
38: ELSIF (function_flag = 'S') then
39: BEGIN

Line 43: APP_EXCEPTION.raise_exception;

39: BEGIN
40: delete_space_allocations(p_batch_name);
41: EXCEPTION
42: when OTHERS then
43: APP_EXCEPTION.raise_exception;
44: END;
45:
46: ELSIF (function_flag = 'A') then
47: BEGIN

Line 53: APP_EXCEPTION.raise_exception;

49: pnp_debug_pkg.put_log_msg('=======================================================');
50: delete_space_allocations(p_batch_name);
51: EXCEPTION
52: when OTHERS then
53: APP_EXCEPTION.raise_exception;
54: END;
55:
56: END IF;
57: