DBA Data[Home] [Help]

APPS.OTA_INITIALIZATION_WF dependencies on WF_ITEMS

Line 58: l_itemkey wf_items.item_key%type := to_char(p_line_id);

54:
55: l_order_number oe_order_headers.order_number%type;
56: l_header_id oe_order_headers.header_id%type;
57: l_process wf_activities.name%type := upper(p_process);
58: l_itemkey wf_items.item_key%type := to_char(p_line_id);
59: l_owner_name per_people_f.full_name%type;
60: l_event_title ota_events_tl.title%type; --MLS change _tl added
61: l_owner_id ota_events.owner_id%type;
62: l_email_address per_people_f.email_address%type;

Line 221: l_item_key wf_items.item_key%TYPE;

217: l_order_number oe_order_headers.order_number%type;
218: l_header_id oe_order_headers.header_id%type;
219: l_proc varchar2(72) := g_package||'initialize_cancel_event';
220: l_wf_date VARCHAR2(30);
221: l_item_key wf_items.item_key%TYPE;
222: l_line_number oe_order_lines_all.line_number%type;
223:
224: BEGIN
225: hr_utility.set_location('Entering:'||l_proc, 5);

Line 385: l_itemkey wf_items.item_key%type;

381:
382: l_order_number oe_order_headers.order_number%type;
383: l_header_id oe_order_headers.header_id%type;
384: l_process wf_activities.name%type := upper(p_process);
385: l_itemkey wf_items.item_key%type;
386: l_line_number oe_order_lines_all.line_number%type;
387:
388: l_proc varchar2(72) := g_package||'initialize_cancel_order';
389:

