DBA Data[Home] [Help]

APPS.AP_UTILITIES_PKG dependencies on GL_CODE_COMBINATIONS

Line 1729: l_enabled_flag gl_code_combinations.enabled_flag%type;

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

Line 1771: FROM gl_code_combinations

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

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

3707: FND_LOG.STRING(G_LEVEL_PROCEDURE,G_MODULE_NAME||l_api_name,l_debug_info);
3708: END IF;
3709:
3710: EXECUTE IMMEDIATE 'SELECT '|| l_segment_num ||
3711: ' from gl_code_combinations where code_combination_id = :a '
3712: INTO l_nat_account USING p_ccid;
3713:
3714: l_debug_info := 'Natural account: '||l_nat_account||'. end of function call. ';
3715: IF (G_LEVEL_PROCEDURE >= G_CURRENT_RUNTIME_LEVEL) THEN