DBA Data[Home] [Help]

APPS.XLA_TB_BALANCE_PKG dependencies on XLA_TB_DEFINITIONS_TL

Line 35: ,name xla_tb_definitions_tl.name%TYPE

31:
32:
33: TYPE r_definition IS RECORD
34: (definition_code xla_tb_definitions_b.definition_code%TYPE
35: ,name xla_tb_definitions_tl.name%TYPE
36: ,ledger_id xla_tb_definitions_b.ledger_id%TYPE
37: ,description xla_tb_definitions_tl.description%TYPE
38: ,balance_side_code xla_tb_definitions_b.balance_side_code%TYPE);
39:

Line 37: ,description xla_tb_definitions_tl.description%TYPE

33: TYPE r_definition IS RECORD
34: (definition_code xla_tb_definitions_b.definition_code%TYPE
35: ,name xla_tb_definitions_tl.name%TYPE
36: ,ledger_id xla_tb_definitions_b.ledger_id%TYPE
37: ,description xla_tb_definitions_tl.description%TYPE
38: ,balance_side_code xla_tb_definitions_b.balance_side_code%TYPE);
39:
40:
41: --

Line 2470: INSERT INTO xla_tb_definitions_tl

2466: ,p_module => l_log_module);
2467: END IF;
2468:
2469:
2470: INSERT INTO xla_tb_definitions_tl
2471: (
2472: definition_code
2473: ,name
2474: ,description

Line 2499: FROM xla_tb_definitions_tl t

2495: ,xla_tb_balances_gt tb
2496: WHERE l.installed_flag in ('I', 'B')
2497: AND NOT EXISTS
2498: (SELECT 1
2499: FROM xla_tb_definitions_tl t
2500: WHERE t.definition_code = tb.definition_code
2501: AND t.language = l.language_code);
2502:
2503: IF (C_LEVEL_STATEMENT>= g_log_level) THEN

Line 2505: (p_msg => 'inserted definition into the xla_tb_definitions_tl:'|| SQL%ROWCOUNT

2501: AND t.language = l.language_code);
2502:
2503: IF (C_LEVEL_STATEMENT>= g_log_level) THEN
2504: trace
2505: (p_msg => 'inserted definition into the xla_tb_definitions_tl:'|| SQL%ROWCOUNT
2506: ,p_level => C_LEVEL_STATEMENT
2507: ,p_module => l_log_module);
2508: END IF;
2509: