DBA Data[Home] [Help]

APPS.WF_EVENT_SYNCHRONIZE_PKG dependencies on WF_EVENT_FUNCTIONS_PKG

Line 560: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.system.update', g.guid);

556:
557: dbms_lob.createtemporary(l_clob, FALSE, DBMS_LOB.CALL);
558:
559: -- Get our XML document
560: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.system.update', g.guid);
561:
562: -- Add this to our return CLOB
563: dbms_lob.append(returnclob, l_clob);
564:

Line 627: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.agent.update', g.guid);

623:
624: dbms_lob.createtemporary(l_clob, FALSE, DBMS_LOB.CALL);
625:
626: -- Get our XML document
627: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.agent.update', g.guid);
628:
629: if (p_isexact = false) then
630: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
631: wf_log_pkg.string(wf_log_pkg.level_statement,

Line 704: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.agentgroup.update', g.guid);

700:
701: dbms_lob.createtemporary(l_clob, FALSE, DBMS_LOB.CALL);
702:
703: -- Get our XML document
704: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.agentgroup.update', g.guid);
705:
706: -- Add this to our return CLOB
707: dbms_lob.append(returnclob, l_clob);
708:

Line 759: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.event.update', g.guid);

755: if (p_key is not null OR p_key <> '') then
756:
757: FOR g IN events LOOP
758: -- Get our XML document
759: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.event.update', g.guid);
760: -- Add this to our return CLOB
761: dbms_lob.append(returnclob, l_clob);
762: -- Kill the Loop CLOB
763: dbms_lob.trim(l_clob, 0);

Line 770: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.event.update', g.guid);

766: else
767:
768: FOR g IN events_all LOOP
769: -- Get our XML document
770: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.event.update', g.guid);
771: -- Add this to our return CLOB
772: dbms_lob.append(returnclob, l_clob);
773: -- Kill the Loop CLOB
774: dbms_lob.trim(l_clob, 0);

Line 828: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.group.update', g.names);

824: if (p_key is not null OR p_key <> '') then
825:
826: FOR g IN event_groups LOOP
827: -- Get our XML document
828: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.group.update', g.names);
829: -- Add this to our return CLOB
830: dbms_lob.append(returnclob, l_clob);
831: -- Kill the Loop CLOB
832: dbms_lob.trim(l_clob, 0);

Line 839: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.group.update', g.names);

835: else
836:
837: FOR g IN event_groups_all LOOP
838: -- Get our XML document
839: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.group.update', g.names);
840: -- Add this to our return CLOB
841: dbms_lob.append(returnclob, l_clob);
842: -- Kill the Loop CLOB
843: dbms_lob.trim(l_clob, 0);

Line 891: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.event.update', g.guid);

887: if (p_key is not null OR p_key <> '') then
888:
889: FOR g IN events LOOP
890: -- Get our XML document
891: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.event.update', g.guid);
892: -- Add this to our return CLOB
893: dbms_lob.append(returnclob, l_clob);
894: -- Kill the Loop CLOB
895: dbms_lob.trim(l_clob, 0);

Line 902: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.event.update', g.guid);

898: else
899:
900: FOR g IN events_all LOOP
901: -- Get our XML document
902: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.event.update', g.guid);
903: -- Add this to our return CLOB
904: dbms_lob.append(returnclob, l_clob);
905: -- Kill the Loop CLOB
906: dbms_lob.trim(l_clob, 0);

Line 946: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.group.update', g.names);

942:
943: dbms_lob.createtemporary(l_clob, FALSE, DBMS_LOB.CALL);
944:
945: -- Get our XML document
946: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.group.update', g.names);
947:
948: -- Add this to our return CLOB
949: dbms_lob.append(returnclob, l_clob);
950:

Line 1024: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.subscription.update', g.guid);

1020:
1021: dbms_lob.createtemporary(l_clob, FALSE, DBMS_LOB.CALL);
1022:
1023: -- Get our XML document
1024: l_clob := wf_event_functions_pkg.generate('oracle.apps.wf.event.subscription.update', g.guid);
1025:
1026: if (p_isexact = false) then
1027: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
1028: wf_log_pkg.string(wf_log_pkg.level_statement,