DBA Data[Home] [Help]

APPS.POS_SPM_WF_PKG1 dependencies on WF_CORE

Line 433: wf_core.context(g_package_name,'NOTIFY_ADDR_EVENTS',l_itemtype,l_itemkey);

429: x_receiver := l_receiver;
430:
431: EXCEPTION
432: WHEN OTHERS THEN
433: wf_core.context(g_package_name,'NOTIFY_ADDR_EVENTS',l_itemtype,l_itemkey);
434: raise_application_error(-20041, 'Failure at step ' || l_step, true);
435: END notify_addr_events;
436:
437: -- notify buyer admins that an address is created

Line 622: wf_core.context(g_package_name,'NOTIFY_BUS_CLASS_CRT_REMOVED',l_itemtype,l_itemkey);

618: x_receiver := l_receiver;
619:
620: EXCEPTION
621: WHEN OTHERS THEN
622: wf_core.context(g_package_name,'NOTIFY_BUS_CLASS_CRT_REMOVED',l_itemtype,l_itemkey);
623: raise_application_error(-20043,'Failure at step ' || l_step , true);
624: END notify_bus_class_changed;
625:
626: -- notify buyer admins that a business classification is added to the

Line 812: wf_core.context(g_package_name,'NOTIFY_CONTACT_CREATED',l_itemtype,l_itemkey);

808: x_receiver := l_receiver;
809:
810: EXCEPTION
811: WHEN OTHERS THEN
812: wf_core.context(g_package_name,'NOTIFY_CONTACT_CREATED',l_itemtype,l_itemkey);
813: raise_application_error(-20044,'Failure at step ' || l_step , true);
814: END notify_contact_events;
815:
816: -- notify buyer admins that an contact is removed

Line 954: wf_core.context(g_package_name,'NOTIFY_CONTACT_LINK_CREATED',l_itemtype,l_itemkey);

950: x_receiver := l_receiver;
951:
952: EXCEPTION
953: WHEN OTHERS THEN
954: wf_core.context(g_package_name,'NOTIFY_CONTACT_LINK_CREATED',l_itemtype,l_itemkey);
955: raise_application_error(-20046, 'Failure at step ' || l_step , true);
956: END notify_contact_link_events;
957:
958: PROCEDURE notify_contact_link_created

Line 1089: wf_core.context(g_package_name,'NOTIFY_PRODUCT_CRT_REMOVED',l_itemtype,l_itemkey);

1085: x_receiver := l_receiver;
1086:
1087: EXCEPTION
1088: WHEN OTHERS THEN
1089: wf_core.context(g_package_name,'NOTIFY_PRODUCT_CRT_REMOVED',l_itemtype,l_itemkey);
1090: raise_application_error(-20048, 'Failure at step ' || l_step, true);
1091: END notify_product_crt_removed;
1092:
1093: -- notify buyer admins that a business classification is added to the

Line 1389: wf_core.context(g_package_name,'NOTIFY_DUP_SUPPLIER_REG',l_itemtype,l_itemkey);

1385: WHEN OTHERS THEN
1386: -- bug 2809368, need to rollback before return as this procedure uses
1387: -- autonomous_transaction
1388: ROLLBACK;
1389: wf_core.context(g_package_name,'NOTIFY_DUP_SUPPLIER_REG',l_itemtype,l_itemkey);
1390: raise_application_error(-20049, 'Failure at step ' || l_step, true);
1391: END notify_dup_supplier_reg;
1392:
1393: PROCEDURE get_reg_ou_id

Line 1513: wf_core.context(g_package_name,'NOTIFY_SUPPLIER_REGISTERED',l_itemtype,l_itemkey);

1509: x_receiver := l_receiver;
1510:
1511: EXCEPTION
1512: WHEN OTHERS THEN
1513: wf_core.context(g_package_name,'NOTIFY_SUPPLIER_REGISTERED',l_itemtype,l_itemkey);
1514: raise_application_error(-20052, 'Failure at step ' || l_step, true);
1515: END notify_supplier_registered;
1516:
1517: FUNCTION get_admin_email RETURN VARCHAR2

Line 1640: wf_core.context(g_package_name,'NOTIFY_SUPPLIER_APPROVED',l_itemtype,l_itemkey);

1636: x_itemkey := l_itemkey;
1637:
1638: EXCEPTION
1639: WHEN OTHERS THEN
1640: wf_core.context(g_package_name,'NOTIFY_SUPPLIER_APPROVED',l_itemtype,l_itemkey);
1641: raise_application_error(-20053, 'Failure at step ' || l_step, true);
1642: END notify_supplier_approved;
1643:
1644: -- Notify supplie user of login info.

Line 1726: wf_core.context(g_package_name,'NOTIFY_SUPPLIER_USER_APPROVED',l_itemtype,l_itemkey);

