DBA Data[Home] [Help]

APPS.XDO_DGF_RPT_PKG dependencies on XDO_DGF_TPL_RULES

Line 150: FROM xdo_dgf_tpl_rules tr

146:
147: CURSOR c_context_tpl_rules(p_tpl_context_id IN INTEGER) is
148: SELECT tr.rule_catalog_id xrg_id,
149: tr.format_filter_type format_filter_type
150: FROM xdo_dgf_tpl_rules tr
151: WHERE tr.template_context_id = p_tpl_context_id;
152:
153: CURSOR c_rule_catalog(p_xrg_id IN INTEGER) is
154: SELECT cat.rule_short_name rule_short_name,

Line 297: -- loop through XDO_DGF_TPL_RULES for a given template

293: l_template_table(j).htm_format_allowed := rec.htm_format_allowed;
294: l_template_table(j).xls_format_allowed := rec.xls_format_allowed;
295: l_template_table(j).txt_format_allowed := rec.txt_format_allowed;
296:
297: -- loop through XDO_DGF_TPL_RULES for a given template
298: -- and write id's into l_tpl_rule_id_table
299: OPEN c_context_tpl_rules(rec.tpl_ctx_id);
300: FETCH c_context_tpl_rules INTO l_tpl_rule_rec;
301: IF c_context_tpl_rules%found THEN