DBA Data[Home] [Help]

APPS.AP_MASS_ADDITIONS_CREATE_PKG dependencies on GL_SETS_OF_BOOKS

Line 188: -- Function will return accounting method from GL_SETS_OF_BOOKS

184: --
185: END Populate_Mass_Acct_Code_Gt;
186:
187: ----------------------------------------------------------------------------
188: -- Function will return accounting method from GL_SETS_OF_BOOKS
189: -- based on the sla_ledger_cash_basis_flag
190: --
191: FUNCTION Derive_Acct_Method (
192: P_ledger_id IN NUMBER,

Line 215: FROM gl_sets_of_books

211: --
212: SELECT DECODE(NVL(sla_ledger_cash_basis_flag, 'N'), 'Y',
213: 'Cash', 'Accrual')
214: INTO l_acct_method
215: FROM gl_sets_of_books
216: WHERE set_of_books_id = p_ledger_id;
217:
218: RETURN (l_acct_method);
219:

Line 2024: l_debug_info := 'Derive Accounting Method from Gl Sets Of Books ';

2020: Populate_Mass_Acct_Code_Gt(
2021: l_ledger_id,
2022: l_current_calling_sequence);
2023: --
2024: l_debug_info := 'Derive Accounting Method from Gl Sets Of Books ';
2025: --
2026: IF (G_LEVEL_PROCEDURE >= G_CURRENT_RUNTIME_LEVEL) THEN
2027: FND_LOG.STRING(G_LEVEL_PROCEDURE,G_MODULE_NAME||l_api_name,l_debug_info);
2028: END IF;