DBA Data[Home] [Help]

APPS.IRC_PARTY_API dependencies on HR_MULTI_MESSAGE

Line 2001: hr_multi_message.add();

1997: open csr_application_count(p_vacancy_id, p_effective_date);
1998: fetch csr_application_count into l_application_count;
1999: if ( l_application_count >= l_application_count_limit ) then
2000: fnd_message.set_name('PER','IRC_MAX_APPLICATIONS_LIMIT');
2001: hr_multi_message.add();
2002: hr_multi_message.end_validation_set();
2003: end if;
2004: close csr_application_count;
2005: end if;

Line 2002: hr_multi_message.end_validation_set();

1998: fetch csr_application_count into l_application_count;
1999: if ( l_application_count >= l_application_count_limit ) then
2000: fnd_message.set_name('PER','IRC_MAX_APPLICATIONS_LIMIT');
2001: hr_multi_message.add();
2002: hr_multi_message.end_validation_set();
2003: end if;
2004: close csr_application_count;
2005: end if;
2006: end if;

Line 2327: hr_multi_message.add();

2323: --
2324: close csr_person_id;
2325: close csr_person_all_dates;
2326: fnd_message.set_name('PER','IRC_412099_CANNOT_APPLY');
2327: hr_multi_message.add();
2328: end if;
2329: close csr_person_all_dates;
2330: --
2331: -- Register Assignment ID

Line 5973: hr_multi_message.enable_message_list;

5969: --
5970: begin
5971: --
5972: -- Enable multi message
5973: hr_multi_message.enable_message_list;
5974: --
5975: --
5976: workStr := p_source_party_list;
5977: l_index := 1;

Line 6008: hr_multi_message.add (p_message_type => hr_multi_message.g_error_msg);

6004: --
6005: -- Raise error when target user does not exist and source user exists
6006: if l_source_user_exists='TRUE' and l_target_user_exists='FALSE' then
6007: fnd_message.set_name('PER','IRC_412645_FD_MASTER_NO_USER');
6008: hr_multi_message.add (p_message_type => hr_multi_message.g_error_msg);
6009: errorExists := true;
6010: end if;
6011: --
6012: -- Active Offer Check

Line 6025: hr_multi_message.add (p_message_type => hr_multi_message.g_error_msg);

6021: --
6022: -- Raise error when active offer exists for the source
6023: if l_active_offer_exists='TRUE' then
6024: fnd_message.set_name('PER','IRC_412641_FD_ACTIVE_OFFER');
6025: hr_multi_message.add (p_message_type => hr_multi_message.g_error_msg);
6026: errorExists := true;
6027: end if;
6028: --
6029: -- Future Person Type Check

Line 6044: hr_multi_message.add (p_message_type => hr_multi_message.g_error_msg);

6040: --
6041: -- Raise error if future person types exist for source or target
6042: if l_future_person_exists='TRUE' or l_target_fut_person_exists='TRUE' then
6043: fnd_message.set_name('PER','IRC_412647_FD_FUTURE_PER_TYPE');
6044: hr_multi_message.add (p_message_type => hr_multi_message.g_error_msg);
6045: errorExists := true;
6046: end if;
6047: --
6048: -- Vacancy Security Check

Line 6061: hr_multi_message.add (p_message_type => hr_multi_message.g_error_msg);

6057: --
6058: -- Raise error if security restrictions exists for applications,vacancy
6059: if l_check_vacancy_security='TRUE' then
6060: fnd_message.set_name('PER','IRC_412642_FD_SECURITY');
6061: hr_multi_message.add (p_message_type => hr_multi_message.g_error_msg);
6062: errorExists := true;
6063: end if;
6064: --
6065: -- Source created today check

Line 6077: hr_multi_message.add (p_message_type => hr_multi_message.g_error_msg);

6073: end loop;
6074: -- Raise error if source person is created today
6075: if l_source_created_today='TRUE' then
6076: fnd_message.set_name('PER','IRC_412648_FD_SOURCE_CR_TODAY');
6077: hr_multi_message.add (p_message_type => hr_multi_message.g_error_msg);
6078: errorExists := true;
6079: end if;
6080: --
6081: --

Line 6094: hr_multi_message.add (p_message_type => hr_multi_message.g_warning_msg);

6090: end loop;
6091: -- Raise warning if source person is created today
6092: if l_source_created_today='TRUE' then
6093: fnd_message.set_name('PER','IRC_412646_FD_NO_APPL_TO_COPY');
6094: hr_multi_message.add (p_message_type => hr_multi_message.g_warning_msg);
6095: warningExists := true;
6096: end if;
6097: --
6098: --

Line 6112: hr_multi_message.add (p_message_type => hr_multi_message.g_warning_msg);

6108: --
6109: -- Raise warning if source person is created today
6110: if l_master_profile_new='TRUE' then
6111: fnd_message.set_name('PER','IRC_412643_FD_MASTER_NEW');
6112: hr_multi_message.add (p_message_type => hr_multi_message.g_warning_msg);
6113: warningExists := true;
6114: end if;
6115: --
6116: -- Application exists for same vacancy check

Line 6129: hr_multi_message.add (p_message_type => hr_multi_message.g_warning_msg);

6125: --
6126: -- Raise warning if source person is created today
6127: if l_duplicate_appl_exists='TRUE' then
6128: fnd_message.set_name('PER','IRC_412644_FD_DUPLICATE_APPL');
6129: hr_multi_message.add (p_message_type => hr_multi_message.g_warning_msg);
6130: warningExists := true;
6131: end if;
6132: --
6133: if errorExists then

Line 6401: hr_multi_message.add();

6397: --
6398: close csr_person_id;
6399: close csr_person_all_dates;
6400: fnd_message.set_name('PER','IRC_412099_CANNOT_APPLY');
6401: hr_multi_message.add();
6402: end if;
6403: close csr_person_all_dates;
6404: --
6405: --