DBA Data[Home] [Help]

APPS.GL_CA_UTILITY_PKG dependencies on GL_MC_INFO

Line 6: -- *Should call gl_mc_info.get_alc_ledger_type() instead and this is for

2: /* $Header: glcautb.pls 120.1 2003/03/11 03:44:55 lpoon noship $ */
3:
4: -- Procedure
5: -- get_sob_type
6: -- *Should call gl_mc_info.get_alc_ledger_type() instead and this is for
7: -- backward
8: -- Purpose
9: -- Gets the type of set of books
10: -- History

Line 17: gl_mc_info.get_alc_ledger_type(p_sob_id, n_alc_ledger_type);

13: p_sob_type OUT NOCOPY VARCHAR2) IS
14: n_alc_ledger_type VARCHAR2(30);
15: BEGIN
16:
17: gl_mc_info.get_alc_ledger_type(p_sob_id, n_alc_ledger_type);
18:
19: IF n_alc_ledger_type = 'SOURCE'
20: THEN
21: p_sob_type := 'P';

Line 35: -- *May use gl_mc_info.alc_enabled() but it is a procedure rather than

31: END;
32:
33: -- Procedure
34: -- mrc_enabled
35: -- *May use gl_mc_info.alc_enabled() but it is a procedure rather than
36: -- a function returning BOOLEAN
37: -- Purpose
38: -- Determines whether MRC is enabled
39: FUNCTION mrc_enabled ( p_sob_id IN NUMBER,

Line 44: RETURN gl_mc_info.alc_enabled(p_sob_id, p_appl_id, p_org_id, p_fa_book_code);

40: p_appl_id IN NUMBER,
41: p_org_id IN NUMBER,
42: p_fa_book_code IN VARCHAR2) RETURN BOOLEAN IS
43: BEGIN
44: RETURN gl_mc_info.alc_enabled(p_sob_id, p_appl_id, p_org_id, p_fa_book_code);
45: END;
46:
47: -- Procedure
48: -- get_associated_sobs

Line 58: n_sob_list gl_mc_info.r_sob_list := gl_mc_info.r_sob_list();

54: p_appl_id IN NUMBER,
55: p_org_id IN NUMBER,
56: p_fa_book_code IN VARCHAR2,
57: p_sob_list IN OUT NOCOPY r_sob_list) IS
58: n_sob_list gl_mc_info.r_sob_list := gl_mc_info.r_sob_list();
59: BEGIN
60: -- This procedure used to exclude primary SOB, so we put 'N' to exclude
61: -- ALC source ledger
62: gl_mc_info.get_alc_associated_ledgers( p_sob_id

Line 62: gl_mc_info.get_alc_associated_ledgers( p_sob_id

58: n_sob_list gl_mc_info.r_sob_list := gl_mc_info.r_sob_list();
59: BEGIN
60: -- This procedure used to exclude primary SOB, so we put 'N' to exclude
61: -- ALC source ledger
62: gl_mc_info.get_alc_associated_ledgers( p_sob_id
63: , p_appl_id
64: , p_org_id
65: , p_fa_book_code
66: , 'N'

Line 122: gl_mc_info.get_ledger_currency(p_sob_list(l_counter).r_sob_id, l_rep_curr);

118: l_result_code := NULL;
119: l_numerator_rate := NULL;
120: l_denominator_rate := NULL;
121:
122: gl_mc_info.get_ledger_currency(p_sob_list(l_counter).r_sob_id, l_rep_curr);
123:
124: IF (l_rep_curr = p_trans_currency_code) THEN
125: -- Reporting Currency same as transaction currency so put all
126: -- conversion info to NULL and set correct result code