DBA Data[Home] [Help]

APPS.XLA_BALANCES_CALC_PKG dependencies on GL_CODE_COMBINATIONS

Line 988: , gl_code_combinations gcc --Bug13498442

984: , gps.effective_period_num
985: , gps.period_year
986: FROM gl_period_statuses gps
987: ,xla_analytical_hdrs_b xbh --Bug13498442
988: , gl_code_combinations gcc --Bug13498442
989: , xla_ac_bal_interim_gt tmp
990: , xla_ledger_options xlo
991: , xla_ledger_relationships_v xlr
992: WHERE gps.effective_period_num <= xlo.effective_period_num

Line 1267: , gl_code_combinations gcc

1263: , '||g_prog_id||'
1264: , '||g_req_id||'
1265: FROM xla_ac_bal_interim_gt temp
1266: , xla_analytical_hdrs_b xbh
1267: , gl_code_combinations gcc
1268: , gl_period_statuses gps
1269: , xla_ledger_relationships_v xlr
1270: WHERE xlr.ledger_id = temp.ledger_id
1271: AND gps.ledger_id = DECODE(xlr.ledger_category_code,''ALC''

Line 3096: , gl_code_combinations gcc

3092: ,g_prog_id
3093: ,g_req_id
3094: FROM gl_period_statuses gps
3095: , xla_ac_balances bal
3096: , gl_code_combinations gcc
3097: , xla_analytical_hdrs_b xbh
3098: , (select ledger_id
3099: from xla_ledger_relationships_v
3100: where (ledger_category_code IN ('PRIMARY','ALC')

Line 4722: FROM gl_code_combinations gcc

4718: BEGIN
4719:
4720: SELECT gcc.reference3
4721: INTO l_qualifier_value
4722: FROM gl_code_combinations gcc
4723: WHERE gcc.code_combination_id = p_code_combination_id;
4724: EXCEPTION
4725: WHEN NO_DATA_FOUND THEN
4726: IF (C_LEVEL_EXCEPTION >= g_log_level) THEN

Line 4731: ' not found. in the table gl_code_combinations'

4727: trace
4728: ( p_module => l_log_module
4729: ,p_msg => 'EXCEPTION: ' ||
4730: 'Code combination id '||p_code_combination_id ||
4731: ' not found. in the table gl_code_combinations'
4732: ,p_level => C_LEVEL_EXCEPTION
4733: );
4734: END IF;
4735: RETURN C_NOT_CONTROL_ACCOUNT;