DBA Data[Home] [Help]

APPS.HR_TERMINATION_SS dependencies on HR_TRANSACTION_SS

Line 288: to_date(l_text_value, hr_transaction_ss.g_date_format)

284: IF l_text_value IS NOT NULL
285: THEN
286: hr_utility.trace('In (if l_text_value IS NOT NULL): '|| l_proc);
287: l_effective_date := trunc(
288: to_date(l_text_value, hr_transaction_ss.g_date_format)
289: );
290: ELSE
291: hr_utility.trace('In else of (if l_text_value IS NOT NULL): '|| l_proc);
292: -- Use sysdate if the wf item attribute contains null value

Line 1599: ln_transaction_id := hr_transaction_ss.get_transaction_id (

1595: := 'VARCHAR2';
1596: ---------------------------------------------------------------------
1597: -- Check if there is already a transaction for this process?
1598: ---------------------------------------------------------------------
1599: ln_transaction_id := hr_transaction_ss.get_transaction_id (
1600: p_Item_Type => p_item_type,
1601: p_Item_Key => p_item_key
1602: );
1603:

Line 1610: hr_transaction_ss.start_transaction (

1606: hr_utility.trace('In (iF ln_transaction_id IS NULL): '|| l_proc);
1607: -------------------------------------------------------------------
1608: -- Create a new transaction
1609: -------------------------------------------------------------------
1610: hr_transaction_ss.start_transaction (
1611: itemtype => p_item_type,
1612: itemkey => p_item_key,
1613: actid => TO_NUMBER(p_actid),
1614: funmode => 'RUN',

Line 1620: ln_transaction_id := hr_transaction_ss.get_transaction_id (

1616: p_login_person_id => p_login_person_id,
1617: result => lv_result
1618: );
1619:
1620: ln_transaction_id := hr_transaction_ss.get_transaction_id (
1621: p_Item_Type => p_item_type,
1622: p_Item_Key => p_item_key
1623: );
1624: END IF;

Line 1666: hr_transaction_ss.get_activity_trans_step_id (

1662: -- There are transaction steps for this transaction.
1663: -- Get the Transaction Step ID for this activity.
1664: --------------------------------------------------------------------
1665: ln_transaction_step_id :=
1666: hr_transaction_ss.get_activity_trans_step_id (
1667: p_activity_name => lv_activity_name,
1668: p_trans_step_id_tbl => ltt_trans_step_ids
1669: );
1670:

Line 1673: hr_transaction_ss.save_transaction_step (

1669: );
1670:
1671: END IF;
1672:
1673: hr_transaction_ss.save_transaction_step (
1674: p_item_Type => p_item_type,
1675: p_item_Key => p_item_key,
1676: p_actid => TO_NUMBER(p_actid),
1677: p_login_person_id => p_login_person_id,

Line 1793: hr_transaction_ss.get_wf_effective_date

1789: IF (p_effective_date is not null) THEN
1790: ld_effective_date:= to_date(p_effective_date,g_date_format);
1791: ELSE
1792: ld_effective_date:= to_date(
1793: hr_transaction_ss.get_wf_effective_date
1794: (p_transaction_step_id => p_transaction_step_id),g_date_format);
1795: END IF;
1796:
1797: savepoint ex_emp_savepoint;

Line 2317: hr_transaction_ss.get_wf_effective_date

2313: -- Date from the transaction table and ignore the new date entered by the
2314: -- user.
2315:
2316: p_actual_termination_date:=
2317: hr_transaction_ss.get_wf_effective_date
2318: (p_transaction_step_id => p_transaction_step_id);
2319: --
2320: -- Bug 2086516 Fix Ends - 11/15/2001
2321: --