DBA Data[Home] [Help]

APPS.PER_US_VALIDATE_AEI dependencies on HR_UTILITY

Line 74: hr_utility.set_location('Entering:'||l_proc, 10);

70:
71: --
72: Begin
73: --
74: hr_utility.set_location('Entering:'||l_proc, 10);
75: --
76: if p_information_type = 'PAY_US_ASG_STATE_WAGE_PLAN_CD' then
77: --
78: -- check for wage plan code and duplicate record for california

Line 82: hr_utility.set_message(801, 'HR_6001_ALL_MANDATORY_FIELD');

78: -- check for wage plan code and duplicate record for california
79: --
80: if p_aei_information1 = 'CA' then
81: if p_aei_information3 is null then
82: hr_utility.set_message(801, 'HR_6001_ALL_MANDATORY_FIELD');
83: hr_utility.set_message_token('MISSING_FIELD', 'Tax Type for California');
84: hr_utility.raise_error;
85: end if;
86: --

Line 83: hr_utility.set_message_token('MISSING_FIELD', 'Tax Type for California');

79: --
80: if p_aei_information1 = 'CA' then
81: if p_aei_information3 is null then
82: hr_utility.set_message(801, 'HR_6001_ALL_MANDATORY_FIELD');
83: hr_utility.set_message_token('MISSING_FIELD', 'Tax Type for California');
84: hr_utility.raise_error;
85: end if;
86: --
87: hr_utility.set_location(l_proc, 20);

Line 84: hr_utility.raise_error;

80: if p_aei_information1 = 'CA' then
81: if p_aei_information3 is null then
82: hr_utility.set_message(801, 'HR_6001_ALL_MANDATORY_FIELD');
83: hr_utility.set_message_token('MISSING_FIELD', 'Tax Type for California');
84: hr_utility.raise_error;
85: end if;
86: --
87: hr_utility.set_location(l_proc, 20);
88: --

Line 87: hr_utility.set_location(l_proc, 20);

83: hr_utility.set_message_token('MISSING_FIELD', 'Tax Type for California');
84: hr_utility.raise_error;
85: end if;
86: --
87: hr_utility.set_location(l_proc, 20);
88: --
89: for c1_rec in c1 (p_assignment_id,
90: p_information_type,
91: p_aei_information1,

Line 96: hr_utility.set_message(800, 'PER_AEI_REC_EXIST_FOR_INFO_TYP');

92: p_aei_information3 ) loop
93: --
94: -- raise error if the record exists for the assignment id
95: --
96: hr_utility.set_message(800, 'PER_AEI_REC_EXIST_FOR_INFO_TYP');
97: hr_utility.raise_error;
98: end loop;
99:
100: for c2_rec in c2 (p_assignment_id,

Line 97: hr_utility.raise_error;

93: --
94: -- raise error if the record exists for the assignment id
95: --
96: hr_utility.set_message(800, 'PER_AEI_REC_EXIST_FOR_INFO_TYP');
97: hr_utility.raise_error;
98: end loop;
99:
100: for c2_rec in c2 (p_assignment_id,
101: p_aei_information1,

Line 114: hr_utility.set_message(801, 'PAY_7024_USERTAB_BAD_ROW_VALUE');

110: --
111: -- raise error if the wage plan is not defined at the GRE level
112: --
113:
114: hr_utility.set_message(801, 'PAY_7024_USERTAB_BAD_ROW_VALUE');
115: hr_utility.set_message_token('FORMAT','with Tax Type defined at GRE');
116:
117: hr_utility.raise_error;
118:

Line 115: hr_utility.set_message_token('FORMAT','with Tax Type defined at GRE');

111: -- raise error if the wage plan is not defined at the GRE level
112: --
113:
114: hr_utility.set_message(801, 'PAY_7024_USERTAB_BAD_ROW_VALUE');
115: hr_utility.set_message_token('FORMAT','with Tax Type defined at GRE');
116:
117: hr_utility.raise_error;
118:
119: END IF;

Line 117: hr_utility.raise_error;

113:
114: hr_utility.set_message(801, 'PAY_7024_USERTAB_BAD_ROW_VALUE');
115: hr_utility.set_message_token('FORMAT','with Tax Type defined at GRE');
116:
117: hr_utility.raise_error;
118:
119: END IF;
120:
121:

Line 125: hr_utility.set_location(' Leaving:'||l_proc, 50);

121:
122: end if;
123: end if;
124: --
125: hr_utility.set_location(' Leaving:'||l_proc, 50);
126: --
127: End chk_for_duplicate_rows;
128: --
129: --