DBA Data[Home] [Help]

APPS.HR_LOT_BUS dependencies on HR_UTILITY

Line 87: hr_utility.set_location('Entering:'||l_proc, 5);

83: l_api_updating boolean;
84: --
85: Begin
86: --
87: hr_utility.set_location('Entering:'||l_proc, 5);
88: --
89: l_api_updating := hr_lot_shd.api_updating ( p_location_id,
90: p_language);
91:

Line 112: hr_utility.set_message(800, 'PER_52516_INV_LOCATION_NAME');

108: -- If calling
109: -- directly from form, use a differrent message (on the form,
110: -- the field name for LOCATION_CODE is 'Name')
111: --
112: hr_utility.set_message(800, 'PER_52516_INV_LOCATION_NAME');
113: else
114: hr_utility.set_message(800, 'PER_52507_INV_LOCATION_CODE');
115: end if;
116: --

Line 114: hr_utility.set_message(800, 'PER_52507_INV_LOCATION_CODE');

110: -- the field name for LOCATION_CODE is 'Name')
111: --
112: hr_utility.set_message(800, 'PER_52516_INV_LOCATION_NAME');
113: else
114: hr_utility.set_message(800, 'PER_52507_INV_LOCATION_CODE');
115: end if;
116: --
117: hr_utility.raise_error;
118: end if;

Line 117: hr_utility.raise_error;

113: else
114: hr_utility.set_message(800, 'PER_52507_INV_LOCATION_CODE');
115: end if;
116: --
117: hr_utility.raise_error;
118: end if;
119: --
120: close csr_chk_location_codes;
121: --

Line 124: hr_utility.set_location('Leaving:'||l_proc, 10);

120: close csr_chk_location_codes;
121: --
122: end if;
123: --
124: hr_utility.set_location('Leaving:'||l_proc, 10);
125: --
126: end chk_location_code;
127: -- --
128: --

Line 166: -- there is no standard hr_utility.set_locations calls

162: description IN VARCHAR2)
163: is
164: begin
165: -- Since this is just a wrapper for call from clients
166: -- there is no standard hr_utility.set_locations calls
167: -- This will make the proc transperant
168: hr_lot_bus.chk_location_code(
169: p_location_id => location_id
170: ,p_location_code => location_code

Line 187: hr_utility.set_location('Entering:'||l_proc, 5);

183: --
184: l_proc varchar2(72) := g_package||'insert_validate';
185: --
186: Begin
187: hr_utility.set_location('Entering:'||l_proc, 5);
188: --
189: -- Call all supporting business operations
190: --
191: -- Location code must be unique within the set of codes

Line 207: hr_utility.set_location(' Leaving:'||l_proc, 10);

203: p_called_from_form => FALSE
204: );
205: --
206: --
207: hr_utility.set_location(' Leaving:'||l_proc, 10);
208: End insert_validate;
209: --
210: -- ----------------------------------------------------------------------------
211: -- |---------------------------< update_validate >----------------------------|

Line 220: hr_utility.set_location('Entering:'||l_proc, 5);

216: --
217: l_proc varchar2(72) := g_package||'update_validate';
218: --
219: Begin
220: hr_utility.set_location('Entering:'||l_proc, 5);
221: --
222: -- Call all supporting business operations
223: --
224: -- Location code must be unique within the set of codes

Line 238: hr_utility.set_location(' Leaving:'||l_proc, 10);

234: p_called_from_form => FALSE
235: );
236: --
237: --
238: hr_utility.set_location(' Leaving:'||l_proc, 10);
239: End update_validate;
240: --
241: -- ----------------------------------------------------------------------------
242: -- |---------------------------< delete_validate >----------------------------|

Line 249: hr_utility.set_location('Entering:'||l_proc, 5);

245: --
246: l_proc varchar2(72) := g_package||'delete_validate';
247: --
248: Begin
249: hr_utility.set_location('Entering:'||l_proc, 5);
250: --
251: -- Call all supporting business operations
252: --
253: hr_utility.set_location(' Leaving:'||l_proc, 10);

Line 253: hr_utility.set_location(' Leaving:'||l_proc, 10);

249: hr_utility.set_location('Entering:'||l_proc, 5);
250: --
251: -- Call all supporting business operations
252: --
253: hr_utility.set_location(' Leaving:'||l_proc, 10);
254: End delete_validate;
255: --
256: end hr_lot_bus;