Line 561: Procedure set_addnl_attributes(p_item_type in wf_items.item_type%type,

557: hr_utility.set_location('leaving:'||l_proc, 20);
558:
559: END;
560:
561: Procedure set_addnl_attributes(p_item_type in wf_items.item_type%type,
562: p_item_key in wf_items.item_key%type,
563: p_eventid in ota_events.event_id%type,
564: p_from in varchar2 default null
565: )

Line 562: p_item_key in wf_items.item_key%type,

558:
559: END;
560:
561: Procedure set_addnl_attributes(p_item_type in wf_items.item_type%type,
562: p_item_key in wf_items.item_key%type,
563: p_eventid in ota_events.event_id%type,
564: p_from in varchar2 default null
565: )
566:

Line 668: p_item_type in wf_items.item_type%type,

664:
665: end set_addnl_attributes;
666:
667: Procedure Initialize_instructor_wf(
668: p_item_type in wf_items.item_type%type,
669: p_eventid in ota_events.event_id%type,
670: p_sup_res_id in ota_resource_bookings.supplied_resource_id%type,
671: p_start_date in varchar2,
672: p_end_date in varchar2,

Line 684: l_item_key wf_items.item_key%type;

680: is
681: l_proc varchar2(72) := g_package||'Initialize_instructor_wf';
682:
683: l_process wf_activities.name%type := 'OTA_INSTRUCTOR_NTF_JSP_PRC';
684: l_item_key wf_items.item_key%type;
685:
686: l_title ota_events_tl.title%type;
687: l_start_date date;
688: l_end_date date;

Line 940: p_item_type in wf_items.item_type%type,

936:
937: end Initialize_instructor_wf;
938:
939: Procedure Initialize_wf(p_process in wf_process_activities.process_name%type,
940: p_item_type in wf_items.item_type%type,
941: p_person_id in number ,
942: p_eventid in ota_Events.event_id%type,
943: p_event_fired in varchar2)
944:

Line 949: l_item_key wf_items.item_key%type;

945: is
946: l_proc varchar2(72) := g_package||'Initialize_wf';
947:
948: l_process wf_activities.name%type := upper(p_process);
949: l_item_key wf_items.item_key%type;
950:
951: l_title ota_events_tl.title%type;
952: l_start_date date;
953: l_end_date date;

Line 1103: p_item_type in wf_items.item_type%type,

1099: end initialize_wf;
1100:
1101:
1102: Procedure Initialize_auto_wf(p_process in wf_process_activities.process_name%type,
1103: p_item_type in wf_items.item_type%type,
1104: p_event_fired in varchar2,
1105: p_event_id in ota_events.event_id%type default null)
1106: is
1107: l_proc varchar2(72) := g_package||'Initialize_auto_wf';

Line 1215: Procedure Init_LP_wf(p_item_type in wf_items.item_type%type,

1211:
1212: hr_utility.set_location('Leaving:'||l_proc, 5);
1213: end Initialize_auto_wf;
1214:
1215: Procedure Init_LP_wf(p_item_type in wf_items.item_type%type,
1216: p_lp_enrollment_id in ota_lp_enrollments.lp_enrollment_id%type,
1217: p_event_fired in varchar2)
1218: is
1219:

Line 1233: l_item_key wf_items.item_key%type;

1229: l_person_id per_people_f.person_id%type;
1230: l_LP_name ota_learning_paths_tl.name%type;
1231: l_start_date ota_learning_paths.start_date_active%type;
1232: l_process wf_activities.name%type := 'OTA_LP_JSP_PRC';
1233: l_item_key wf_items.item_key%type;
1234:
1235:
1236:
1237: begin

Line 1305: p_item_type in wf_items.item_type%type,

1301: end get_event_fired;
1302:
1303:
1304: procedure set_wf_item_attr(p_person_id in number,
1305: p_item_type in wf_items.item_type%type,
1306: p_item_key in wf_items.item_key%type)
1307: is
1308:
1309: l_proc varchar2(72) := g_package||'set_wf_item_attr';

Line 1306: p_item_key in wf_items.item_key%type)

1302:
1303:
1304: procedure set_wf_item_attr(p_person_id in number,
1305: p_item_type in wf_items.item_type%type,
1306: p_item_key in wf_items.item_key%type)
1307: is
1308:
1309: l_proc varchar2(72) := g_package||'set_wf_item_attr';
1310:

Line 1505: l_item_key wf_items.item_key%type;

1501: -- and oa.attempt_id = op.attempt_id
1502: and oa.attempt_id =p_attempt_id;
1503:
1504:
1505: l_item_key wf_items.item_key%type;
1506: l_item_type wf_items.item_type%type := 'OTWF';
1507: l_process wf_activities.name%type := 'OTA_ASSESSMENT_NTF_JSP_PRC';
1508:
1509: l_title ota_learning_objects.name%type;

Line 1506: l_item_type wf_items.item_type%type := 'OTWF';

1502: and oa.attempt_id =p_attempt_id;
1503:
1504:
1505: l_item_key wf_items.item_key%type;
1506: l_item_type wf_items.item_type%type := 'OTWF';
1507: l_process wf_activities.name%type := 'OTA_ASSESSMENT_NTF_JSP_PRC';
1508:
1509: l_title ota_learning_objects.name%type;
1510: l_score varchar2(100);

Line 1577: Procedure initialize_cert_ntf_wf(p_item_type in wf_items.item_type%type,

1573:
1574: -- This wf would be used for OTA_CERTIFICATION_NTF_JSP_PRC
1575: -- Called from alert
1576:
1577: Procedure initialize_cert_ntf_wf(p_item_type in wf_items.item_type%type,
1578: p_person_id in number default null,
1579: p_certification_id in ota_certifications_b.certification_id%type,
1580: p_cert_prd_enrollment_id in ota_cert_prd_enrollments.cert_prd_enrollment_id%type,
1581: p_cert_ntf_type in varchar2) is

Line 1600: l_item_key wf_items.item_key%type;

1596: l_end_date_comments ota_certifications_tl.end_date_comments%type;
1597: l_end_date_active ota_certifications_b.end_date_active%type;
1598:
1599: l_process wf_activities.name%type := 'OTA_CERTIFICATION_NTF_JSP_PRC';
1600: l_item_key wf_items.item_key%type;
1601:
1602: begin
1603:
1604: open get_certification_info;

Line 1810: l_item_key wf_items.item_key%type;

1806: is
1807:
1808: l_proc varchar2(72) := g_package||'init_forum_notif';
1809:
1810: l_item_key wf_items.item_key%type;
1811: l_item_type wf_items.item_type%type := 'OTWF';
1812: l_process wf_activities.name%type := 'OTA_FORUM_NTF_JSP_PRC';
1813:
1814: cursor get_message_details

Line 1811: l_item_type wf_items.item_type%type := 'OTWF';

1807:
1808: l_proc varchar2(72) := g_package||'init_forum_notif';
1809:
1810: l_item_key wf_items.item_key%type;
1811: l_item_type wf_items.item_type%type := 'OTWF';
1812: l_process wf_activities.name%type := 'OTA_FORUM_NTF_JSP_PRC';
1813:
1814: cursor get_message_details
1815: is

Line 1927: l_item_key wf_items.item_key%type;

1923: procedure init_course_eval_notif(p_booking_id OTA_DELEGATE_BOOKINGS.booking_id%type) is
1924:
1925: l_proc varchar2(72) := g_package||'init_course_eval_notif';
1926:
1927: l_item_key wf_items.item_key%type;
1928: l_item_type wf_items.item_type%type := 'OTWF';
1929: l_process wf_activities.name%type := 'OTA_COURSE_EVAL_PRC';
1930:
1931: l_person_id ota_forum_messages.person_id%type;

Line 1928: l_item_type wf_items.item_type%type := 'OTWF';

1924:
1925: l_proc varchar2(72) := g_package||'init_course_eval_notif';
1926:
1927: l_item_key wf_items.item_key%type;
1928: l_item_type wf_items.item_type%type := 'OTWF';
1929: l_process wf_activities.name%type := 'OTA_COURSE_EVAL_PRC';
1930:
1931: l_person_id ota_forum_messages.person_id%type;
1932: l_contact_id ota_forum_messages.contact_id%type;

Line 1962: procedure get_course_eval_status ( itemtype IN WF_ITEMS.ITEM_TYPE%TYPE,

1958: hr_utility.set_location('Leaving:'||l_proc, 10);
1959:
1960: end init_course_eval_notif;
1961:
1962: procedure get_course_eval_status ( itemtype IN WF_ITEMS.ITEM_TYPE%TYPE,
1963: itemkey IN WF_ITEMS.ITEM_KEY%TYPE,
1964: actid IN NUMBER,
1965: funcmode IN VARCHAR2,
1966: resultout OUT nocopy VARCHAR2 ) is

Line 1963: itemkey IN WF_ITEMS.ITEM_KEY%TYPE,

1959:
1960: end init_course_eval_notif;
1961:
1962: procedure get_course_eval_status ( itemtype IN WF_ITEMS.ITEM_TYPE%TYPE,
1963: itemkey IN WF_ITEMS.ITEM_KEY%TYPE,
1964: actid IN NUMBER,
1965: funcmode IN VARCHAR2,
1966: resultout OUT nocopy VARCHAR2 ) is
1967:

Line 1986: procedure get_course_eval_del_mode ( itemtype IN WF_ITEMS.ITEM_TYPE%TYPE,

1982: end if;
1983:
1984: end get_course_eval_status;
1985:
1986: procedure get_course_eval_del_mode ( itemtype IN WF_ITEMS.ITEM_TYPE%TYPE,
1987: itemkey IN WF_ITEMS.ITEM_KEY%TYPE,
1988: actid IN NUMBER,
1989: funcmode IN VARCHAR2,
1990: resultout OUT nocopy VARCHAR2 ) is

Line 1987: itemkey IN WF_ITEMS.ITEM_KEY%TYPE,

1983:
1984: end get_course_eval_status;
1985:
1986: procedure get_course_eval_del_mode ( itemtype IN WF_ITEMS.ITEM_TYPE%TYPE,
1987: itemkey IN WF_ITEMS.ITEM_KEY%TYPE,
1988: actid IN NUMBER,
1989: funcmode IN VARCHAR2,
1990: resultout OUT nocopy VARCHAR2 ) is
1991:

Line 2052: l_item_key wf_items.item_key%type;

2048: )
2049: is
2050: l_proc varchar2(72) := g_package||'RAISE_BUSINESS_EVENT';
2051:
2052: l_item_key wf_items.item_key%type;
2053:
2054: l_title ota_events_tl.title%type;
2055: l_start_date varchar2(100);
2056: l_end_date varchar2(100);