DBA Data[Home] [Help]

APPS.HR_SUPERVISOR_SS dependencies on HR_TRANSACTION_SS

Line 319: ln_transaction_id := hr_transaction_ss.get_transaction_id

315: ln_term_flag BOOLEAN DEFAULT FALSE;
316: l_proc constant varchar2(1000) := g_package || ' Create_transaction';
317: BEGIN
318: hr_utility.set_location('Entering'|| l_proc,5);
319: ln_transaction_id := hr_transaction_ss.get_transaction_id
320: (p_Item_Type => p_item_type
321: ,p_Item_Key => p_item_key);
322:
323: IF ln_transaction_id IS NULL

Line 327: hr_transaction_ss.start_transaction

323: IF ln_transaction_id IS NULL
324:
325: THEN
326: hr_utility.trace('In ( IF ln_transaction_id IS NULL)'|| l_proc);
327: hr_transaction_ss.start_transaction
328: ( itemtype => p_item_type
329: ,itemkey => p_item_key
330: ,actid => p_act_id
331: ,funmode => 'RUN'

Line 338: ln_transaction_id := hr_transaction_ss.get_transaction_id

334: ,p_plan_id => p_plan_id
335: ,p_rptg_grp_id => p_rptg_grp_id
336: ,p_effective_date_option => p_effective_date_option );
337:
338: ln_transaction_id := hr_transaction_ss.get_transaction_id
339: (p_item_type => p_item_type
340: ,p_item_key => p_item_key);
341:
342: END IF; -- now we have a valid txn id , let's find out txn steps

Line 374: hr_transaction_ss.get_activity_trans_step_id(

370: hr_utility.trace('In else of (If ln_trans_step_rows < 1)'|| l_proc);
371: --There are transaction steps for this transaction.
372: --Get the Transaction Step ID for this activity.
373: ln_transaction_step_id :=
374: hr_transaction_ss.get_activity_trans_step_id(
375: p_activity_name => gv_activity_name
376: ,p_trans_step_id_tbl => ltt_trans_step_ids);
377:
378: END IF;

Line 859: ln_transaction_id := hr_transaction_ss.get_transaction_id

855: -- ld_passed_effective_date DATE ;
856:
857: BEGIN
858: hr_utility.set_location('Entering'|| l_proc,5);
859: ln_transaction_id := hr_transaction_ss.get_transaction_id
860: (p_Item_Type => p_item_type,
861: p_Item_Key => p_item_key);
862:
863:

Line 885: hr_transaction_ss.get_activity_trans_step_id

881:
882: ELSE
883:
884: ln_transaction_step_id :=
885: hr_transaction_ss.get_activity_trans_step_id
886: (p_activity_name => gv_activity_name
887: ,p_trans_step_id_tbl => ltt_trans_step_ids);
888:
889: -- now get the which region is changed

Line 1205: hr_transaction_ss.get_wf_effective_date

1201: IF (p_effective_date is not null) THEN
1202: ld_effective_date:= to_date(p_effective_date, gv_date_format);
1203: ELSE
1204: ld_effective_date:= to_date(
1205: hr_transaction_ss.get_wf_effective_date
1206: (p_transaction_step_id => p_transaction_step_id), gv_date_format);
1207: END IF;
1208:
1209: -- SAVE_FOR_LATER Changes End