DBA Data[Home] [Help]

APPS.CN_BIS_UTIL_PVT dependencies on BIS_COLLECTION_UTILITIES

Line 59: bis_collection_utilities.debug(p_message, p_indenting);

55: PROCEDURE debug_msg(p_message IN VARCHAR2, p_indenting IN NUMBER) IS
56: BEGIN
57: IF get_debug = TRUE
58: THEN
59: bis_collection_utilities.debug(p_message, p_indenting);
60: --dbms_output.put_line(p_message);
61: END IF;
62: END debug_msg;
63:

Line 67: -- BIS_COLLECTION_UTILITIES.log.

63:
64: -- -------------------------------------------------------------------------+
65: -- log_msg
66: -- Procedure to write a message to the concurrent manager log file using
67: -- BIS_COLLECTION_UTILITIES.log.
68: -- Access: Public
69: -- Parameters:
70: -- p_message, IN, The message that will be written to the log file.
71: -- p_indenting, IN, The number of space for indenting. Default 0.

Line 77: bis_collection_utilities.log(p_message, p_indenting);

73: -- None.
74: -- -------------------------------------------------------------------------+
75: PROCEDURE log_msg(p_message IN VARCHAR2, p_indenting IN NUMBER) IS
76: BEGIN
77: bis_collection_utilities.log(p_message, p_indenting);
78: END log_msg;
79:
80: -- -------------------------------------------------------------------------+
81: -- set_degree_of_parallelism

Line 162: IF bis_collection_utilities.setup(p_object_name => p_object_name ) = FALSE

158: -- -------------------------------------------------------------------------+
159: FUNCTION setup(p_object_name IN VARCHAR2) RETURN BOOLEAN IS
160: l_success BOOLEAN := TRUE;
161: BEGIN
162: IF bis_collection_utilities.setup(p_object_name => p_object_name ) = FALSE
163: THEN
164: l_success := FALSE;
165: log_msg(cn_bis_util_pvt.g_failure_status || cn_bis_util_pvt.g_separator || ' Setup ' || p_object_name, 0);
166: debug_msg(cn_bis_util_pvt.g_failure_status || cn_bis_util_pvt.g_separator || ' Setup ' || p_object_name, 0);

Line 178: -- bis_collection_utilities.wrapup().

174:
175: -- -------------------------------------------------------------------------+
176: -- wrapup
177: -- Procedure from bis to wrap up the concurrent program using
178: -- bis_collection_utilities.wrapup().
179: -- Access: Public
180: -- Parameters:
181: -- p_status, IN BOOLEAN, TRUE if the process is a success,
182: -- FALSE if any of your code failed. You must keep

Line 240: bis_collection_utilities.wrapup(

236: p_attribute9 IN VARCHAR2,
237: p_attribute10 IN VARCHAR2
238: ) IS
239: BEGIN
240: bis_collection_utilities.wrapup(
241: p_status => p_status,
242: p_count => p_count,
243: p_message => p_message,
244: p_period_from => p_period_from,