DBA Data[Home] [Help]

APPS.JTFB_DCF dependencies on AK_REGION_ITEMS_TL

Line 714: from ak_region_items_tl arat

710: cursor c_region_items_tl is
711: select arat.created_by
712: , arat.last_updated_by
713: , arat.last_update_login
714: from ak_region_items_tl arat
715: , ak_region_items ara
716: , ak_regions ar
717: where ar.attribute_category in ('BIN', 'REPORT', 'GRAPH'
718: , 'GRAPH_REPORT', 'POPLIST')

Line 787: -- Updating ak_region_items_tl

783: l_patch_applied := true;
784: end loop;
785: commit;
786:
787: -- Updating ak_region_items_tl
788: for rec in c_region_items_tl
789: loop
790: update ak_region_items_tl
791: set created_by = l_created_by

Line 790: update ak_region_items_tl

786:
787: -- Updating ak_region_items_tl
788: for rec in c_region_items_tl
789: loop
790: update ak_region_items_tl
791: set created_by = l_created_by
792: , last_updated_by = l_last_updated_by
793: , last_update_login = l_last_update_login
794: where current of c_region_items_tl;