DBA Data[Home] [Help]

APPS.HR_FR_PERIODS_OF_SERVICE_API dependencies on HR_UTILITY

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

70: where pbg.business_group_id = l_business_group_id;
71: --
72: begin
73:
74: hr_utility.set_location('Entering:'|| l_proc, 10);
75: --
76: -- Issue a savepoint if operating in validation only mode
77: --
78: savepoint create_contract;

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

76: -- Issue a savepoint if operating in validation only mode
77: --
78: savepoint create_contract;
79: --
80: hr_utility.set_location(l_proc, 20);
81: --
82: -- Process Logic
83: --
84: -- Get person details.

Line 94: hr_utility.set_location(l_proc, 30);

90: if csr_get_business_group_id%NOTFOUND then
91: --
92: close csr_get_business_group_id;
93: --
94: hr_utility.set_location(l_proc, 30);
95: --
96: hr_utility.set_message(801,'HR_7432_ASG_INVALID_PERSON');
97: hr_utility.raise_error;
98: end if;

Line 96: hr_utility.set_message(801,'HR_7432_ASG_INVALID_PERSON');

92: close csr_get_business_group_id;
93: --
94: hr_utility.set_location(l_proc, 30);
95: --
96: hr_utility.set_message(801,'HR_7432_ASG_INVALID_PERSON');
97: hr_utility.raise_error;
98: end if;
99: --
100: close csr_get_business_group_id;

Line 97: hr_utility.raise_error;

93: --
94: hr_utility.set_location(l_proc, 30);
95: --
96: hr_utility.set_message(801,'HR_7432_ASG_INVALID_PERSON');
97: hr_utility.raise_error;
98: end if;
99: --
100: close csr_get_business_group_id;
101: --

Line 102: hr_utility.set_location(l_proc, 40);

98: end if;
99: --
100: close csr_get_business_group_id;
101: --
102: hr_utility.set_location(l_proc, 40);
103: --
104: -- Check that the specified business group is valid.
105: --
106: open csr_bg;

Line 111: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');

107: fetch csr_bg
108: into l_legislation_code;
109: if csr_bg%notfound then
110: close csr_bg;
111: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
112: hr_utility.raise_error;
113: end if;
114: close csr_bg;
115: hr_utility.set_location(l_proc, 50);

Line 112: hr_utility.raise_error;

108: into l_legislation_code;
109: if csr_bg%notfound then
110: close csr_bg;
111: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
112: hr_utility.raise_error;
113: end if;
114: close csr_bg;
115: hr_utility.set_location(l_proc, 50);
116: --

Line 115: hr_utility.set_location(l_proc, 50);

111: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
112: hr_utility.raise_error;
113: end if;
114: close csr_bg;
115: hr_utility.set_location(l_proc, 50);
116: --
117: -- Check that the legislation of the specified business group is 'FR'.
118: --
119: if l_legislation_code <> 'FR' then

Line 120: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');

116: --
117: -- Check that the legislation of the specified business group is 'FR'.
118: --
119: if l_legislation_code <> 'FR' then
120: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
121: hr_utility.set_message_token('LEG_CODE','FR');
122: hr_utility.raise_error;
123: end if;
124: hr_utility.set_location(l_proc, 60);

Line 121: hr_utility.set_message_token('LEG_CODE','FR');

117: -- Check that the legislation of the specified business group is 'FR'.
118: --
119: if l_legislation_code <> 'FR' then
120: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
121: hr_utility.set_message_token('LEG_CODE','FR');
122: hr_utility.raise_error;
123: end if;
124: hr_utility.set_location(l_proc, 60);
125: --

Line 122: hr_utility.raise_error;

118: --
119: if l_legislation_code <> 'FR' then
120: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
121: hr_utility.set_message_token('LEG_CODE','FR');
122: hr_utility.raise_error;
123: end if;
124: hr_utility.set_location(l_proc, 60);
125: --
126: -- Call the contract business process

Line 124: hr_utility.set_location(l_proc, 60);

120: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
121: hr_utility.set_message_token('LEG_CODE','FR');
122: hr_utility.raise_error;
123: end if;
124: hr_utility.set_location(l_proc, 60);
125: --
126: -- Call the contract business process
127: --
128: hr_periods_of_service_api.update_pds_details

Line 172: hr_utility.set_location(' Leaving:'||l_proc, 7);

168: ,p_pds_information12 => p_social_plan
169: ,p_object_version_number => p_object_version_number
170: );
171: --
172: hr_utility.set_location(' Leaving:'||l_proc, 7);
173: end update_fr_pds_details;
174: --
175: end hr_fr_periods_of_service_api;