DBA Data[Home] [Help]

APPS.HR_SUPERVISOR_SS dependencies on HR_TRANSACTION_SS

Line 364: ln_transaction_id := hr_transaction_ss.get_transaction_id

360: ln_term_flag BOOLEAN DEFAULT FALSE;
361: l_proc constant varchar2(1000) := g_package || ' Create_transaction';
362: BEGIN
363: hr_utility.set_location('Entering'|| l_proc,5);
364: ln_transaction_id := hr_transaction_ss.get_transaction_id
365: (p_Item_Type => p_item_type
366: ,p_Item_Key => p_item_key);
367:
368: IF ln_transaction_id IS NULL

Line 372: hr_transaction_ss.start_transaction

368: IF ln_transaction_id IS NULL
369:
370: THEN
371: hr_utility.trace('In ( IF ln_transaction_id IS NULL)'|| l_proc);
372: hr_transaction_ss.start_transaction
373: ( itemtype => p_item_type
374: ,itemkey => p_item_key
375: ,actid => p_act_id
376: ,funmode => 'RUN'

Line 383: ln_transaction_id := hr_transaction_ss.get_transaction_id

379: ,p_plan_id => p_plan_id
380: ,p_rptg_grp_id => p_rptg_grp_id
381: ,p_effective_date_option => p_effective_date_option );
382:
383: ln_transaction_id := hr_transaction_ss.get_transaction_id
384: (p_item_type => p_item_type
385: ,p_item_key => p_item_key);
386:
387: END IF; -- now we have a valid txn id , let's find out txn steps

Line 419: hr_transaction_ss.get_activity_trans_step_id(

415: hr_utility.trace('In else of (If ln_trans_step_rows < 1)'|| l_proc);
416: --There are transaction steps for this transaction.
417: --Get the Transaction Step ID for this activity.
418: ln_transaction_step_id :=
419: hr_transaction_ss.get_activity_trans_step_id(
420: p_activity_name => gv_activity_name
421: ,p_trans_step_id_tbl => ltt_trans_step_ids);
422:
423: END IF;

Line 904: ln_transaction_id := hr_transaction_ss.get_transaction_id

900: -- ld_passed_effective_date DATE ;
901:
902: BEGIN
903: hr_utility.set_location('Entering'|| l_proc,5);
904: ln_transaction_id := hr_transaction_ss.get_transaction_id
905: (p_Item_Type => p_item_type,
906: p_Item_Key => p_item_key);
907:
908:

Line 930: hr_transaction_ss.get_activity_trans_step_id

926:
927: ELSE
928:
929: ln_transaction_step_id :=
930: hr_transaction_ss.get_activity_trans_step_id
931: (p_activity_name => gv_activity_name
932: ,p_trans_step_id_tbl => ltt_trans_step_ids);
933:
934: -- now get the which region is changed

Line 1250: hr_transaction_ss.get_wf_effective_date

1246: IF (p_effective_date is not null) THEN
1247: ld_effective_date:= to_date(p_effective_date, gv_date_format);
1248: ELSE
1249: ld_effective_date:= to_date(
1250: hr_transaction_ss.get_wf_effective_date
1251: (p_transaction_step_id => p_transaction_step_id), gv_date_format);
1252: END IF;
1253:
1254: -- SAVE_FOR_LATER Changes End