DBA Data[Home] [Help]

APPS.PER_HU_CREATE_PERSON dependencies on HR_UTILITY

Line 36: IF hr_utility.chk_product_install('Oracle Human Resources', 'HU') THEN

32: END IF;*/
33: --
34: -- Added for GSI Bug 5472781
35: --
36: IF hr_utility.chk_product_install('Oracle Human Resources', 'HU') THEN
37: --
38: IF length(p_last_name)>40 THEN
39: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
40: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','LAST_NAME'));

Line 39: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');

35: --
36: IF hr_utility.chk_product_install('Oracle Human Resources', 'HU') THEN
37: --
38: IF length(p_last_name)>40 THEN
39: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
40: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','LAST_NAME'));
41: hr_utility.set_message_token('COLUMN_VALUE',p_last_name);
42: hr_utility.set_message_token('MAX_LENGTH','40');
43: hr_utility.raise_error;

Line 40: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','LAST_NAME'));

36: IF hr_utility.chk_product_install('Oracle Human Resources', 'HU') THEN
37: --
38: IF length(p_last_name)>40 THEN
39: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
40: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','LAST_NAME'));
41: hr_utility.set_message_token('COLUMN_VALUE',p_last_name);
42: hr_utility.set_message_token('MAX_LENGTH','40');
43: hr_utility.raise_error;
44: END IF;

Line 41: hr_utility.set_message_token('COLUMN_VALUE',p_last_name);

37: --
38: IF length(p_last_name)>40 THEN
39: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
40: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','LAST_NAME'));
41: hr_utility.set_message_token('COLUMN_VALUE',p_last_name);
42: hr_utility.set_message_token('MAX_LENGTH','40');
43: hr_utility.raise_error;
44: END IF;
45:

Line 42: hr_utility.set_message_token('MAX_LENGTH','40');

38: IF length(p_last_name)>40 THEN
39: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
40: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','LAST_NAME'));
41: hr_utility.set_message_token('COLUMN_VALUE',p_last_name);
42: hr_utility.set_message_token('MAX_LENGTH','40');
43: hr_utility.raise_error;
44: END IF;
45:
46: IF length(p_first_name)>40 THEN

Line 43: hr_utility.raise_error;

39: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
40: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','LAST_NAME'));
41: hr_utility.set_message_token('COLUMN_VALUE',p_last_name);
42: hr_utility.set_message_token('MAX_LENGTH','40');
43: hr_utility.raise_error;
44: END IF;
45:
46: IF length(p_first_name)>40 THEN
47: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');

Line 47: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');

43: hr_utility.raise_error;
44: END IF;
45:
46: IF length(p_first_name)>40 THEN
47: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
48: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','FIRST_NAME'));
49: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);
50: hr_utility.set_message_token('MAX_LENGTH','40');
51: hr_utility.raise_error;

Line 48: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','FIRST_NAME'));

44: END IF;
45:
46: IF length(p_first_name)>40 THEN
47: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
48: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','FIRST_NAME'));
49: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);
50: hr_utility.set_message_token('MAX_LENGTH','40');
51: hr_utility.raise_error;
52: END IF;

Line 49: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);

45:
46: IF length(p_first_name)>40 THEN
47: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
48: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','FIRST_NAME'));
49: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);
50: hr_utility.set_message_token('MAX_LENGTH','40');
51: hr_utility.raise_error;
52: END IF;
53: END IF;

Line 50: hr_utility.set_message_token('MAX_LENGTH','40');

46: IF length(p_first_name)>40 THEN
47: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
48: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','FIRST_NAME'));
49: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);
50: hr_utility.set_message_token('MAX_LENGTH','40');
51: hr_utility.raise_error;
52: END IF;
53: END IF;
54: END create_hu_person;

Line 51: hr_utility.raise_error;

47: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
48: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','FIRST_NAME'));
49: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);
50: hr_utility.set_message_token('MAX_LENGTH','40');
51: hr_utility.raise_error;
52: END IF;
53: END IF;
54: END create_hu_person;
55: --