DBA Data[Home] [Help]

APPS.WF_EVENT_SYNCHRONIZE_PKG dependencies on WF_EVENT_FUNCTIONS_PKG

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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