DBA Data[Home] [Help]

APPS.XLA_JE_VALIDATION_PKG dependencies on XLA_LEDGER_OPTIONS

Line 5758: FROM xla_ledger_options xlo

5754: );
5755: ELSE
5756: SELECT xlo.rounding_rule_code
5757: INTO l_rounding_rule_code
5758: FROM xla_ledger_options xlo
5759: WHERE xlo.application_id = g_application_id
5760: AND xlo.ledger_id = g_trx_ledger_id;
5761: END IF;
5762:

Line 5930: FROM xla_ledger_options xlo

5926: ELSE
5927: SELECT nvl(fcu.minimum_accountable_unit, power(10, -1* fcu.precision))
5928: ,xlo.rounding_rule_code
5929: INTO l_mau, l_rounding_rule_code
5930: FROM xla_ledger_options xlo
5931: ,gl_ledgers gl
5932: ,fnd_currencies fcu
5933: WHERE xlo.application_id = g_application_id
5934: AND xlo.ledger_id = g_trx_ledger_id

Line 6956: FROM xla_ledger_options xlo

6952: ELSE
6953: SELECT nvl(fcu.minimum_accountable_unit, power(10, -1* fcu.precision))
6954: ,xlo.rounding_rule_code
6955: INTO l_mau, l_rounding_rule_code
6956: FROM xla_ledger_options xlo
6957: ,gl_ledgers gl
6958: ,fnd_currencies fcu
6959: WHERE xlo.application_id = g_application_id
6960: AND xlo.ledger_id = g_trx_ledger_id

Line 7814: FROM xla_ledger_options xlo

7810: ELSE
7811: SELECT nvl(fcu.minimum_accountable_unit, power(10, -1* fcu.precision))
7812: ,xlo.rounding_rule_code
7813: INTO l_mau, l_rounding_rule_code
7814: FROM xla_ledger_options xlo
7815: ,gl_ledgers gl
7816: ,fnd_currencies fcu
7817: WHERE xlo.application_id = g_application_id
7818: AND xlo.ledger_id = g_trx_ledger_id

Line 8384: FROM xla_ledger_options xlo

8380: ELSE
8381: SELECT nvl(fcu.minimum_accountable_unit, power(10, -1* fcu.precision))
8382: ,xlo.rounding_rule_code
8383: INTO l_mau, l_rounding_rule_code
8384: FROM xla_ledger_options xlo
8385: ,gl_ledgers gl
8386: ,fnd_currencies fcu
8387: WHERE xlo.application_id = g_application_id
8388: AND xlo.ledger_id = g_trx_ledger_id

Line 8783: FROM xla_ledger_options

8779: PROCEDURE populate_balancing_lines
8780: IS
8781: CURSOR c_ledger_option IS
8782: SELECT transfer_to_gl_mode_code
8783: FROM xla_ledger_options
8784: WHERE ledger_id = g_ledger_id
8785: AND application_id = g_application_id;
8786:
8787: l_line_num INTEGER;