DBA Data[Home] [Help]

APPS.GHR_DUT_INS dependencies on GHR_DUTY_STATIONS_F

Line 69: from ghr_duty_stations_f t

65: --
66: Cursor C_Sel1 Is
67: select t.created_by,
68: t.creation_date
69: from ghr_duty_stations_f t
70: where t.duty_station_id = p_rec.duty_station_id
71: and t.effective_start_date =
72: ghr_dut_shd.g_old_rec.effective_start_date
73: and t.effective_end_date = (p_validation_start_date - 1);

Line 76: l_created_by ghr_duty_stations_f.created_by%TYPE;

72: ghr_dut_shd.g_old_rec.effective_start_date
73: and t.effective_end_date = (p_validation_start_date - 1);
74: --
75: l_proc varchar2(72) := g_package||'dt_insert_dml';
76: l_created_by ghr_duty_stations_f.created_by%TYPE;
77: l_creation_date ghr_duty_stations_f.creation_date%TYPE;
78: l_last_update_date ghr_duty_stations_f.last_update_date%TYPE;
79: l_last_updated_by ghr_duty_stations_f.last_updated_by%TYPE;
80: l_last_update_login ghr_duty_stations_f.last_update_login%TYPE;

Line 77: l_creation_date ghr_duty_stations_f.creation_date%TYPE;

73: and t.effective_end_date = (p_validation_start_date - 1);
74: --
75: l_proc varchar2(72) := g_package||'dt_insert_dml';
76: l_created_by ghr_duty_stations_f.created_by%TYPE;
77: l_creation_date ghr_duty_stations_f.creation_date%TYPE;
78: l_last_update_date ghr_duty_stations_f.last_update_date%TYPE;
79: l_last_updated_by ghr_duty_stations_f.last_updated_by%TYPE;
80: l_last_update_login ghr_duty_stations_f.last_update_login%TYPE;
81: --

Line 78: l_last_update_date ghr_duty_stations_f.last_update_date%TYPE;

74: --
75: l_proc varchar2(72) := g_package||'dt_insert_dml';
76: l_created_by ghr_duty_stations_f.created_by%TYPE;
77: l_creation_date ghr_duty_stations_f.creation_date%TYPE;
78: l_last_update_date ghr_duty_stations_f.last_update_date%TYPE;
79: l_last_updated_by ghr_duty_stations_f.last_updated_by%TYPE;
80: l_last_update_login ghr_duty_stations_f.last_update_login%TYPE;
81: --
82: Begin

Line 79: l_last_updated_by ghr_duty_stations_f.last_updated_by%TYPE;

75: l_proc varchar2(72) := g_package||'dt_insert_dml';
76: l_created_by ghr_duty_stations_f.created_by%TYPE;
77: l_creation_date ghr_duty_stations_f.creation_date%TYPE;
78: l_last_update_date ghr_duty_stations_f.last_update_date%TYPE;
79: l_last_updated_by ghr_duty_stations_f.last_updated_by%TYPE;
80: l_last_update_login ghr_duty_stations_f.last_update_login%TYPE;
81: --
82: Begin
83: hr_utility.set_location('Entering:'||l_proc, 5);

Line 80: l_last_update_login ghr_duty_stations_f.last_update_login%TYPE;

76: l_created_by ghr_duty_stations_f.created_by%TYPE;
77: l_creation_date ghr_duty_stations_f.creation_date%TYPE;
78: l_last_update_date ghr_duty_stations_f.last_update_date%TYPE;
79: l_last_updated_by ghr_duty_stations_f.last_updated_by%TYPE;
80: l_last_update_login ghr_duty_stations_f.last_update_login%TYPE;
81: --
82: Begin
83: hr_utility.set_location('Entering:'||l_proc, 5);
84: --

Line 89: (p_base_table_name => 'ghr_duty_stations_f',

85: -- Get the object version number for the insert
86: --
87: p_rec.object_version_number :=
88: dt_api.get_object_version_number
89: (p_base_table_name => 'ghr_duty_stations_f',
90: p_base_key_column => 'duty_station_id',
91: p_base_key_value => p_rec.duty_station_id);
92:
93: --

Line 132: -- Insert the row into: ghr_duty_stations_f

128: End If;
129: --
130: ghr_dut_shd.g_api_dml := true; -- Set the api dml status
131: --
132: -- Insert the row into: ghr_duty_stations_f
133: --
134: insert into ghr_duty_stations_f
135: ( duty_station_id,
136: effective_start_date,

Line 134: insert into ghr_duty_stations_f

130: ghr_dut_shd.g_api_dml := true; -- Set the api dml status
131: --
132: -- Insert the row into: ghr_duty_stations_f
133: --
134: insert into ghr_duty_stations_f
135: ( duty_station_id,
136: effective_start_date,
137: effective_end_date,
138: locality_pay_area_id,

Line 266: -- Bug#3630066 Added ghr_duty_stations_f_s sequence.

262: p_validation_end_date in date) is
263: --
264: l_proc varchar2(72) := g_package||'pre_insert';
265:
266: -- Bug#3630066 Added ghr_duty_stations_f_s sequence.
267: cursor c1 is
268: select ghr_duty_stations_f_s.nextval
269: from dual;
270: --

Line 268: select ghr_duty_stations_f_s.nextval

264: l_proc varchar2(72) := g_package||'pre_insert';
265:
266: -- Bug#3630066 Added ghr_duty_stations_f_s sequence.
267: cursor c1 is
268: select ghr_duty_stations_f_s.nextval
269: from dual;
270: --
271: --
272: Begin

Line 401: p_base_table_name => 'ghr_duty_stations_f',

397: --
398: dt_api.validate_dt_mode
399: (p_datetrack_mode => p_datetrack_mode,
400: p_effective_date => p_effective_date,
401: p_base_table_name => 'ghr_duty_stations_f',
402: p_base_key_column => 'duty_station_id',
403: p_base_key_value => p_rec.duty_station_id,
404: p_enforce_foreign_locking => true,
405: p_validation_start_date => l_validation_start_date,