DBA Data[Home] [Help]

APPS.PER_PDS_UPD dependencies on PER_PERIODS_OF_SERVICE

Line 67: -- Update the per_periods_of_service Row

63: p_rec.object_version_number := p_rec.object_version_number + 1;
64: --
65: per_pds_shd.g_api_dml := true; -- Set the api dml status
66: --
67: -- Update the per_periods_of_service Row
68: --
69: update per_periods_of_service
70: set
71: period_of_service_id = p_rec.period_of_service_id,

Line 69: update per_periods_of_service

65: per_pds_shd.g_api_dml := true; -- Set the api dml status
66: --
67: -- Update the per_periods_of_service Row
68: --
69: update per_periods_of_service
70: set
71: period_of_service_id = p_rec.period_of_service_id,
72: termination_accepted_person_id = p_rec.termination_accepted_person_id,
73: date_start = p_rec.date_start,

Line 259: from per_periods_of_service

255: -- END WWBUG 1390173 fix
256: --
257: cursor csr_rowid is
258: select rowid
259: from per_periods_of_service
260: where period_of_service_id = p_rec.period_of_service_id;
261: --
262: Begin
263: hr_utility.set_location('Entering:'||l_proc, 5);