DBA Data[Home] [Help]

APPS.PAY_SID_BUS dependencies on STANDARD

Line 599: -- Get standard default number of insurable weeks in current pay period

595: -- ---------------------------------------------------------------------------
596: -- {Start Of Comments}
597: --
598: -- Description:
599: -- Get standard default number of insurable weeks in current pay period
600: --
601: -- Prerequisites:
602: --
603: -- In Arguments:

Line 609: -- returns standard default number of insurable weeks in current pay period

605: -- p_assignment_id
606: --
607: --
608: -- Post Success:
609: -- returns standard default number of insurable weeks in current pay period
610: --
611: -- Post Failure:
612: --
613: -- Access Status:

Line 673: -- check that overridden insurable weeks are not more than standard default

669: -- ---------------------------------------------------------------------------
670: -- {Start Of Comments}
671: --
672: -- Description:
673: -- check that overridden insurable weeks are not more than standard default
674: -- number of insurable weeks in current pay period.
675: --
676: -- Prerequisites:
677: --

Line 706: -- if overridden number of insurable weeks are more than standard

702: BEGIN
703: -- Get std default number of insurable weeks
704: l_std_ins_weeks := get_std_ins_weeks( p_effective_date => p_effective_date
705: , p_assignment_id => p_assignment_id);
706: -- if overridden number of insurable weeks are more than standard
707: -- default number in current pay period then raie error
708: IF nvl(p_overridden_ins_weeks, 0) > nvl(l_std_ins_weeks, 0) THEN
709: null;
710: -- fnd_message.set_name('PAY','HR_IE_OVERRIDDEN_INS_WEEKS');