DBA Data[Home] [Help]

APPS.ZX_SIM_CONDITIONS_PKG dependencies on ZX_SIM_RULES_TL

Line 110: INSERT INTO zx_sim_rules_tl (

106: 'ZX.PLSQL.ZX_SIM_CONDITIONS_PKG.create_from_existing_rules',
107: 'Simulate Translation of Rules');
108: END IF;
109:
110: INSERT INTO zx_sim_rules_tl (
111: sim_tax_rule_id,
112: language,
113: source_lang,
114: tax_rule_name,

Line 515: DELETE zx_sim_rules_tl;

511: 'ZX.PLSQL.ZX_SIM_CONDITIONS_PKG.create_sim_rules',
512: 'Delete any existing Simulated Rules, Process Results and Conditions');
513: END IF;
514: DELETE zx_sim_rules_b;
515: DELETE zx_sim_rules_tl;
516: DELETE zx_sim_process_results;
517: DELETE zx_sim_rule_conditions;
518:
519: IF (g_level_statement >= g_current_runtime_level ) THEN

Line 916: INSERT INTO zx_sim_rules_tl (

912: 'ZX.PLSQL.ZX_SIM_CONDITIONS_PKG.create_sim_rules',
913: 'Simulate Translation of Rules');
914: END IF;
915:
916: INSERT INTO zx_sim_rules_tl (
917: language,
918: source_lang,
919: tax_rule_name,
920: sim_tax_rule_id,

Line 938: from zx_sim_rules_tl t

934: zx_sim_rules_b b
935: where l.installed_flag in ('I', 'B')
936: and not exists
937: (select NULL
938: from zx_sim_rules_tl t
939: where t.sim_tax_rule_id = b.sim_tax_rule_id
940: and t.language = l.language_code);
941:
942: IF (g_level_statement >= g_current_runtime_level ) THEN