DBA Data[Home] [Help]

APPS.JTFB_DCF dependencies on AK_REGIONS_TL

Line 683: from ak_regions_tl art, ak_regions ar

679: cursor c_regions_tl is
680: select art.created_by
681: , art.last_updated_by
682: , art.last_update_login
683: from ak_regions_tl art, ak_regions ar
684: where ar.attribute_category in ('BIN', 'REPORT', 'GRAPH'
685: , 'GRAPH_REPORT', 'POPLIST')
686: and art.region_code = ar.region_code
687: and art.region_application_id = ar.region_application_id

Line 761: -- Updating ak_regions_tl

757: l_patch_applied := true;
758: end loop;
759: commit;
760:
761: -- Updating ak_regions_tl
762: for art_rec in c_regions_tl
763: loop
764: update ak_regions_tl
765: set created_by = l_created_by

Line 764: update ak_regions_tl

760:
761: -- Updating ak_regions_tl
762: for art_rec in c_regions_tl
763: loop
764: update ak_regions_tl
765: set created_by = l_created_by
766: , last_updated_by = l_last_updated_by
767: , last_update_login = l_last_update_login
768: where current of c_regions_tl;