DBA Data[Home] [Help]

APPS.JTF_DPF dependencies on JTF_DPF_LGCL_NEXT_RULES

Line 220: -- - jtf_dpf_lgcl_next_rules

216: -- dpf editing procedures
217: -- delete_flow. Removes all rows with logical_page_flow from tables:
218: -- - jtf_dpf_lgcl_flow_params
219: -- - jtf_dpf_logical_flows
220: -- - jtf_dpf_lgcl_next_rules
221: procedure flow_delete(p_logical_flow_id number);
222:
223: -- updates the components of the flow specified by p_logical_flow_id.
224: -- if p_new_header_logical_page_id is G_MISS_NUM, then it's not

Line 288: -- - jtf_dpf_lgcl_next_rules

284:
285: -- logical editing procedures:
286: -- removes any instances with logical_page_id from tables:
287: -- - jtf_dpf_logical_pages
288: -- - jtf_dpf_lgcl_next_rules
289: -- - jtf_dpf_lgcl_phy_rules
290: -- removes the logical from JTF_DPF_LOGICAL_PAGES. Also removes
291: -- any jtf_dpf_lgcl_phy_rules with the same logical_page_id
292: procedure logical_delete(p_logical_page_id number);

Line 350: -- row in JTF_DPF_LGCL_NEXT_RULES or insert a new one.

346:
347: -- set next_logicals
348: -- sets the default next logical of (p_flow_id, p_log_page_id) to
349: -- next_log_page_id. This might either update an existing
350: -- row in JTF_DPF_LGCL_NEXT_RULES or insert a new one.
351: -- if p_next_log_page_id is null, it means that the next logical
352: -- of (p_flow_id, p_log_page_id) is null, i.e. that there's
353: -- nothing after it (it's the last in the flow)
354: --

Line 360: p_flow_id jtf_dpf_lgcl_next_rules.logical_flow_id%type,

356: -- 1: successfully updated
357: -- 2: p_log_page_id is not found, or p_next_log_page_id
358: -- is both not null and not a valid logical_page_id
359: function next_logical_set_default(
360: p_flow_id jtf_dpf_lgcl_next_rules.logical_flow_id%type,
361: p_log_page_id jtf_dpf_lgcl_next_rules.logical_page_id%type,
362: p_next_log_page_id jtf_dpf_lgcl_next_rules.logical_next_page_id%type)
363: return number;
364:

Line 361: p_log_page_id jtf_dpf_lgcl_next_rules.logical_page_id%type,

357: -- 2: p_log_page_id is not found, or p_next_log_page_id
358: -- is both not null and not a valid logical_page_id
359: function next_logical_set_default(
360: p_flow_id jtf_dpf_lgcl_next_rules.logical_flow_id%type,
361: p_log_page_id jtf_dpf_lgcl_next_rules.logical_page_id%type,
362: p_next_log_page_id jtf_dpf_lgcl_next_rules.logical_next_page_id%type)
363: return number;
364:
365: -- sets up the non-default next logical rules for (flow_id, log_page_id).

Line 362: p_next_log_page_id jtf_dpf_lgcl_next_rules.logical_next_page_id%type)

358: -- is both not null and not a valid logical_page_id
359: function next_logical_set_default(
360: p_flow_id jtf_dpf_lgcl_next_rules.logical_flow_id%type,
361: p_log_page_id jtf_dpf_lgcl_next_rules.logical_page_id%type,
362: p_next_log_page_id jtf_dpf_lgcl_next_rules.logical_next_page_id%type)
363: return number;
364:
365: -- sets up the non-default next logical rules for (flow_id, log_page_id).
366: -- if there were already non-default rules for it, it removes them first

Line 368: p_flow_id jtf_dpf_lgcl_next_rules.logical_flow_id%type,

364:
365: -- sets up the non-default next logical rules for (flow_id, log_page_id).
366: -- if there were already non-default rules for it, it removes them first
367: procedure next_logical_set_non_default(
368: p_flow_id jtf_dpf_lgcl_next_rules.logical_flow_id%type,
369: p_log_page_id jtf_dpf_lgcl_next_rules.logical_page_id%type,
370: p_new_ones new_next_log_non_def_tbl);
371:
372: end;

Line 369: p_log_page_id jtf_dpf_lgcl_next_rules.logical_page_id%type,

365: -- sets up the non-default next logical rules for (flow_id, log_page_id).
366: -- if there were already non-default rules for it, it removes them first
367: procedure next_logical_set_non_default(
368: p_flow_id jtf_dpf_lgcl_next_rules.logical_flow_id%type,
369: p_log_page_id jtf_dpf_lgcl_next_rules.logical_page_id%type,
370: p_new_ones new_next_log_non_def_tbl);
371:
372: end;