DBA Data[Home] [Help]

APPS.HR_TERMINATION_SS dependencies on HR_TRANSACTION_SS

Line 303: to_date(l_text_value, hr_transaction_ss.g_date_format)

299: IF l_text_value IS NOT NULL
300: THEN
301: hr_utility.trace('In (if l_text_value IS NOT NULL): '|| l_proc);
302: l_effective_date := trunc(
303: to_date(l_text_value, hr_transaction_ss.g_date_format)
304: );
305: ELSE
306: hr_utility.trace('In else of (if l_text_value IS NOT NULL): '|| l_proc);
307: -- Use sysdate if the wf item attribute contains null value

Line 1671: ln_transaction_id := hr_transaction_ss.get_transaction_id (

1667: := 'VARCHAR2';
1668: ---------------------------------------------------------------------
1669: -- Check if there is already a transaction for this process?
1670: ---------------------------------------------------------------------
1671: ln_transaction_id := hr_transaction_ss.get_transaction_id (
1672: p_Item_Type => p_item_type,
1673: p_Item_Key => p_item_key
1674: );
1675:

Line 1682: hr_transaction_ss.start_transaction (

1678: hr_utility.trace('In (iF ln_transaction_id IS NULL): '|| l_proc);
1679: -------------------------------------------------------------------
1680: -- Create a new transaction
1681: -------------------------------------------------------------------
1682: hr_transaction_ss.start_transaction (
1683: itemtype => p_item_type,
1684: itemkey => p_item_key,
1685: actid => TO_NUMBER(p_actid),
1686: funmode => 'RUN',

Line 1692: ln_transaction_id := hr_transaction_ss.get_transaction_id (

1688: p_login_person_id => p_login_person_id,
1689: result => lv_result
1690: );
1691:
1692: ln_transaction_id := hr_transaction_ss.get_transaction_id (
1693: p_Item_Type => p_item_type,
1694: p_Item_Key => p_item_key
1695: );
1696: END IF;

Line 1738: hr_transaction_ss.get_activity_trans_step_id (

1734: -- There are transaction steps for this transaction.
1735: -- Get the Transaction Step ID for this activity.
1736: --------------------------------------------------------------------
1737: ln_transaction_step_id :=
1738: hr_transaction_ss.get_activity_trans_step_id (
1739: p_activity_name => lv_activity_name,
1740: p_trans_step_id_tbl => ltt_trans_step_ids
1741: );
1742:

Line 1745: hr_transaction_ss.save_transaction_step (

1741: );
1742:
1743: END IF;
1744:
1745: hr_transaction_ss.save_transaction_step (
1746: p_item_Type => p_item_type,
1747: p_item_Key => p_item_key,
1748: p_actid => TO_NUMBER(p_actid),
1749: p_login_person_id => p_login_person_id,

Line 1934: hr_transaction_ss.get_wf_effective_date

1930: IF (p_effective_date is not null) THEN
1931: ld_effective_date:= to_date(p_effective_date,g_date_format);
1932: ELSE
1933: ld_effective_date:= to_date(
1934: hr_transaction_ss.get_wf_effective_date
1935: (p_transaction_step_id => p_transaction_step_id),g_date_format);
1936: END IF;
1937:
1938: savepoint ex_emp_savepoint;

Line 2530: hr_transaction_ss.get_wf_effective_date

2526: -- Date from the transaction table and ignore the new date entered by the
2527: -- user.
2528:
2529: p_actual_termination_date:=
2530: hr_transaction_ss.get_wf_effective_date
2531: (p_transaction_step_id => p_transaction_step_id);
2532: --
2533: -- Bug 2086516 Fix Ends - 11/15/2001
2534: --