1722: x_itemkey := l_itemkey;
1723:
1724: EXCEPTION
1725: WHEN OTHERS THEN
1726: wf_core.context(g_package_name,'NOTIFY_SUPPLIER_USER_APPROVED',l_itemtype,l_itemkey);
1727: raise_application_error(-20053, 'Failure at step ' || l_step, true);
1728: END notify_supplier_user_approved;
1729:
1730: -- notify the supplier that his/her supplier registration is

Line 1819: wf_core.context(g_package_name,'NOTIFY_SUPPLIER_REJECTED',l_itemtype,l_itemkey);

1815: x_receiver := l_receiver;
1816:
1817: EXCEPTION
1818: WHEN OTHERS THEN
1819: wf_core.context(g_package_name,'NOTIFY_SUPPLIER_REJECTED',l_itemtype,l_itemkey);
1820: raise_application_error(-20050, 'Failure at step ' || l_step, true);
1821: END notify_supplier_rejected;
1822:
1823: -- This procedure is used by workflow to generate the buyer note with proper heading

Line 1872: wf_core.context(g_package_name,'BUYER_NOTE',Sqlerrm);

1868: END IF;
1869:
1870: EXCEPTION
1871: WHEN OTHERS THEN
1872: wf_core.context(g_package_name,'BUYER_NOTE',Sqlerrm);
1873: raise_application_error(-20051, 'Failure at step ' || l_step, true);
1874: END buyer_note;
1875:
1876: -- generates the buyer's note document for notifications to suppliers on

Line 1902: wf_core.context(g_package_name,'BANK_ACCT_BUYER_NOTE',Sqlerrm);

1898: END IF;
1899:
1900: EXCEPTION
1901: WHEN OTHERS THEN
1902: wf_core.context(g_package_name,'BANK_ACCT_BUYER_NOTE',Sqlerrm);
1903: raise_application_error(-20051, 'Failure at step ' || l_step, true);
1904: END bank_acct_buyer_note;
1905:
1906: --

Line 1979: WF_CORE.CONTEXT ('POS_SPM_WF_PKG1', 'setup_acct_action_receiver', itemtype, itemkey, to_char(actid), funcmode);

1975: resultout := 'COMPLETE';
1976:
1977: EXCEPTION
1978: WHEN OTHERS THEN
1979: WF_CORE.CONTEXT ('POS_SPM_WF_PKG1', 'setup_acct_action_receiver', itemtype, itemkey, to_char(actid), funcmode);
1980: END setup_acct_action_receiver;
1981:
1982: -- wf function activity to setup buyer receivers for supplier account update
1983: PROCEDURE setup_acct_upd_buyer_rcvr

