DBA Data[Home] [Help]

APPS.UMX_REGISTRATION_PVT dependencies on WF_EVENTS

Line 85: l_event_name WF_EVENTS_VL.NAME%type;

81: l_parameter_list wf_parameter_list_t;
82: j number;
83: l_item_key varchar2(2000);
84: l_requested_by_user_id varchar2(2000);
85: l_event_name WF_EVENTS_VL.NAME%type;
86: l_reg_service_type UMX_REG_SERVICES_B.REG_SERVICE_TYPE%type;
87: l_index_to_add number;
88:
89: l_status varchar2(8);

Line 285: function get_event_name (p_event_guid WF_EVENTS.guid%type) return wf_events.name%type is

281:
282: end format_address_lov;
283:
284:
285: function get_event_name (p_event_guid WF_EVENTS.guid%type) return wf_events.name%type is
286:
287: CURSOR get_event_name_cursor is
288: select name
289: from wf_events

Line 289: from wf_events

285: function get_event_name (p_event_guid WF_EVENTS.guid%type) return wf_events.name%type is
286:
287: CURSOR get_event_name_cursor is
288: select name
289: from wf_events
290: where guid = HEXTORAW(p_event_guid);
291:
292: x_event_name wf_events.name%type;
293:

Line 292: x_event_name wf_events.name%type;

288: select name
289: from wf_events
290: where guid = HEXTORAW(p_event_guid);
291:
292: x_event_name wf_events.name%type;
293:
294: begin
295: open get_event_name_cursor;
296: fetch get_event_name_cursor into x_event_name;

Line 315: x_wf_notification_event_name out nocopy WF_EVENTS.NAME%type,

311: x_wf_role_name out nocopy UMX_REG_SERVICES_VL.WF_ROLE_NAME%type,
312: x_ame_application_id out nocopy UMX_REG_SERVICES_VL.AME_APPLICATION_ID%type,
313: x_ame_transaction_type_id out nocopy UMX_REG_SERVICES_VL.AME_TRANSACTION_TYPE_ID%type,
314: x_justification out nocopy UMX_REG_REQUESTS.JUSTIFICATION%type,
315: x_wf_notification_event_name out nocopy WF_EVENTS.NAME%type,
316: x_email_verification_flag out nocopy UMX_REG_SERVICES_VL.EMAIL_VERIFICATION_FLAG%type,
317: x_application_id out nocopy UMX_REG_SERVICES_VL.APPLICATION_ID%type,
318: x_reg_function_name out nocopy FND_FORM_FUNCTIONS.FUNCTION_NAME%type,
319: x_display_name out nocopy UMX_REG_SERVICES_VL.DISPLAY_NAME%type,

Line 321: x_wf_bus_logic_event_name out nocopy WF_EVENTS.NAME%type) is

317: x_application_id out nocopy UMX_REG_SERVICES_VL.APPLICATION_ID%type,
318: x_reg_function_name out nocopy FND_FORM_FUNCTIONS.FUNCTION_NAME%type,
319: x_display_name out nocopy UMX_REG_SERVICES_VL.DISPLAY_NAME%type,
320: x_description out nocopy UMX_REG_SERVICES_VL.DESCRIPTION%type,
321: x_wf_bus_logic_event_name out nocopy WF_EVENTS.NAME%type) is
322:
323: CURSOR get_request_data is
324: SELECT regreq.WF_ROLE_NAME, regreq.REG_SERVICE_TYPE, regser.APPLICATION_ID,
325: regreq.AME_APPLICATION_ID, regreq.AME_TRANSACTION_TYPE_ID,

Line 337: l_wf_notification_event_guid wf_events.guid%type;

333: WHERE regser.reg_function_id = func.function_id (+)
334: AND regreq.REG_SERVICE_CODE = regser.REG_SERVICE_CODE
335: AND regreq.reg_request_id = p_reg_request_id;
336:
337: l_wf_notification_event_guid wf_events.guid%type;
338: l_wf_bus_logic_event_guid wf_events.guid%type;
339:
340: begin
341:

Line 338: l_wf_bus_logic_event_guid wf_events.guid%type;

334: AND regreq.REG_SERVICE_CODE = regser.REG_SERVICE_CODE
335: AND regreq.reg_request_id = p_reg_request_id;
336:
337: l_wf_notification_event_guid wf_events.guid%type;
338: l_wf_bus_logic_event_guid wf_events.guid%type;
339:
340: begin
341:
342: if (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_PROCEDURE) then

Line 392: x_wf_notification_event_name out nocopy WF_EVENTS.NAME%type,

388: x_reg_service_type out nocopy UMX_REG_SERVICES_VL.REG_SERVICE_TYPE%type,
389: x_wf_role_name out nocopy UMX_REG_SERVICES_VL.WF_ROLE_NAME%type,
390: x_ame_application_id out nocopy UMX_REG_SERVICES_VL.AME_APPLICATION_ID%type,
391: x_ame_transaction_type_id out nocopy UMX_REG_SERVICES_VL.AME_TRANSACTION_TYPE_ID%type,
392: x_wf_notification_event_name out nocopy WF_EVENTS.NAME%type,
393: x_email_verification_flag out nocopy UMX_REG_SERVICES_VL.EMAIL_VERIFICATION_FLAG%type,
394: x_application_id out nocopy UMX_REG_SERVICES_VL.APPLICATION_ID%type,
395: x_reg_function_name out nocopy FND_FORM_FUNCTIONS.FUNCTION_NAME%type,
396: x_display_name out nocopy UMX_REG_SERVICES_VL.DISPLAY_NAME%type,

Line 398: x_wf_bus_logic_event_name out nocopy WF_EVENTS.NAME%type) is

394: x_application_id out nocopy UMX_REG_SERVICES_VL.APPLICATION_ID%type,
395: x_reg_function_name out nocopy FND_FORM_FUNCTIONS.FUNCTION_NAME%type,
396: x_display_name out nocopy UMX_REG_SERVICES_VL.DISPLAY_NAME%type,
397: x_description out nocopy UMX_REG_SERVICES_VL.DESCRIPTION%type,
398: x_wf_bus_logic_event_name out nocopy WF_EVENTS.NAME%type) is
399:
400: CURSOR get_req_svc_data IS
401: SELECT regser.WF_ROLE_NAME, regser.REG_SERVICE_TYPE, regser.APPLICATION_ID,
402: regser.wf_notification_event_guid, regser.AME_APPLICATION_ID,

Line 410: l_wf_notification_event_guid wf_events.guid%type;

406: FROM UMX_REG_SERVICES_VL regser, fnd_form_functions func
407: WHERE regser.reg_function_id = func.function_id (+)
408: AND REG_SERVICE_CODE = p_reg_service_code;
409:
410: l_wf_notification_event_guid wf_events.guid%type;
411: l_wf_bus_logic_event_guid wf_events.guid%type;
412:
413: begin
414:

Line 411: l_wf_bus_logic_event_guid wf_events.guid%type;

407: WHERE regser.reg_function_id = func.function_id (+)
408: AND REG_SERVICE_CODE = p_reg_service_code;
409:
410: l_wf_notification_event_guid wf_events.guid%type;
411: l_wf_bus_logic_event_guid wf_events.guid%type;
412:
413: begin
414:
415: if (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_PROCEDURE) then

Line 455: x_wf_notification_event_name out nocopy WF_EVENTS.NAME%type,

451: x_reg_service_code out nocopy UMX_REG_SERVICES_B.REG_SERVICE_CODE%type,
452: x_reg_service_type out nocopy UMX_REG_SERVICES_VL.REG_SERVICE_TYPE%type,
453: x_ame_application_id out nocopy UMX_REG_SERVICES_VL.AME_APPLICATION_ID%type,
454: x_ame_transaction_type_id out nocopy UMX_REG_SERVICES_VL.AME_TRANSACTION_TYPE_ID%type,
455: x_wf_notification_event_name out nocopy WF_EVENTS.NAME%type,
456: x_email_verification_flag out nocopy UMX_REG_SERVICES_VL.EMAIL_VERIFICATION_FLAG%type,
457: x_reg_function_name out nocopy FND_FORM_FUNCTIONS.FUNCTION_NAME%type,
458: x_wf_bus_logic_event_name out nocopy WF_EVENTS.NAME%type) is
459:

Line 458: x_wf_bus_logic_event_name out nocopy WF_EVENTS.NAME%type) is

454: x_ame_transaction_type_id out nocopy UMX_REG_SERVICES_VL.AME_TRANSACTION_TYPE_ID%type,
455: x_wf_notification_event_name out nocopy WF_EVENTS.NAME%type,
456: x_email_verification_flag out nocopy UMX_REG_SERVICES_VL.EMAIL_VERIFICATION_FLAG%type,
457: x_reg_function_name out nocopy FND_FORM_FUNCTIONS.FUNCTION_NAME%type,
458: x_wf_bus_logic_event_name out nocopy WF_EVENTS.NAME%type) is
459:
460: CURSOR get_reg_svc_code_from_role (p_reg_serivce_type in varchar2) IS
461: select REG_SERVICE_TYPE, REG_SERVICE_CODE, AME_APPLICATION_ID,
462: AME_TRANSACTION_TYPE_ID, REG_FUNCTION_ID,

