DBA Data[Home] [Help]

APPS.JTFB_DCF dependencies on AK_ATTRIBUTES

Line 607: from ak_region_items rit, ak_regions rgn, ak_attributes att

603:
604: cursor cur_attributes is
605: select att.rowid
606: , att.attribute_code
607: from ak_region_items rit, ak_regions rgn, ak_attributes att
608: where att.item_style = l_item_style
609: and rit.attribute_code = att.attribute_code
610: and rit.attribute_application_id = rit.attribute_application_id
611: and rit.attribute_category = l_attribute_category

Line 635: -- dbms_output.put_line('Ak_Attributes: ' || att_rec.attribute_code);

631: end loop;
632:
633: for att_rec in cur_attributes
634: loop
635: -- dbms_output.put_line('Ak_Attributes: ' || att_rec.attribute_code);
636: update ak_attributes
637: set item_style = l_new_item_style
638: where rowid = att_rec.rowid;
639: l_upgraded := true;

Line 636: update ak_attributes

632:
633: for att_rec in cur_attributes
634: loop
635: -- dbms_output.put_line('Ak_Attributes: ' || att_rec.attribute_code);
636: update ak_attributes
637: set item_style = l_new_item_style
638: where rowid = att_rec.rowid;
639: l_upgraded := true;
640: end loop;