DBA Data[Home] [Help]

APPS.PO_CUSTOM_MULTIMOD_VAL_PUB 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 49: d_stmt CONSTANT BOOLEAN := PO_LOG.d_stmt;

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

Line 53: IF PO_LOG.d_proc THEN

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

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

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

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

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

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

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

Line 107: IF PO_LOG.d_proc THEN

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

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

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

Line 113: IF PO_LOG.d_exc THEN

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

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

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