DBA Data[Home] [Help]

APPS.HR_TRANSACTION_SS dependencies on HR_TRANSACTION_SWI

Line 1451: hr_transaction_swi.set_transaction_context(l_transaction_id);

1447: end if;
1448: -- set the Profiles before starting to process any step.
1449: hr_utility.set_location('Call Set_Transaction_Context: '|| l_proc, 10);
1450: -- Call Set_Transaction_Context
1451: hr_transaction_swi.set_transaction_context(l_transaction_id);
1452:
1453: -- If p_effective_date is not NULL then set it on the g_txn_ctx.EFFECTIVE_DATE
1454: if ( p_effective_date is not null ) then
1455: BEGIN

Line 1456: hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE := trunc(fnd_date.canonical_to_date(p_effective_date));

1452:
1453: -- If p_effective_date is not NULL then set it on the g_txn_ctx.EFFECTIVE_DATE
1454: if ( p_effective_date is not null ) then
1455: BEGIN
1456: hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE := trunc(fnd_date.canonical_to_date(p_effective_date));
1457: EXCEPTION When Others then
1458: hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE := trunc(fnd_date.chardate_to_date(p_effective_date));
1459: END;
1460: end if;

Line 1458: hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE := trunc(fnd_date.chardate_to_date(p_effective_date));

1454: if ( p_effective_date is not null ) then
1455: BEGIN
1456: hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE := trunc(fnd_date.canonical_to_date(p_effective_date));
1457: EXCEPTION When Others then
1458: hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE := trunc(fnd_date.chardate_to_date(p_effective_date));
1459: END;
1460: end if;
1461:
1462: hr_utility.set_location('Call Set_Person_Context: '|| l_proc, 15);

Line 1465: hr_transaction_swi.set_person_context(

1461:
1462: hr_utility.set_location('Call Set_Person_Context: '|| l_proc, 15);
1463: -- Call Set_Person_Context
1464:
1465: hr_transaction_swi.set_person_context(
1466: p_selected_person_id => hr_transaction_swi.g_txn_ctx.SELECTED_PERSON_ID,
1467: p_selected_assignment_id => hr_transaction_swi.g_txn_ctx.ASSIGNMENT_ID,
1468: p_effective_date => hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE
1469: );

Line 1466: p_selected_person_id => hr_transaction_swi.g_txn_ctx.SELECTED_PERSON_ID,

1462: hr_utility.set_location('Call Set_Person_Context: '|| l_proc, 15);
1463: -- Call Set_Person_Context
1464:
1465: hr_transaction_swi.set_person_context(
1466: p_selected_person_id => hr_transaction_swi.g_txn_ctx.SELECTED_PERSON_ID,
1467: p_selected_assignment_id => hr_transaction_swi.g_txn_ctx.ASSIGNMENT_ID,
1468: p_effective_date => hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE
1469: );
1470:

Line 1467: p_selected_assignment_id => hr_transaction_swi.g_txn_ctx.ASSIGNMENT_ID,

1463: -- Call Set_Person_Context
1464:
1465: hr_transaction_swi.set_person_context(
1466: p_selected_person_id => hr_transaction_swi.g_txn_ctx.SELECTED_PERSON_ID,
1467: p_selected_assignment_id => hr_transaction_swi.g_txn_ctx.ASSIGNMENT_ID,
1468: p_effective_date => hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE
1469: );
1470:
1471: -- select each transaction steps to process

Line 1468: p_effective_date => hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE

1464:
1465: hr_transaction_swi.set_person_context(
1466: p_selected_person_id => hr_transaction_swi.g_txn_ctx.SELECTED_PERSON_ID,
1467: p_selected_assignment_id => hr_transaction_swi.g_txn_ctx.ASSIGNMENT_ID,
1468: p_effective_date => hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE
1469: );
1470:
1471: -- select each transaction steps to process
1472: hr_utility.set_location('select each transaction steps to process: '|| l_proc, 20);

Line 1763: l_return_status :=hr_transaction_swi.commit_transaction

1759: -- call SWI commit Transaction
1760: l_txn_id := get_transaction_id(itemtype,itemkey);
1761:
1762: if l_txn_id is not null then
1763: l_return_status :=hr_transaction_swi.commit_transaction
1764: ( p_transaction_id => l_txn_id );
1765: if l_return_status = 'E' then
1766: raise l_commit_error;
1767: end if;