DBA Data[Home] [Help]

APPS.AP_UTILITIES_PKG dependencies on GL_CODE_COMBINATIONS

Line 1733: l_enabled_flag gl_code_combinations.enabled_flag%type;

1729: RETURN BOOLEAN IS
1730:
1731: -- Bug 3621994 -Deleted the unnecessary variables (due to 3086316)
1732:
1733: l_enabled_flag gl_code_combinations.enabled_flag%type;
1734: current_calling_sequence VARCHAR2(2000);
1735: debug_info VARCHAR2(500);
1736:
1737: BEGIN

Line 1775: FROM gl_code_combinations

1771: is not enabled then return -1 */
1772:
1773: SELECT nvl(enabled_flag,'N')
1774: INTO l_enabled_flag
1775: FROM gl_code_combinations
1776: WHERE code_combination_id = p_ccid
1777: AND chart_of_accounts_id = p_chart_of_accounts_id
1778: -- Bug 3486932 - Added the following conditions to verify if GL account
1779: -- is valid and summary flag and template id are proper.

Line 3753: ' from gl_code_combinations where code_combination_id = :a '

3749: FND_LOG.STRING(G_LEVEL_PROCEDURE,G_MODULE_NAME||l_api_name,l_debug_info);
3750: END IF;
3751:
3752: EXECUTE IMMEDIATE 'SELECT '|| l_segment_num ||
3753: ' from gl_code_combinations where code_combination_id = :a '
3754: INTO l_nat_account USING p_ccid;
3755:
3756: l_debug_info := 'Natural account: '||l_nat_account||'. end of function call. ';
3757: IF (G_LEVEL_PROCEDURE >= G_CURRENT_RUNTIME_LEVEL) THEN