DBA Data[Home] [Help]

APPS.PAY_FR_OVERTIME dependencies on FND_MESSAGE

Line 248: fnd_message.set_name('PAY','PAY_74966_MANDATORY_OT_TYPE');

244: --
245: /* Check mandatory data */
246: if (scheme.Overtime_Scheme_Type <> 'P' and
247: scheme.Overtime_Scheme_Type <> 'F') then
248: fnd_message.set_name('PAY','PAY_74966_MANDATORY_OT_TYPE');
249: fnd_message.raise_error;
250: end if;
251: --
252: if scheme.Overtime_Scheme_Type = 'F' then

Line 249: fnd_message.raise_error;

245: /* Check mandatory data */
246: if (scheme.Overtime_Scheme_Type <> 'P' and
247: scheme.Overtime_Scheme_Type <> 'F') then
248: fnd_message.set_name('PAY','PAY_74966_MANDATORY_OT_TYPE');
249: fnd_message.raise_error;
250: end if;
251: --
252: if scheme.Overtime_Scheme_Type = 'F' then
253: if scheme.threshold is null

Line 266: fnd_message.set_name('PAY','PAY_74967_MANDATORY_FT_SCHEME');

262: or scheme.Higher_Compensation_Factor is null
263: or scheme.Overtime_Band_Table is null
264: or (scheme.Regularisation_Payment_Basis <> 'W' and
265: scheme.Regularisation_Payment_Basis <> 'C') then
266: fnd_message.set_name('PAY','PAY_74967_MANDATORY_FT_SCHEME');
267: fnd_message.raise_error;
268: end if;
269: --
270: if scheme.Regularisation_Period_Type = 'P' then

Line 267: fnd_message.raise_error;

263: or scheme.Overtime_Band_Table is null
264: or (scheme.Regularisation_Payment_Basis <> 'W' and
265: scheme.Regularisation_Payment_Basis <> 'C') then
266: fnd_message.set_name('PAY','PAY_74967_MANDATORY_FT_SCHEME');
267: fnd_message.raise_error;
268: end if;
269: --
270: if scheme.Regularisation_Period_Type = 'P' then
271: if scheme.Regularisation_Period_Weeks is null then

Line 272: fnd_message.set_name('PAY','PAY_74968_MANDATORY_REG_PERIOD');

268: end if;
269: --
270: if scheme.Regularisation_Period_Type = 'P' then
271: if scheme.Regularisation_Period_Weeks is null then
272: fnd_message.set_name('PAY','PAY_74968_MANDATORY_REG_PERIOD');
273: fnd_message.raise_error;
274: end if;
275: end if;
276: if scheme.Regularisation_Period_Type is not null then

Line 273: fnd_message.raise_error;

269: --
270: if scheme.Regularisation_Period_Type = 'P' then
271: if scheme.Regularisation_Period_Weeks is null then
272: fnd_message.set_name('PAY','PAY_74968_MANDATORY_REG_PERIOD');
273: fnd_message.raise_error;
274: end if;
275: end if;
276: if scheme.Regularisation_Period_Type is not null then
277: if scheme.Regularisation_Threshold is null

Line 281: fnd_message.set_name('PAY','PAY_74969_MANDATORY_REG_ATTS');

277: if scheme.Regularisation_Threshold is null
278: or scheme.Regularisation_Offset is null
279: or scheme.Regularisation_Start_Date is null
280: or scheme.Regularisation_Formula_ID = -1 then
281: fnd_message.set_name('PAY','PAY_74969_MANDATORY_REG_ATTS');
282: fnd_message.raise_error;
283: end if;
284: end if;
285: end if;

Line 282: fnd_message.raise_error;

278: or scheme.Regularisation_Offset is null
279: or scheme.Regularisation_Start_Date is null
280: or scheme.Regularisation_Formula_ID = -1 then
281: fnd_message.set_name('PAY','PAY_74969_MANDATORY_REG_ATTS');
282: fnd_message.raise_error;
283: end if;
284: end if;
285: end if;
286: --

Line 291: fnd_message.set_name('PAY','PAY_74970_MANDATORY_PT_SCHEME');

287: if scheme.Overtime_Scheme_Type = 'P' then
288: if (scheme.Bonification_Method <> 'P' and
289: scheme.Bonification_Method <> 'T')
290: or scheme.Overtime_Band_Table is null then
291: fnd_message.set_name('PAY','PAY_74970_MANDATORY_PT_SCHEME');
292: fnd_message.raise_error;
293: end if;
294: if (scheme.Majoration_Method is null) then
295: /* Set Majoration Method to 'T' for processing purposes */

Line 292: fnd_message.raise_error;

