DBA Data[Home] [Help]

APPS.IRC_OFFER_NOTIFICATIONS_PKG dependencies on IRC_NOTIFICATION_HELPER_PKG

Line 598: l_id := irc_notification_helper_pkg.send_notification

594: hr_utility.set_location(l_proc, 80);
595:
596: -- send notification
597: if l_applicant_id is not null then
598: l_id := irc_notification_helper_pkg.send_notification
599: ( p_person_id => l_applicant_id
600: , p_subject => l_subject
601: , p_html_body => l_html_body
602: , p_text_body => l_text_body

Line 665: l_id := irc_notification_helper_pkg.send_notification

661: hr_utility.set_location(l_proc, 130);
662:
663: -- send notification to manager
664: if l_manager_id is not null then
665: l_id := irc_notification_helper_pkg.send_notification
666: ( p_person_id => l_manager_id
667: , p_subject => l_subject
668: , p_html_body => l_html_body
669: , p_text_body => l_text_body

Line 675: l_id := irc_notification_helper_pkg.send_notification

671: );
672: end if;
673: -- send notification to recruiter
674: if l_recruiter_id is not null and l_manager_id <> l_recruiter_id then
675: l_id := irc_notification_helper_pkg.send_notification
676: ( p_person_id => l_recruiter_id
677: , p_subject => l_subject
678: , p_html_body => l_html_body
679: , p_text_body => l_text_body

Line 857: l_id := irc_notification_helper_pkg.send_notification

853:
854: -- send notification to applicant
855: BEGIN
856: if l_applicant_id is not null then
857: l_id := irc_notification_helper_pkg.send_notification
858: ( p_person_id => l_applicant_id
859: , p_subject => l_subject
860: , p_html_body => l_html_body
861: , p_text_body => l_text_body

Line 985: l_id := irc_notification_helper_pkg.send_notification

981: End if;
982: ---- sending notification to the manager
983: BEGIN
984: if l_manager_id is not null then
985: l_id := irc_notification_helper_pkg.send_notification
986: ( p_person_id => l_manager_id
987: , p_subject => l_subject
988: , p_html_body => l_html_body
989: , p_text_body => l_text_body

Line 1167: l_id := irc_notification_helper_pkg.send_notification

1163:
1164: BEGIN
1165:
1166: if l_applicant_id is not null then
1167: l_id := irc_notification_helper_pkg.send_notification
1168: ( p_person_id => l_applicant_id
1169: , p_subject => l_subject
1170: , p_html_body => l_html_body
1171: , p_text_body => l_text_body

Line 1286: l_id := irc_notification_helper_pkg.send_notification

1282: hr_utility.set_location(l_proc,90);
1283: ---- sending notification to the manager
1284: BEGIN
1285: if l_manager_id is not null then
1286: l_id := irc_notification_helper_pkg.send_notification
1287: ( p_person_id => l_manager_id
1288: , p_subject => l_subject
1289: , p_html_body => l_html_body
1290: , p_text_body => l_text_body

Line 1567: l_id := irc_notification_helper_pkg.send_notification

1563: hr_utility.set_location(l_proc, 80);
1564:
1565: -- send notification
1566: if l_applicant_id is not null then
1567: l_id := irc_notification_helper_pkg.send_notification
1568: ( p_person_id => l_applicant_id
1569: , p_subject => l_subject
1570: , p_html_body => l_html_body
1571: , p_text_body => l_text_body

Line 1668: l_id := irc_notification_helper_pkg.send_notification

1664: hr_utility.set_location(l_proc, 120);
1665:
1666: -- send notification to manager
1667: IF( l_manager_id is not null ) THEN
1668: l_id := irc_notification_helper_pkg.send_notification
1669: ( p_person_id => l_manager_id
1670: , p_subject => l_subject
1671: , p_html_body => l_html_body
1672: , p_text_body => l_text_body

Line 1680: l_id := irc_notification_helper_pkg.send_notification

1676: END IF;
1677: -- send notification to recruiter
1678: IF( l_recruiter_id is not null
1679: and (l_manager_id is null or l_recruiter_id <> l_manager_id) ) THEN
1680: l_id := irc_notification_helper_pkg.send_notification
1681: ( p_person_id => l_recruiter_id
1682: , p_subject => l_subject
1683: , p_html_body => l_html_body
1684: , p_text_body => l_text_body

Line 1693: l_id := irc_notification_helper_pkg.send_notification

1689: -- send notification to creator
1690: IF( l_creator_id is not null
1691: and (l_recruiter_id is null or l_creator_id <> l_recruiter_id )
1692: and (l_manager_id is null or l_creator_id <> l_manager_id )) THEN
1693: l_id := irc_notification_helper_pkg.send_notification
1694: ( p_person_id => l_creator_id
1695: , p_subject => l_subject
1696: , p_html_body => l_html_body
1697: , p_text_body => l_text_body

Line 1742: l_id := irc_notification_helper_pkg.send_notification

1738: fnd_message.set_token('APPLICANT_NAME',l_applicant_name, false);
1739: fnd_message.set_token('VACANCY_NAME',l_vacancy_name, false);
1740: l_text_body := fnd_message.get;
1741: if l_referrer_id is not null then
1742: l_id := irc_notification_helper_pkg.send_notification
1743: ( p_person_id => l_referrer_id
1744: , p_subject => l_subject
1745: , p_html_body => l_html_body
1746: , p_text_body => l_text_body

Line 1888: l_id := irc_notification_helper_pkg.send_notification

1884: hr_utility.set_location(l_proc, 60);
1885:
1886: -- send notification to creator
1887: IF( l_creator_id is not null ) THEN
1888: l_id := irc_notification_helper_pkg.send_notification
1889: ( p_person_id => l_creator_id
1890: , p_subject => l_subject
1891: , p_html_body => l_html_body
1892: , p_text_body => l_text_body

Line 2135: l_id := irc_notification_helper_pkg.send_notification

2131: hr_utility.set_location(l_proc, 80);
2132:
2133: -- send notification
2134: if l_applicant_id is not null then
2135: l_id := irc_notification_helper_pkg.send_notification
2136: ( p_person_id => l_applicant_id
2137: , p_subject => l_subject
2138: , p_html_body => l_html_body
2139: , p_text_body => l_text_body

Line 2239: l_id := irc_notification_helper_pkg.send_notification

2235: hr_utility.set_location(l_proc, 120);
2236:
2237: -- send notification to manager
2238: IF( l_manager_id is not null ) THEN
2239: l_id := irc_notification_helper_pkg.send_notification
2240: ( p_person_id => l_manager_id
2241: , p_subject => l_subject
2242: , p_html_body => l_html_body
2243: , p_text_body => l_text_body

Line 2251: l_id := irc_notification_helper_pkg.send_notification

2247: END IF;
2248: -- send notification to recruiter
2249: IF( l_recruiter_id is not null
2250: and (l_manager_id is null or l_recruiter_id <> l_manager_id) ) THEN
2251: l_id := irc_notification_helper_pkg.send_notification
2252: ( p_person_id => l_recruiter_id
2253: , p_subject => l_subject
2254: , p_html_body => l_html_body
2255: , p_text_body => l_text_body

Line 2264: l_id := irc_notification_helper_pkg.send_notification

2260: -- send notification to creator
2261: IF( l_creator_id is not null
2262: and (l_recruiter_id is null or l_creator_id <> l_recruiter_id )
2263: and (l_manager_id is null or l_creator_id <> l_manager_id )) THEN
2264: l_id := irc_notification_helper_pkg.send_notification
2265: ( p_person_id => l_creator_id
2266: , p_subject => l_subject
2267: , p_html_body => l_html_body
2268: , p_text_body => l_text_body

Line 2512: l_id := irc_notification_helper_pkg.send_notification

2508: hr_utility.set_location(l_proc, 80);
2509:
2510: -- send notification
2511: if l_applicant_id is not null then
2512: l_id := irc_notification_helper_pkg.send_notification
2513: ( p_person_id => l_applicant_id
2514: , p_subject => l_subject
2515: , p_html_body => l_html_body
2516: , p_text_body => l_text_body

Line 2588: l_id := irc_notification_helper_pkg.send_notification

2584: hr_utility.set_location(l_proc, 120);
2585:
2586: -- send notification to manager
2587: IF( l_manager_id is not null ) THEN
2588: l_id := irc_notification_helper_pkg.send_notification
2589: ( p_person_id => l_manager_id
2590: , p_subject => l_subject
2591: , p_html_body => l_html_body
2592: , p_text_body => l_text_body

Line 2600: l_id := irc_notification_helper_pkg.send_notification

2596: END IF;
2597: -- send notification to recruiter
2598: IF( l_recruiter_id is not null
2599: and (l_manager_id is null or l_recruiter_id <> l_manager_id) ) THEN
2600: l_id := irc_notification_helper_pkg.send_notification
2601: ( p_person_id => l_recruiter_id
2602: , p_subject => l_subject
2603: , p_html_body => l_html_body
2604: , p_text_body => l_text_body

Line 2613: l_id := irc_notification_helper_pkg.send_notification

2609: -- send notification to creator
2610: IF( l_creator_id is not null
2611: and (l_recruiter_id is null or l_creator_id <> l_recruiter_id )
2612: and (l_manager_id is null or l_creator_id <> l_manager_id )) THEN
2613: l_id := irc_notification_helper_pkg.send_notification
2614: ( p_person_id => l_creator_id
2615: , p_subject => l_subject
2616: , p_html_body => l_html_body
2617: , p_text_body => l_text_body