DBA Data[Home] [Help]

APPS.UMX_REGISTER_USER_PVT dependencies on WF_EVENT

Line 9: Procedure CreatePersonPartyInternal (p_event in out NOCOPY WF_EVENT_T,

5: -- Purpose :
6: -- This package contains specification user registration
7:
8:
9: Procedure CreatePersonPartyInternal (p_event in out NOCOPY WF_EVENT_T,
10: p_person_party_id out NOCOPY varchar2)
11: IS
12:
13: --l_person_party_id hz_parties.party_id%type;

Line 92: Procedure CreateContactPointInternal (p_event in out NOCOPY WF_EVENT_T,

88: END CreatePersonPartyInternal;
89:
90:
91:
92: Procedure CreateContactPointInternal (p_event in out NOCOPY WF_EVENT_T,
93: p_contact_party_id in varchar2)
94: IS
95:
96:

Line 233: Procedure RegisterB2BUser_Internal (p_event in out NOCOPY WF_EVENT_T,

229: -- command - Run/Cancel/Timeout
230: -- OUT
231: -- resultout - result of the process based on which the next step is followed
232:
233: Procedure RegisterB2BUser_Internal (p_event in out NOCOPY WF_EVENT_T,
234: p_person_party_id out NOCOPy varchar2) IS
235:
236:
237: l_org_contact_id NUMBER;

Line 325: Procedure RegisterB2CUser_Internal (p_event in out NOCOPY WF_EVENT_T,

321: -- command - Run/Cancel/Timeout
322: -- OUT
323: -- resultout - result of the process based on which the next step is followed
324:
325: Procedure RegisterB2CUser_Internal (p_event in out NOCOPY WF_EVENT_T,
326: p_person_party_id out NOCOPY varchar2 )
327:
328: IS
329: l_contact_preference_rec HZ_CONTACT_PREFERENCE_V2PUB.CONTACT_PREFERENCE_REC_TYPE;

Line 401: -- p_event - WF_EVENT_T which holds the data that needs to passed from/to

397: -- IN
398: -- the signature follows Workflow business events standards
399: -- p_subscription_guid - Run/Cancel/Timeout
400: -- IN/OUT
401: -- p_event - WF_EVENT_T which holds the data that needs to passed from/to
402: -- subscriber of the event
403: --
404:
405: function create_person_party (p_subscription_guid in raw,

Line 406: p_event in out NOCOPY WF_EVENT_T)

402: -- subscriber of the event
403: --
404:
405: function create_person_party (p_subscription_guid in raw,
406: p_event in out NOCOPY WF_EVENT_T)
407: return varchar2 is
408:
409:
410:

Line 518: -- p_event - WF_EVENT_T which holds the data that needs to passed from/to

514: -- IN
515: -- the signature follows Workflow business events standards
516: -- p_subscription_guid - Run/Cancel/Timeout
517: -- IN/OUT
518: -- p_event - WF_EVENT_T which holds the data that needs to passed from/to
519: -- subscriber of the event
520: --
521: function Register_Business_User (p_subscription_guid in raw,
522: p_event in out NOCOPY WF_EVENT_T) return varchar2 is

Line 522: p_event in out NOCOPY WF_EVENT_T) return varchar2 is

518: -- p_event - WF_EVENT_T which holds the data that needs to passed from/to
519: -- subscriber of the event
520: --
521: function Register_Business_User (p_subscription_guid in raw,
522: p_event in out NOCOPY WF_EVENT_T) return varchar2 is
523:
524: l_parameter_list wf_parameter_list_t;
525: l_success VARCHAR2 (10);
526: p_person_party_id varchar2 (30);

Line 585: WF_EVENT.SetErrorInfo (p_event,'ERROR');

581: WF_CORE.CONTEXT ('UMX_REGISTER_USER_PVT', 'REGISTER_BUSINESS_USER',
582: p_event.getEventName ( ),p_subscription_guid,
583: sqlerrm,sqlcode);
584:
585: WF_EVENT.SetErrorInfo (p_event,'ERROR');
586:
587: return 'ERROR';
588:
589: END Register_Business_User;

Line 604: -- p_event - WF_EVENT_T which holds the data that needs to passed from/to

600: -- IN
601: -- the signature follows Workflow business events standards
602: -- p_subscription_guid - Run/Cancel/Timeout
603: -- IN/OUT
604: -- p_event - WF_EVENT_T which holds the data that needs to passed from/to
605: -- subscriber of the event
606: --
607: function Register_Individual_user (p_subscription_guid in raw,
608: p_event in out NOCOPY WF_EVENT_T) return varchar2 is

Line 608: p_event in out NOCOPY WF_EVENT_T) return varchar2 is

604: -- p_event - WF_EVENT_T which holds the data that needs to passed from/to
605: -- subscriber of the event
606: --
607: function Register_Individual_user (p_subscription_guid in raw,
608: p_event in out NOCOPY WF_EVENT_T) return varchar2 is
609:
610: l_parameter_list wf_parameter_list_t;
611: l_success VARCHAR2 (10);
612: p_person_party_id varchar2 (30);

Line 665: WF_EVENT.SetErrorInfo (p_event,'ERROR');

661:
662: WF_CORE.CONTEXT ('UMX_REGISTER_USER_PVT', 'REGISTER_Individual_user',
663: p_event.getEventName (), p_subscription_guid,
664: sqlerrm,sqlcode);
665: WF_EVENT.SetErrorInfo (p_event,'ERROR');
666: return 'ERROR';
667:
668: END Register_Individual_User;
669: