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 1610: l_debug_info := 'Derive Accounting Method from Gl Sets Of Books ';

1606: Populate_Mass_Acct_Code_Gt(
1607: l_ledger_id,
1608: l_current_calling_sequence);
1609: --
1610: l_debug_info := 'Derive Accounting Method from Gl Sets Of Books ';
1611: --
1612: IF (G_LEVEL_PROCEDURE >= G_CURRENT_RUNTIME_LEVEL) THEN
1613: FND_LOG.STRING(G_LEVEL_PROCEDURE,G_MODULE_NAME||l_api_name,l_debug_info);
1614: END IF;