DBA Data[Home] [Help]

APPS.HR_TRANSACTION_SS dependencies on HR_TRANSACTION_SWI

Line 1365: hr_transaction_swi.set_transaction_context(l_transaction_id);

1361: end if;
1362: -- set the Profiles before starting to process any step.
1363: hr_utility.set_location('Call Set_Transaction_Context: '|| l_proc, 10);
1364: -- Call Set_Transaction_Context
1365: hr_transaction_swi.set_transaction_context(l_transaction_id);
1366:
1367: -- If p_effective_date is not NULL then set it on the g_txn_ctx.EFFECTIVE_DATE
1368: if ( p_effective_date is not null ) then
1369: BEGIN

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

1366:
1367: -- If p_effective_date is not NULL then set it on the g_txn_ctx.EFFECTIVE_DATE
1368: if ( p_effective_date is not null ) then
1369: BEGIN
1370: hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE := trunc(fnd_date.canonical_to_date(p_effective_date));
1371: EXCEPTION When Others then
1372: hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE := trunc(fnd_date.chardate_to_date(p_effective_date));
1373: END;
1374: end if;

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

1368: if ( p_effective_date is not null ) then
1369: BEGIN
1370: hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE := trunc(fnd_date.canonical_to_date(p_effective_date));
1371: EXCEPTION When Others then
1372: hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE := trunc(fnd_date.chardate_to_date(p_effective_date));
1373: END;
1374: end if;
1375:
1376: hr_utility.set_location('Call Set_Person_Context: '|| l_proc, 15);

Line 1379: hr_transaction_swi.set_person_context(

1375:
1376: hr_utility.set_location('Call Set_Person_Context: '|| l_proc, 15);
1377: -- Call Set_Person_Context
1378:
1379: hr_transaction_swi.set_person_context(
1380: p_selected_person_id => hr_transaction_swi.g_txn_ctx.SELECTED_PERSON_ID,
1381: p_selected_assignment_id => hr_transaction_swi.g_txn_ctx.ASSIGNMENT_ID,
1382: p_effective_date => hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE
1383: );

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

1376: hr_utility.set_location('Call Set_Person_Context: '|| l_proc, 15);
1377: -- Call Set_Person_Context
1378:
1379: hr_transaction_swi.set_person_context(
1380: p_selected_person_id => hr_transaction_swi.g_txn_ctx.SELECTED_PERSON_ID,
1381: p_selected_assignment_id => hr_transaction_swi.g_txn_ctx.ASSIGNMENT_ID,
1382: p_effective_date => hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE
1383: );
1384:

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

1377: -- Call Set_Person_Context
1378:
1379: hr_transaction_swi.set_person_context(
1380: p_selected_person_id => hr_transaction_swi.g_txn_ctx.SELECTED_PERSON_ID,
1381: p_selected_assignment_id => hr_transaction_swi.g_txn_ctx.ASSIGNMENT_ID,
1382: p_effective_date => hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE
1383: );
1384:
1385: -- select each transaction steps to process

Line 1382: p_effective_date => hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE

1378:
1379: hr_transaction_swi.set_person_context(
1380: p_selected_person_id => hr_transaction_swi.g_txn_ctx.SELECTED_PERSON_ID,
1381: p_selected_assignment_id => hr_transaction_swi.g_txn_ctx.ASSIGNMENT_ID,
1382: p_effective_date => hr_transaction_swi.g_txn_ctx.EFFECTIVE_DATE
1383: );
1384:
1385: -- select each transaction steps to process
1386: hr_utility.set_location('select each transaction steps to process: '|| l_proc, 20);

Line 1676: l_return_status :=hr_transaction_swi.commit_transaction

1672: -- call SWI commit Transaction
1673: l_txn_id := get_transaction_id(itemtype,itemkey);
1674:
1675: if l_txn_id is not null then
1676: l_return_status :=hr_transaction_swi.commit_transaction
1677: ( p_transaction_id => l_txn_id );
1678: if l_return_status = 'E' then
1679: raise l_commit_error;
1680: end if;