DBA Data[Home] [Help]

APPS.PO_CUSTOM_MULTIMOD_VAL_PVT dependencies on PO_LOG

Line 10: PO_LOG.get_package_base('PO_CUSTOM_MULTIMOD_VAL_PVT');

6: ---------------------------------------------------------------------------
7:
8: -- The module base for this package.
9: D_PACKAGE_BASE CONSTANT VARCHAR2(50) :=
10: PO_LOG.get_package_base('PO_CUSTOM_MULTIMOD_VAL_PVT');
11:
12: -- The module base for the subprogram.
13: D_generate_custom_exceptions CONSTANT VARCHAR2(100) :=
14: PO_LOG.get_subprogram_base(D_PACKAGE_BASE,'generate_custom_exceptions');

Line 14: PO_LOG.get_subprogram_base(D_PACKAGE_BASE,'generate_custom_exceptions');

10: PO_LOG.get_package_base('PO_CUSTOM_MULTIMOD_VAL_PVT');
11:
12: -- The module base for the subprogram.
13: D_generate_custom_exceptions CONSTANT VARCHAR2(100) :=
14: PO_LOG.get_subprogram_base(D_PACKAGE_BASE,'generate_custom_exceptions');
15:
16: -------------------------------------------------------------------------------
17: --Start of Comments
18: --Name: generate_custom_exceptions

Line 48: d_stmt CONSTANT BOOLEAN := PO_LOG.d_stmt;

44: IS
45: l_results_count NUMBER;
46: d_mod CONSTANT VARCHAR2(100) := D_generate_custom_exceptions;
47: d_position NUMBER := 0;
48: d_stmt CONSTANT BOOLEAN := PO_LOG.d_stmt;
49:
50: BEGIN
51:
52: IF PO_LOG.d_proc THEN

Line 52: IF PO_LOG.d_proc THEN

48: d_stmt CONSTANT BOOLEAN := PO_LOG.d_stmt;
49:
50: BEGIN
51:
52: IF PO_LOG.d_proc THEN
53: -- PO_LOG.proc_begin(d_mod,'p_name_value_pair',p_name_value_pair);
54: PO_LOG.proc_begin(d_mod,'x_result_type',x_result_type);
55: END IF;
56:

Line 53: -- PO_LOG.proc_begin(d_mod,'p_name_value_pair',p_name_value_pair);

49:
50: BEGIN
51:
52: IF PO_LOG.d_proc THEN
53: -- PO_LOG.proc_begin(d_mod,'p_name_value_pair',p_name_value_pair);
54: PO_LOG.proc_begin(d_mod,'x_result_type',x_result_type);
55: END IF;
56:
57: IF (x_results IS NULL) THEN

Line 54: PO_LOG.proc_begin(d_mod,'x_result_type',x_result_type);

50: BEGIN
51:
52: IF PO_LOG.d_proc THEN
53: -- PO_LOG.proc_begin(d_mod,'p_name_value_pair',p_name_value_pair);
54: PO_LOG.proc_begin(d_mod,'x_result_type',x_result_type);
55: END IF;
56:
57: IF (x_results IS NULL) THEN
58: x_results := PO_MULTI_MOD_VAL_RESULTS_TYPE.new_instance();

Line 63: PO_LOG.stmt(d_mod,d_position,'l_results_count',l_results_count);

59: END IF;
60:
61: l_results_count := x_results.result_type.COUNT;
62: IF d_stmt THEN
63: PO_LOG.stmt(d_mod,d_position,'l_results_count',l_results_count);
64: END IF;
65:
66: d_position := 10;
67:

Line 106: IF PO_LOG.d_proc THEN

102: ELSE
103: x_result_type := c_result_type_SUCCESS;
104: END IF;
105:
106: IF PO_LOG.d_proc THEN
107: PO_LOG.proc_end(d_mod,'x_result_type',x_result_type);
108: END IF;
109:
110: EXCEPTION

Line 107: PO_LOG.proc_end(d_mod,'x_result_type',x_result_type);

103: x_result_type := c_result_type_SUCCESS;
104: END IF;
105:
106: IF PO_LOG.d_proc THEN
107: PO_LOG.proc_end(d_mod,'x_result_type',x_result_type);
108: END IF;
109:
110: EXCEPTION
111: WHEN OTHERS THEN

Line 112: IF PO_LOG.d_exc THEN

108: END IF;
109:
110: EXCEPTION
111: WHEN OTHERS THEN
112: IF PO_LOG.d_exc THEN
113: PO_LOG.exc(d_mod,d_position,NULL);
114: END IF;
115: RAISE;
116:

Line 113: PO_LOG.exc(d_mod,d_position,NULL);

109:
110: EXCEPTION
111: WHEN OTHERS THEN
112: IF PO_LOG.d_exc THEN
113: PO_LOG.exc(d_mod,d_position,NULL);
114: END IF;
115: RAISE;
116:
117: END generate_custom_exceptions;