DBA Data[Home] [Help]

APPS.CSI_ONT_TXN_PUB dependencies on CSI_T_GEN_UTILITY_PVT

Line 8: IF csi_t_gen_utility_pvt.g_debug_level > 0 THEN

4: PROCEDURE debug(
5: p_message in varchar2)
6: IS
7: BEGIN
8: IF csi_t_gen_utility_pvt.g_debug_level > 0 THEN
9: csi_t_gen_utility_pvt.add(p_message);
10: END IF;
11: EXCEPTION
12: WHEN others THEN

Line 9: csi_t_gen_utility_pvt.add(p_message);

5: p_message in varchar2)
6: IS
7: BEGIN
8: IF csi_t_gen_utility_pvt.g_debug_level > 0 THEN
9: csi_t_gen_utility_pvt.add(p_message);
10: END IF;
11: EXCEPTION
12: WHEN others THEN
13: null;

Line 115: csi_t_gen_utility_pvt.build_file_name(

111:
112: l_use_parallelmode := NVL(fnd_profile.value('CSI_TXN_PARALLEL_MODE'), 'N'); --Added for MACD Enhancement
113: -- l_use_parallelmode := 'Y';
114:
115: csi_t_gen_utility_pvt.build_file_name(
116: p_file_segment1 => 'csiinv',
117: p_file_segment2 => 'hook');
118:
119: csi_t_gen_utility_pvt.add('*****START ib node from workflow process :'||to_char(sysdate,'DD-MON-YYYY HH24:MI:SS')); --Added for MACD Enhancement

Line 119: csi_t_gen_utility_pvt.add('*****START ib node from workflow process :'||to_char(sysdate,'DD-MON-YYYY HH24:MI:SS')); --Added for MACD Enhancement

115: csi_t_gen_utility_pvt.build_file_name(
116: p_file_segment1 => 'csiinv',
117: p_file_segment2 => 'hook');
118:
119: csi_t_gen_utility_pvt.add('*****START ib node from workflow process :'||to_char(sysdate,'DD-MON-YYYY HH24:MI:SS')); --Added for MACD Enhancement
120:
121: debug('START ib node from workflow process :'||to_char(sysdate,'DD-MON-YYYY HH24:MI:SS'));
122: debug(' order_line_id : '||p_order_line_id);
123:

Line 504: csi_t_gen_utility_pvt.build_file_name(

500: debug('END ib node from workflow process :'||to_char(sysdate,'DD-MON-YYYY HH24:MI:SS'));
501:
502: EXCEPTION
503: WHEN bypass_error THEN
504: csi_t_gen_utility_pvt.build_file_name(
505: p_file_segment1 => 'csiinv',
506: p_file_segment2 => 'hook');
507: l_error_rec.inv_material_transaction_id := null;
508: debug(' bypass_error : '||l_error_rec.error_text);

Line 511: csi_t_gen_utility_pvt.build_file_name(

507: l_error_rec.inv_material_transaction_id := null;
508: debug(' bypass_error : '||l_error_rec.error_text);
509: csi_inv_trxs_pkg.log_csi_error(l_error_rec);
510: WHEN publish_error THEN
511: csi_t_gen_utility_pvt.build_file_name(
512: p_file_segment1 => 'csiinv',
513: p_file_segment2 => 'hook');
514: l_error_rec.inv_material_transaction_id := null;
515: debug(' publish_error :'||l_error_rec.error_text);

Line 518: csi_t_gen_utility_pvt.build_file_name(

514: l_error_rec.inv_material_transaction_id := null;
515: debug(' publish_error :'||l_error_rec.error_text);
516: csi_inv_trxs_pkg.log_csi_error(l_error_rec);
517: WHEN others THEN
518: csi_t_gen_utility_pvt.build_file_name(
519: p_file_segment1 => 'csiinv',
520: p_file_segment2 => 'hook');
521: l_error_rec.inv_material_transaction_id := null;
522: l_error_rec.error_text := substr(sqlerrm, 1, 540);