Line 2035: WF_CORE.CONTEXT ('POS_SPM_WF_PKG1', 'setup_acct_upd_buyer_rcvr', itemtype,

2031: RETURN;
2032:
2033: EXCEPTION
2034: WHEN OTHERS THEN
2035: WF_CORE.CONTEXT ('POS_SPM_WF_PKG1', 'setup_acct_upd_buyer_rcvr', itemtype,
2036: itemkey, to_char(actid), funcmode);
2037: RAISE;
2038: END setup_acct_upd_buyer_rcvr;
2039:

Line 2142: WF_CORE.CONTEXT ('POS_SPM_WF_PKG1', 'setup_acct_crt_buyer_rcvr', itemtype,itemkey, to_char(actid), funcmode);

2138: RETURN;
2139:
2140: EXCEPTION
2141: WHEN OTHERS THEN
2142: WF_CORE.CONTEXT ('POS_SPM_WF_PKG1', 'setup_acct_crt_buyer_rcvr', itemtype,itemkey, to_char(actid), funcmode);
2143: END setup_acct_crt_buyer_rcvr;
2144:
2145: -- wf function activity to setup supplier receiver for account creation
2146: PROCEDURE setup_acct_crt_supp_rcvr

Line 2239: wf_core.context(g_package_name,'NOTIFY_ACCOUNT_CREATE',l_itemtype,l_itemkey);

2235: x_itemkey := l_itemkey;
2236:
2237: EXCEPTION
2238: WHEN OTHERS THEN
2239: wf_core.context(g_package_name,'NOTIFY_ACCOUNT_CREATE',l_itemtype,l_itemkey);
2240: raise_application_error(-20050, 'Failure at step ' || l_step, true);
2241:
2242: END notify_account_create;
2243:

Line 2336: wf_core.context(g_package_name,'NOTIFY_BUYER_CREATE_ACCOUNT',l_itemtype,l_itemkey);

2332: x_itemkey := l_itemkey;
2333:
2334: EXCEPTION
2335: WHEN OTHERS THEN
2336: wf_core.context(g_package_name,'NOTIFY_BUYER_CREATE_ACCOUNT',l_itemtype,l_itemkey);
2337: raise_application_error(-20050, 'Failure at step ' || l_step, true);
2338: end notify_buyer_create_account;
2339:
2340: PROCEDURE notify_account_update

Line 2437: wf_core.context(g_package_name,'NOTIFY_ACCOUNT_UPDATE',l_itemtype,l_itemkey);

2433: x_itemkey := l_itemkey;
2434:
2435: EXCEPTION
2436: WHEN OTHERS THEN
2437: wf_core.context(g_package_name,'NOTIFY_ACCOUNT_UPDATE',l_itemtype,l_itemkey);
2438: raise_application_error(-20050, 'Failure at step ' || l_step, true);
2439:
2440: END notify_account_update;
2441:

Line 2540: wf_core.context(g_package_name,'NOTIFY_BUYER_UPDATE_ACCOUNT',l_itemtype,l_itemkey);

2536: x_itemkey := l_itemkey;
2537:
2538: EXCEPTION
2539: WHEN OTHERS THEN
2540: wf_core.context(g_package_name,'NOTIFY_BUYER_UPDATE_ACCOUNT',l_itemtype,l_itemkey);
2541: raise_application_error(-20050, 'Failure at step ' || l_step, true);
2542:
2543: END notify_buyer_update_account;
2544:

Line 2681: WF_CORE.CONTEXT ('POS_SPM_WF_PKG1', 'setup_acct_addr_receiver', itemtype,

2677: RETURN;
2678:
2679: EXCEPTION
2680: WHEN OTHERS THEN
2681: WF_CORE.CONTEXT ('POS_SPM_WF_PKG1', 'setup_acct_addr_receiver', itemtype,
2682: itemkey, to_char(actid), funcmode);
2683: RAISE;
2684: END setup_acct_addr_receiver;
2685:

Line 2793: wf_core.context(g_package_name,'NOTIFY_ACCT_ADDR_CRTCHGRMV',l_itemtype,l_itemkey);

2789: x_itemkey := l_itemkey;
2790:
2791: EXCEPTION
2792: WHEN OTHERS THEN
2793: wf_core.context(g_package_name,'NOTIFY_ACCT_ADDR_CRTCHGRMV',l_itemtype,l_itemkey);
2794: raise_application_error(-20050, 'Failure at step ' || l_step, true);
2795: END notify_acct_addr_crtchgrmv;
2796:
2797: PROCEDURE notify_acct_addr_created

Line 3127: wf_core.context(g_package_name,'notify_bank_aprv_supp_aprv',l_itemtype,l_itemkey);

3123: x_receiver := l_receiver;
3124:
3125: EXCEPTION
3126: WHEN OTHERS THEN
3127: wf_core.context(g_package_name,'notify_bank_aprv_supp_aprv',l_itemtype,l_itemkey);
3128: IF ( fnd_log.level_error >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) THEN
3129: FND_LOG.string(fnd_log.level_error, 'pos_spm_wf_pkg1' , 'Call to notify_bank_aprv_supp_aprv failed');
3130: END IF;
3131: END notify_bank_aprv_supp_aprv;

Line 3203: wf_core.context(g_package_name,'NOTIFY_SUPPLIER_APPROVED_SSO_SYNC',l_itemtype,l_itemkey);

3199: x_itemkey := l_itemkey;
3200:
3201: EXCEPTION
3202: WHEN OTHERS THEN
3203: wf_core.context(g_package_name,'NOTIFY_SUPPLIER_APPROVED_SSO_SYNC',l_itemtype,l_itemkey);
3204: raise_application_error(-20053, 'Failure at step ' || l_step, true);
3205: END notify_supplier_apprv_ssosync;
3206:
3207: -- send email to non-primary contact of user registration

Line 3282: wf_core.context(g_package_name,'NOTIFY_USER_APPROVED_SSO_SYNC',l_itemtype,l_itemkey);

3278: x_itemkey := l_itemkey;
3279:
3280: EXCEPTION
3281: WHEN OTHERS THEN
3282: wf_core.context(g_package_name,'NOTIFY_USER_APPROVED_SSO_SYNC',l_itemtype,l_itemkey);
3283: raise_application_error(-20053, 'Failure at step ' || l_step, true);
3284: END notify_user_approved_sso_sync;
3285:
3286: -- CODE ADDED FOR BUSINESS CLASSIFICATION RE-CERTIFICATION ER

Line 3506: wf_core.context(g_package_name,'bc_recert_workflow',l_itemtype,l_itemkey);

3502: EXCEPTION
3503:
3504: WHEN OTHERS THEN
3505:
3506: wf_core.context(g_package_name,'bc_recert_workflow',l_itemtype,l_itemkey);
3507:
3508: IF ( fnd_log.level_error >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) THEN
3509: FND_LOG.string(fnd_log.level_error, 'pos_spm_wf_pkg1' , 'Call to the workflow process for sending reminder notifications for Business Classification Re-Certification failed.');
3510: END IF;