DBA Data[Home] [Help]

APPS.HR_NL_EXTRA_PERSON_RULES dependencies on HR_UTILITY

Line 23: IF hr_utility.chk_product_install('Oracle Human Resources', 'NL') THEN

19: BEGIN
20: --
21: -- Added for GSI Bug 5472781
22: --
23: IF hr_utility.chk_product_install('Oracle Human Resources', 'NL') THEN
24: --
25: if p_first_name is null then
26: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
27: hr_utility.set_message_token('FIELD','First Name');

Line 26: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');

22: --
23: IF hr_utility.chk_product_install('Oracle Human Resources', 'NL') THEN
24: --
25: if p_first_name is null then
26: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
27: hr_utility.set_message_token('FIELD','First Name');
28: hr_utility.set_message_token('LEG_CODE','NL');
29: hr_utility.raise_error;
30: end if;

Line 27: hr_utility.set_message_token('FIELD','First Name');

23: IF hr_utility.chk_product_install('Oracle Human Resources', 'NL') THEN
24: --
25: if p_first_name is null then
26: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
27: hr_utility.set_message_token('FIELD','First Name');
28: hr_utility.set_message_token('LEG_CODE','NL');
29: hr_utility.raise_error;
30: end if;
31:

Line 28: hr_utility.set_message_token('LEG_CODE','NL');

24: --
25: if p_first_name is null then
26: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
27: hr_utility.set_message_token('FIELD','First Name');
28: hr_utility.set_message_token('LEG_CODE','NL');
29: hr_utility.raise_error;
30: end if;
31:
32: if (p_national_identifier is null OR p_national_identifier = hr_api.g_varchar2) AND NVL(fnd_profile.value('HR_NL_NI_OPTIONAL'),'N') = 'N'

Line 29: hr_utility.raise_error;

25: if p_first_name is null then
26: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
27: hr_utility.set_message_token('FIELD','First Name');
28: hr_utility.set_message_token('LEG_CODE','NL');
29: hr_utility.raise_error;
30: end if;
31:
32: if (p_national_identifier is null OR p_national_identifier = hr_api.g_varchar2) AND NVL(fnd_profile.value('HR_NL_NI_OPTIONAL'),'N') = 'N'
33: AND fnd_profile.VALUE('PER_NATIONAL_IDENTIFIER_VALIDATION') in ('ERROR','WARN') /* bug 4570899*/ then

Line 34: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');

30: end if;
31:
32: if (p_national_identifier is null OR p_national_identifier = hr_api.g_varchar2) AND NVL(fnd_profile.value('HR_NL_NI_OPTIONAL'),'N') = 'N'
33: AND fnd_profile.VALUE('PER_NATIONAL_IDENTIFIER_VALIDATION') in ('ERROR','WARN') /* bug 4570899*/ then
34: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
35: hr_utility.set_message_token('FIELD','SOFI Number');
36: hr_utility.set_message_token('LEG_CODE','NL');
37: hr_utility.raise_error;
38: end if;

Line 35: hr_utility.set_message_token('FIELD','SOFI Number');

31:
32: if (p_national_identifier is null OR p_national_identifier = hr_api.g_varchar2) AND NVL(fnd_profile.value('HR_NL_NI_OPTIONAL'),'N') = 'N'
33: AND fnd_profile.VALUE('PER_NATIONAL_IDENTIFIER_VALIDATION') in ('ERROR','WARN') /* bug 4570899*/ then
34: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
35: hr_utility.set_message_token('FIELD','SOFI Number');
36: hr_utility.set_message_token('LEG_CODE','NL');
37: hr_utility.raise_error;
38: end if;
39:

Line 36: hr_utility.set_message_token('LEG_CODE','NL');

32: if (p_national_identifier is null OR p_national_identifier = hr_api.g_varchar2) AND NVL(fnd_profile.value('HR_NL_NI_OPTIONAL'),'N') = 'N'
33: AND fnd_profile.VALUE('PER_NATIONAL_IDENTIFIER_VALIDATION') in ('ERROR','WARN') /* bug 4570899*/ then
34: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
35: hr_utility.set_message_token('FIELD','SOFI Number');
36: hr_utility.set_message_token('LEG_CODE','NL');
37: hr_utility.raise_error;
38: end if;
39:
40: if p_per_information1 is null then

Line 37: hr_utility.raise_error;

33: AND fnd_profile.VALUE('PER_NATIONAL_IDENTIFIER_VALIDATION') in ('ERROR','WARN') /* bug 4570899*/ then
34: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
35: hr_utility.set_message_token('FIELD','SOFI Number');
36: hr_utility.set_message_token('LEG_CODE','NL');
37: hr_utility.raise_error;
38: end if;
39:
40: if p_per_information1 is null then
41: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');

Line 41: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');

37: hr_utility.raise_error;
38: end if;
39:
40: if p_per_information1 is null then
41: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
42: hr_utility.set_message_token('FIELD','Initials');
43: hr_utility.set_message_token('LEG_CODE','NL');
44: hr_utility.raise_error;
45: end if;

Line 42: hr_utility.set_message_token('FIELD','Initials');

38: end if;
39:
40: if p_per_information1 is null then
41: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
42: hr_utility.set_message_token('FIELD','Initials');
43: hr_utility.set_message_token('LEG_CODE','NL');
44: hr_utility.raise_error;
45: end if;
46:

Line 43: hr_utility.set_message_token('LEG_CODE','NL');

39:
40: if p_per_information1 is null then
41: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
42: hr_utility.set_message_token('FIELD','Initials');
43: hr_utility.set_message_token('LEG_CODE','NL');
44: hr_utility.raise_error;
45: end if;
46:
47: if p_per_information4 is null then

Line 44: hr_utility.raise_error;

40: if p_per_information1 is null then
41: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
42: hr_utility.set_message_token('FIELD','Initials');
43: hr_utility.set_message_token('LEG_CODE','NL');
44: hr_utility.raise_error;
45: end if;
46:
47: if p_per_information4 is null then
48: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');

Line 48: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');

44: hr_utility.raise_error;
45: end if;
46:
47: if p_per_information4 is null then
48: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
49: hr_utility.set_message_token('FIELD','Full Name Format');
50: hr_utility.set_message_token('LEG_CODE','NL');
51: hr_utility.raise_error;
52: end if;

Line 49: hr_utility.set_message_token('FIELD','Full Name Format');

45: end if;
46:
47: if p_per_information4 is null then
48: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
49: hr_utility.set_message_token('FIELD','Full Name Format');
50: hr_utility.set_message_token('LEG_CODE','NL');
51: hr_utility.raise_error;
52: end if;
53: END IF;

Line 50: hr_utility.set_message_token('LEG_CODE','NL');

46:
47: if p_per_information4 is null then
48: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
49: hr_utility.set_message_token('FIELD','Full Name Format');
50: hr_utility.set_message_token('LEG_CODE','NL');
51: hr_utility.raise_error;
52: end if;
53: END IF;
54: END extra_person_checks;

Line 51: hr_utility.raise_error;

47: if p_per_information4 is null then
48: hr_utility.set_message(800, 'HR_NL_REQUIRED_FIELD');
49: hr_utility.set_message_token('FIELD','Full Name Format');
50: hr_utility.set_message_token('LEG_CODE','NL');
51: hr_utility.raise_error;
52: end if;
53: END IF;
54: END extra_person_checks;
55: