DBA Data[Home] [Help]

APPS.XLA_JE_VALIDATION_PKG dependencies on XLA_LEDGER_OPTIONS

Line 6070: FROM xla_ledger_options xlo

6066: );
6067: ELSE
6068: SELECT xlo.rounding_rule_code
6069: INTO l_rounding_rule_code
6070: FROM xla_ledger_options xlo
6071: WHERE xlo.application_id = g_application_id
6072: AND xlo.ledger_id = g_trx_ledger_id;
6073: END IF;
6074:

Line 6242: FROM xla_ledger_options xlo

6238: ELSE
6239: SELECT nvl(fcu.minimum_accountable_unit, power(10, -1* fcu.precision))
6240: ,xlo.rounding_rule_code
6241: INTO l_mau, l_rounding_rule_code
6242: FROM xla_ledger_options xlo
6243: ,gl_ledgers gl
6244: ,fnd_currencies fcu
6245: WHERE xlo.application_id = g_application_id
6246: AND xlo.ledger_id = g_trx_ledger_id

Line 7339: FROM xla_ledger_options xlo

7335: ELSE
7336: SELECT nvl(fcu.minimum_accountable_unit, power(10, -1* fcu.precision))
7337: ,xlo.rounding_rule_code
7338: INTO l_mau, l_rounding_rule_code
7339: FROM xla_ledger_options xlo
7340: ,gl_ledgers gl
7341: ,fnd_currencies fcu
7342: WHERE xlo.application_id = g_application_id
7343: AND xlo.ledger_id = g_trx_ledger_id

Line 8266: FROM xla_ledger_options xlo

8262: ELSE
8263: SELECT nvl(fcu.minimum_accountable_unit, power(10, -1* fcu.precision))
8264: ,xlo.rounding_rule_code
8265: INTO l_mau, l_rounding_rule_code
8266: FROM xla_ledger_options xlo
8267: ,gl_ledgers gl
8268: ,fnd_currencies fcu
8269: WHERE xlo.application_id = g_application_id
8270: AND xlo.ledger_id = g_trx_ledger_id

Line 8986: FROM xla_ledger_options xlo

8982: ELSE
8983: SELECT nvl(fcu.minimum_accountable_unit, power(10, -1* fcu.precision))
8984: ,xlo.rounding_rule_code
8985: INTO l_mau, l_rounding_rule_code
8986: FROM xla_ledger_options xlo
8987: ,gl_ledgers gl
8988: ,fnd_currencies fcu
8989: WHERE xlo.application_id = g_application_id
8990: AND xlo.ledger_id = g_trx_ledger_id

Line 9464: FROM xla_ledger_options

9460: PROCEDURE populate_balancing_lines
9461: IS
9462: CURSOR c_ledger_option IS
9463: SELECT transfer_to_gl_mode_code
9464: FROM xla_ledger_options
9465: WHERE ledger_id = g_ledger_id
9466: AND application_id = g_application_id;
9467:
9468: l_line_num INTEGER;