DBA Data[Home] [Help]

APPS.CZ_MODEL_UTIL_PVT dependencies on CZ_EXPL_PAIR_TBL

Line 607: return "SYSTEM".cz_expl_pair_tbl

603: END get_ui_refs_under_model;
604: --------------------------------------------------------------------------------
605:
606: FUNCTION get_parallel_expls (p_encl_expl_id in number, p_desc_expl_id in number, p_max_expl_depth in number)
607: return "SYSTEM".cz_expl_pair_tbl
608: is
609: -- Added new component to CZ_EXPL_PAIR for bug 4486182, 7/12/2005
610: -- model reference depth, to support field of same name in cz_uicomponent_hgrid_v
611: --

Line 613: -- uses the same parallel-expl query structure, but instead of joining to a table case as cz_expl_pair_tbl,

609: -- Added new component to CZ_EXPL_PAIR for bug 4486182, 7/12/2005
610: -- model reference depth, to support field of same name in cz_uicomponent_hgrid_v
611: --
612: -- restructured algorithm 2004-10-12
613: -- uses the same parallel-expl query structure, but instead of joining to a table case as cz_expl_pair_tbl,
614: -- this approach simply iterates over the pairs and gets the matching children for each
615: -- this allows me to use a single cz_expl_pair_tbl.
616: pairs "SYSTEM".cz_expl_pair_tbl := "SYSTEM".cz_expl_pair_tbl ();
617: paircount number;

Line 615: -- this allows me to use a single cz_expl_pair_tbl.

611: --
612: -- restructured algorithm 2004-10-12
613: -- uses the same parallel-expl query structure, but instead of joining to a table case as cz_expl_pair_tbl,
614: -- this approach simply iterates over the pairs and gets the matching children for each
615: -- this allows me to use a single cz_expl_pair_tbl.
616: pairs "SYSTEM".cz_expl_pair_tbl := "SYSTEM".cz_expl_pair_tbl ();
617: paircount number;
618: newpair "SYSTEM".cz_expl_pair;
619: cur_pair_index number;

Line 616: pairs "SYSTEM".cz_expl_pair_tbl := "SYSTEM".cz_expl_pair_tbl ();

612: -- restructured algorithm 2004-10-12
613: -- uses the same parallel-expl query structure, but instead of joining to a table case as cz_expl_pair_tbl,
614: -- this approach simply iterates over the pairs and gets the matching children for each
615: -- this allows me to use a single cz_expl_pair_tbl.
616: pairs "SYSTEM".cz_expl_pair_tbl := "SYSTEM".cz_expl_pair_tbl ();
617: paircount number;
618: newpair "SYSTEM".cz_expl_pair;
619: cur_pair_index number;
620: start_encl_depth number;