288: if (scheme.Bonification_Method <> 'P' and
289: scheme.Bonification_Method <> 'T')
290: or scheme.Overtime_Band_Table is null then
291: fnd_message.set_name('PAY','PAY_74970_MANDATORY_PT_SCHEME');
292: fnd_message.raise_error;
293: end if;
294: if (scheme.Majoration_Method is null) then
295: /* Set Majoration Method to 'T' for processing purposes */
296: scheme.Majoration_Method := 'T';

Line 706: fnd_message.set_name('PAY','PAY_74961_REG_WEEK_NOT_FOUND');

702: ,l_start_date);
703: fetch c_week_start_date into l_period_start_date;
704: if c_week_start_date%notfound then
705: close c_week_start_date;
706: fnd_message.set_name('PAY','PAY_74961_REG_WEEK_NOT_FOUND');
707: fnd_message.raise_error;
708: else
709: close c_week_start_date;
710: l_period_start_date := l_period_start_date;

Line 707: fnd_message.raise_error;

703: fetch c_week_start_date into l_period_start_date;
704: if c_week_start_date%notfound then
705: close c_week_start_date;
706: fnd_message.set_name('PAY','PAY_74961_REG_WEEK_NOT_FOUND');
707: fnd_message.raise_error;
708: else
709: close c_week_start_date;
710: l_period_start_date := l_period_start_date;
711: end if;

Line 720: fnd_message.set_name('PAY','PAY_74961_REG_WEEK_NOT_FOUND');

716: ,l_end_date);
717: fetch c_week_end_date into l_period_end_date;
718: if c_week_end_date%notfound then
719: close c_week_end_date;
720: fnd_message.set_name('PAY','PAY_74961_REG_WEEK_NOT_FOUND');
721: fnd_message.raise_error;
722: else
723: close c_week_end_date;
724: end if;

Line 721: fnd_message.raise_error;

717: fetch c_week_end_date into l_period_end_date;
718: if c_week_end_date%notfound then
719: close c_week_end_date;
720: fnd_message.set_name('PAY','PAY_74961_REG_WEEK_NOT_FOUND');
721: fnd_message.raise_error;
722: else
723: close c_week_end_date;
724: end if;
725: --

Line 832: fnd_message.set_name('PAY','PAY_74956_NO_SCHEME_WEEK');

828: fetch c_weeks into l_valid_week;
829: close c_weeks;
830: --
831: if l_valid_week = 'N' then
832: fnd_message.set_name('PAY','PAY_74956_NO_SCHEME_WEEK');
833: fnd_message.raise_error;
834: else
835: l_process_week := to_number(to_char(p_week_end_date,'J'));
836: end if;

Line 833: fnd_message.raise_error;

829: close c_weeks;
830: --
831: if l_valid_week = 'N' then
832: fnd_message.set_name('PAY','PAY_74956_NO_SCHEME_WEEK');
833: fnd_message.raise_error;
834: else
835: l_process_week := to_number(to_char(p_week_end_date,'J'));
836: end if;
837: --

Line 1526: fnd_message.set_name('PAY','PAY_74980_MISSING_HOURS');

1522: open get_hours;
1523: fetch get_hours into l_normal_hours,l_frequency;
1524: if get_hours%notfound then
1525: close get_hours;
1526: fnd_message.set_name('PAY','PAY_74980_MISSING_HOURS');
1527: fnd_message.raise_error;
1528: end if;
1529: close get_hours;
1530: --

Line 1527: fnd_message.raise_error;

1523: fetch get_hours into l_normal_hours,l_frequency;
1524: if get_hours%notfound then
1525: close get_hours;
1526: fnd_message.set_name('PAY','PAY_74980_MISSING_HOURS');
1527: fnd_message.raise_error;
1528: end if;
1529: close get_hours;
1530: --
1531: hr_utility.trace('Found Assignment');

Line 1533: fnd_message.set_name('PAY','PAY_74980_MISSING_HOURS');

1529: close get_hours;
1530: --
1531: hr_utility.trace('Found Assignment');
1532: if l_normal_hours is null or l_frequency is null then
1533: fnd_message.set_name('PAY','PAY_74980_MISSING_HOURS');
1534: fnd_message.raise_error;
1535: end if;
1536: --
1537: l_hours := pay_fr_general.convert_hours(p_effective_date

Line 1534: fnd_message.raise_error;

1530: --
1531: hr_utility.trace('Found Assignment');
1532: if l_normal_hours is null or l_frequency is null then
1533: fnd_message.set_name('PAY','PAY_74980_MISSING_HOURS');
1534: fnd_message.raise_error;
1535: end if;
1536: --
1537: l_hours := pay_fr_general.convert_hours(p_effective_date
1538: ,p_business_group_id