DBA Data[Home] [Help]

APPS.FII_EXCEPTION_CHECK_PKG dependencies on FII_MESSAGE

Line 17: FII_MESSAGE.Func_Ent('FII_EXCEPTION_CHECK_PKG.check_slg_setup');

13:
14: BEGIN
15:
16: if g_debug_flag = 'Y' then
17: FII_MESSAGE.Func_Ent('FII_EXCEPTION_CHECK_PKG.check_slg_setup');
18: end if;
19:
20: select count( distinct ledger_id ) into l_count
21: from fii_slg_assignments slga, fii_source_ledger_groups fslg

Line 28: FII_MESSAGE.Func_Succ('FII_EXCEPTION_CHECK_PKG.check_slg_setup');

24:
25: if l_count > 0 then
26:
27: if g_debug_flag = 'Y' then
28: FII_MESSAGE.Func_Succ('FII_EXCEPTION_CHECK_PKG.check_slg_setup');
29: end if;
30:
31: return 0;
32: end if;

Line 36: fii_message.write_log( msg_name => 'FII_NO_SLG_SETUP',

32: end if;
33:
34: -- No source ledger(s) setup for DBI
35:
36: fii_message.write_log( msg_name => 'FII_NO_SLG_SETUP',
37: token_num => 0 );
38:
39: fii_message.write_output( msg_name => 'FII_NO_SLG_SETUP',
40: token_num => 0 );

Line 39: fii_message.write_output( msg_name => 'FII_NO_SLG_SETUP',

35:
36: fii_message.write_log( msg_name => 'FII_NO_SLG_SETUP',
37: token_num => 0 );
38:
39: fii_message.write_output( msg_name => 'FII_NO_SLG_SETUP',
40: token_num => 0 );
41:
42: if g_debug_flag = 'Y' then
43: FII_MESSAGE.Func_Fail('FII_EXCEPTION_CHECK_PKG.check_slg_setup');

Line 43: FII_MESSAGE.Func_Fail('FII_EXCEPTION_CHECK_PKG.check_slg_setup');

39: fii_message.write_output( msg_name => 'FII_NO_SLG_SETUP',
40: token_num => 0 );
41:
42: if g_debug_flag = 'Y' then
43: FII_MESSAGE.Func_Fail('FII_EXCEPTION_CHECK_PKG.check_slg_setup');
44: end if;
45:
46: return 1;
47:

Line 92: fii_message.func_ent(

88:
89: BEGIN
90:
91: if g_debug_flag = 'Y' then
92: fii_message.func_ent(
93: 'FII_EXCEPTION_CHECK_PKG.detect_unmapped_local_vs');
94: end if;
95:
96: begin

Line 115: fii_message.write_log( msg_name => 'FII_UNMAPPED_LOCAL_VS',

111:
112: l_missing_cnt := l_missing_cnt + 1;
113:
114: if l_missing_cnt = 1 then
115: fii_message.write_log( msg_name => 'FII_UNMAPPED_LOCAL_VS',
116: token_num => 0 );
117: fii_message.write_log( msg_name => 'FII_REFER_TO_OUTPUT',
118: token_num => 0 );
119: fii_message.write_output( msg_name => 'FII_UNMAPPED_LOCAL_VS',

Line 117: fii_message.write_log( msg_name => 'FII_REFER_TO_OUTPUT',

113:
114: if l_missing_cnt = 1 then
115: fii_message.write_log( msg_name => 'FII_UNMAPPED_LOCAL_VS',
116: token_num => 0 );
117: fii_message.write_log( msg_name => 'FII_REFER_TO_OUTPUT',
118: token_num => 0 );
119: fii_message.write_output( msg_name => 'FII_UNMAPPED_LOCAL_VS',
120: token_num => 0 );
121: fii_message.write_output( msg_name => 'FII_UNMAPPED_LVS_LIST',

Line 119: fii_message.write_output( msg_name => 'FII_UNMAPPED_LOCAL_VS',

115: fii_message.write_log( msg_name => 'FII_UNMAPPED_LOCAL_VS',
116: token_num => 0 );
117: fii_message.write_log( msg_name => 'FII_REFER_TO_OUTPUT',
118: token_num => 0 );
119: fii_message.write_output( msg_name => 'FII_UNMAPPED_LOCAL_VS',
120: token_num => 0 );
121: fii_message.write_output( msg_name => 'FII_UNMAPPED_LVS_LIST',
122: token_num => 0 );
123: end if;

Line 121: fii_message.write_output( msg_name => 'FII_UNMAPPED_LVS_LIST',

117: fii_message.write_log( msg_name => 'FII_REFER_TO_OUTPUT',
118: token_num => 0 );
119: fii_message.write_output( msg_name => 'FII_UNMAPPED_LOCAL_VS',
120: token_num => 0 );
121: fii_message.write_output( msg_name => 'FII_UNMAPPED_LVS_LIST',
122: token_num => 0 );
123: end if;
124:
125: fii_util.write_output( missing_csr_rec.vs_name || ' ' ||

Line 130: fii_message.func_succ(

126: missing_csr_rec.coa_name );
127: end loop;
128:
129: if g_debug_flag = 'Y' then
130: fii_message.func_succ(
131: 'FII_EXCEPTION_CHECK_PKG.detect_unmapped_local_vs');
132: end if;
133:
134: return l_missing_cnt;

Line 141: fii_message.func_fail(

137:
138: when others then
139: fii_util.write_log(
140: 'Exception in detect_unmapped_local_vs: ' || sqlerrm );
141: fii_message.func_fail(
142: 'FII_EXCEPTION_CHECK_PKG.detect_unmapped_local_vs');
143: return -1;
144:
145: END detect_unmapped_local_vs;