DBA Data[Home] [Help]

APPS.GL_MC_CURRENCY_PKG dependencies on GL_MC_INFO

Line 23: -- R11i.X Changes - Call gl_mc_info instead (merged the code)

19: G_ERROR_LEVEL CONSTANT NUMBER :=FND_LOG.LEVEL_ERROR;
20: G_UNEXPECTED_LEVEL CONSTANT NUMBER :=FND_LOG.LEVEL_UNEXPECTED;
21: G_DEBUG_PKG_HDR CONSTANT VARCHAR2(100) := 'gl.sql.GLMCCURB.';
22: --
23: -- R11i.X Changes - Call gl_mc_info instead (merged the code)
24: --
25: FUNCTION get_currency_code (p_set_of_books_id NUMBER) RETURN VARCHAR2 IS
26: l_currency_code VARCHAR2(15);
27: BEGIN

Line 28: gl_mc_info.get_ledger_currency(p_set_of_books_id, l_currency_code);

24: --
25: FUNCTION get_currency_code (p_set_of_books_id NUMBER) RETURN VARCHAR2 IS
26: l_currency_code VARCHAR2(15);
27: BEGIN
28: gl_mc_info.get_ledger_currency(p_set_of_books_id, l_currency_code);
29:
30: RETURN(l_currency_code);
31: END get_currency_code;
32: --

Line 33: -- R11i.X Changes - Call gl_mc_info instead (merged the code)

29:
30: RETURN(l_currency_code);
31: END get_currency_code;
32: --
33: -- R11i.X Changes - Call gl_mc_info instead (merged the code)
34: --
35: FUNCTION get_mrc_sob_type_code (p_set_of_books_id NUMBER) RETURN VARCHAR2 IS
36: l_mrc_sob_type_code VARCHAR2(1);
37: BEGIN

Line 38: gl_mc_info.get_sob_type(p_set_of_books_id, l_mrc_sob_type_code);

34: --
35: FUNCTION get_mrc_sob_type_code (p_set_of_books_id NUMBER) RETURN VARCHAR2 IS
36: l_mrc_sob_type_code VARCHAR2(1);
37: BEGIN
38: gl_mc_info.get_sob_type(p_set_of_books_id, l_mrc_sob_type_code);
39:
40: RETURN(l_mrc_sob_type_code);
41: END get_mrc_sob_type_code;
42: --

Line 137: gl_mc_info.get_ledger_currency(p_primary_set_of_books_id, l_src_curr);

133: AND MC.enabled_flag = 'Y'))
134: AND rownum = 1;
135:
136: -- Get the source ledger currency
137: gl_mc_info.get_ledger_currency(p_primary_set_of_books_id, l_src_curr);
138: EXCEPTION
139: WHEN OTHERS THEN
140: p_result_code := 'RSOB NOT FOUND';
141: l_conversion_flag := 'E';