DBA Data[Home] [Help]

APPS.JTM_HOOK_UTIL_PKG dependencies on ASG_DOWNLOAD

Line 530: l_rc := asg_download.markDirty(p_publication_item_names(i), l_access_id, p_resource_id, 'I', sysdate );

526: RETURNING INTO l_access_id;
527: END IF;
528: -- insert record in outqueue ASG call here *****************************************
529: FOR i IN 1 .. p_publication_item_names.LAST LOOP
530: l_rc := asg_download.markDirty(p_publication_item_names(i), l_access_id, p_resource_id, 'I', sysdate );
531: END LOOP;
532: END IF;
533: END Insert_Acc;
534:

Line 547: l_rc := asg_download.markDirty(p_publication_item_names(i), p_access_id, p_resource_id, 'U', sysdate );

543: l_rc BOOLEAN;
544: BEGIN
545: --call update outqueue ASG call *****************************************
546: FOR i IN 1 .. p_publication_item_names.LAST LOOP
547: l_rc := asg_download.markDirty(p_publication_item_names(i), p_access_id, p_resource_id, 'U', sysdate );
548: END LOOP;
549: END Update_Acc;
550:
551: /***

Line 695: l_rc := asg_download.markDirty( p_publication_item_names(j), l_tab_access_id(i)

691: /*** yes -> loop over arrays containing mobile_user_id and access_id and notify oLite ***/
692: FOR i IN l_tab_mobile_user_id.FIRST .. l_tab_mobile_user_id.LAST LOOP
693: -- notify oLite of deletion ***
694: FOR j IN 1 .. p_publication_item_names.LAST LOOP
695: l_rc := asg_download.markDirty( p_publication_item_names(j), l_tab_access_id(i)
696: , l_tab_mobile_user_id(i), 'D', sysdate );
697: END LOOP;
698: END LOOP;
699: END IF;