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 81: csi_t_gen_utility_pvt.build_file_name(

77:
78: l_use_parallelmode := NVL(fnd_profile.value('CSI_TXN_PARALLEL_MODE'), 'N'); --Added for MACD Enhancement
79: -- l_use_parallelmode := 'Y';
80:
81: csi_t_gen_utility_pvt.build_file_name(
82: p_file_segment1 => 'csiinv',
83: p_file_segment2 => 'hook');
84:
85: 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 85: 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

81: csi_t_gen_utility_pvt.build_file_name(
82: p_file_segment1 => 'csiinv',
83: p_file_segment2 => 'hook');
84:
85: 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
86:
87: debug('START ib node from workflow process :'||to_char(sysdate,'DD-MON-YYYY HH24:MI:SS'));
88: debug(' order_line_id : '||p_order_line_id);
89:

Line 432: csi_t_gen_utility_pvt.build_file_name(

428: debug('END ib node from workflow process :'||to_char(sysdate,'DD-MON-YYYY HH24:MI:SS'));
429:
430: EXCEPTION
431: WHEN bypass_error THEN
432: csi_t_gen_utility_pvt.build_file_name(
433: p_file_segment1 => 'csiinv',
434: p_file_segment2 => 'hook');
435: l_error_rec.inv_material_transaction_id := null;
436: debug(' bypass_error : '||l_error_rec.error_text);

Line 439: csi_t_gen_utility_pvt.build_file_name(

435: l_error_rec.inv_material_transaction_id := null;
436: debug(' bypass_error : '||l_error_rec.error_text);
437: csi_inv_trxs_pkg.log_csi_error(l_error_rec);
438: WHEN publish_error THEN
439: csi_t_gen_utility_pvt.build_file_name(
440: p_file_segment1 => 'csiinv',
441: p_file_segment2 => 'hook');
442: l_error_rec.inv_material_transaction_id := null;
443: debug(' publish_error :'||l_error_rec.error_text);

Line 446: csi_t_gen_utility_pvt.build_file_name(

442: l_error_rec.inv_material_transaction_id := null;
443: debug(' publish_error :'||l_error_rec.error_text);
444: csi_inv_trxs_pkg.log_csi_error(l_error_rec);
445: WHEN others THEN
446: csi_t_gen_utility_pvt.build_file_name(
447: p_file_segment1 => 'csiinv',
448: p_file_segment2 => 'hook');
449: l_error_rec.inv_material_transaction_id := null;
450: l_error_rec.error_text := substr(sqlerrm, 1, 540);