DBA Data[Home] [Help]

APPS.JTF_DPF dependencies on JTF_DPF_PHY_ATTRIBS

Line 440: from jtf_dpf_phy_attribs pa

436: for c1_rec in c1(asn) loop
437: -- for any phy_attribs with c1_rec.physical_page_id...
438: for c2_rec in (select
439: pa.PHYSICAL_PAGE_ID, pa.PAGE_ATTRIBUTE_NAME,pa.PAGE_ATTRIBUTE_VALUE
440: from jtf_dpf_phy_attribs pa
441: where pa.physical_page_id = c1_rec.physical_page_id) loop
442: -- add a new record
443: retval(ddindx).id := c2_rec.physical_page_id;
444: retval(ddindx).name := c2_rec.page_attribute_name;

Line 744: delete from jtf_dpf_phy_attribs where physical_page_id = p_ppid;

740: p_new_ones new_phys_attribs_tbl) is
741: idx binary_integer;
742: begin
743: -- remove any old ones
744: delete from jtf_dpf_phy_attribs where physical_page_id = p_ppid;
745:
746: -- add the new ones, if any
747: if p_new_ones is not null and p_new_ones.count <> 0 then
748: idx := p_new_ones.first;

Line 750: insert into jtf_dpf_phy_attribs(

746: -- add the new ones, if any
747: if p_new_ones is not null and p_new_ones.count <> 0 then
748: idx := p_new_ones.first;
749: while true loop
750: insert into jtf_dpf_phy_attribs(
751: physical_page_id,
752: page_attribute_name,
753: page_attribute_value,
754: OBJECT_VERSION_NUMBER,