Line 469: l_wf_notification_event_guid wf_events.guid%type;

465: from UMX_REG_SERVICES_B
466: where WF_ROLE_NAME = p_wf_role_name
467: and reg_service_type = p_reg_serivce_type;
468:
469: l_wf_notification_event_guid wf_events.guid%type;
470: l_wf_bus_logic_event_guid wf_events.guid%type;
471:
472: begin
473:

Line 470: l_wf_bus_logic_event_guid wf_events.guid%type;

466: where WF_ROLE_NAME = p_wf_role_name
467: and reg_service_type = p_reg_serivce_type;
468:
469: l_wf_notification_event_guid wf_events.guid%type;
470: l_wf_bus_logic_event_guid wf_events.guid%type;
471:
472: begin
473:
474: if (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_PROCEDURE) then

Line 520: l_wf_notification_event_name wf_events.name%TYPE;

516: j number;
517: l_wf_role_name UMX_REG_SERVICES_VL.WF_ROLE_NAME%TYPE;
518: l_reg_service_type UMX_REG_SERVICES_VL.REG_SERVICE_TYPE%TYPE;
519: l_application_id UMX_REG_SERVICES_VL.APPLICATION_ID%TYPE;
520: l_wf_notification_event_name wf_events.name%TYPE;
521: l_ame_application_id UMX_REG_SERVICES_VL.AME_APPLICATION_ID%TYPE;
522: l_ame_transaction_type_id UMX_REG_SERVICES_VL.AME_TRANSACTION_TYPE_ID%TYPE;
523: l_email_verification_flag UMX_REG_SERVICES_VL.EMAIL_VERIFICATION_FLAG%TYPE;
524: l_reg_function_name fnd_form_functions.FUNCTION_NAME%TYPE;

Line 527: l_wf_bus_logic_event_name wf_events.name%TYPE;

523: l_email_verification_flag UMX_REG_SERVICES_VL.EMAIL_VERIFICATION_FLAG%TYPE;
524: l_reg_function_name fnd_form_functions.FUNCTION_NAME%TYPE;
525: l_display_name UMX_REG_SERVICES_VL.DISPLAY_NAME%TYPE;
526: l_description UMX_REG_SERVICES_VL.DESCRIPTION%TYPE;
527: l_wf_bus_logic_event_name wf_events.name%TYPE;
528: l_justification UMX_REG_REQUESTS.JUSTIFICATION%TYPE;
529: l_requested_by_user_id UMX_REG_REQUESTS.REQUESTED_BY_USER_ID%TYPE;
530: l_requested_for_user_id UMX_REG_REQUESTS.REQUESTED_FOR_USER_ID%TYPE;
531: l_requested_for_party_id UMX_REG_REQUESTS.REQUESTED_FOR_PARTY_ID%type;

Line 849: l_wf_notification_event_name wf_events.name%TYPE;

845: l_reg_service_code umx_reg_requests.reg_service_code%type;
846: l_ame_application_id umx_reg_requests.ame_application_id%type;
847: l_ame_transaction_type_id umx_reg_requests.ame_transaction_type_id%type;
848: l_justification umx_reg_requests.justification%type;
849: l_wf_notification_event_name wf_events.name%TYPE;
850: l_wf_bus_logic_event_name wf_events.name%TYPE;
851: l_email_verification_flag UMX_REG_SERVICES_VL.EMAIL_VERIFICATION_FLAG%TYPE;
852: l_application_id UMX_REG_SERVICES_VL.APPLICATION_ID%TYPE;
853: l_reg_function_name fnd_form_functions.FUNCTION_NAME%TYPE;

Line 850: l_wf_bus_logic_event_name wf_events.name%TYPE;

846: l_ame_application_id umx_reg_requests.ame_application_id%type;
847: l_ame_transaction_type_id umx_reg_requests.ame_transaction_type_id%type;
848: l_justification umx_reg_requests.justification%type;
849: l_wf_notification_event_name wf_events.name%TYPE;
850: l_wf_bus_logic_event_name wf_events.name%TYPE;
851: l_email_verification_flag UMX_REG_SERVICES_VL.EMAIL_VERIFICATION_FLAG%TYPE;
852: l_application_id UMX_REG_SERVICES_VL.APPLICATION_ID%TYPE;
853: l_reg_function_name fnd_form_functions.FUNCTION_NAME%TYPE;
854: l_display_name UMX_REG_SERVICES_VL.DISPLAY_NAME%TYPE;