DBA Data[Home] [Help]

APPS.HR_REVTERMINATION_SS dependencies on HR_TRANSACTION_SS

Line 580: ln_transaction_id := hr_transaction_ss.get_transaction_id (

576:
577: ---------------------------------------------------------------------
578: -- Check if there is already a transaction for this process?
579: ---------------------------------------------------------------------
580: ln_transaction_id := hr_transaction_ss.get_transaction_id (
581: p_Item_Type => p_item_type,
582: p_Item_Key => p_item_key
583: );
584:

Line 591: hr_transaction_ss.start_transaction (

587:
588: -------------------------------------------------------------------
589: -- Create a new transaction
590: -------------------------------------------------------------------
591: hr_transaction_ss.start_transaction (
592: itemtype => p_item_type,
593: itemkey => p_item_key,
594: actid => TO_NUMBER(p_actid),
595: funmode => 'RUN',

Line 600: ln_transaction_id := hr_transaction_ss.get_transaction_id (

596: p_login_person_id => p_login_person_id,
597: result => lv_result
598: );
599:
600: ln_transaction_id := hr_transaction_ss.get_transaction_id (
601: p_Item_Type => p_item_type,
602: p_Item_Key => p_item_key
603: );
604: END IF;

Line 646: hr_transaction_ss.get_activity_trans_step_id (

642: -- There are transaction steps for this transaction.
643: -- Get the Transaction Step ID for this activity.
644: --------------------------------------------------------------------
645: ln_transaction_step_id :=
646: hr_transaction_ss.get_activity_trans_step_id (
647: p_activity_name => lv_activity_name,
648: p_trans_step_id_tbl => ltt_trans_step_ids
649: );
650:

Line 653: hr_transaction_ss.save_transaction_step (

649: );
650:
651: END IF;
652:
653: hr_transaction_ss.save_transaction_step (
654: p_item_Type => p_item_type,
655: p_item_Key => p_item_key,
656: p_actid => TO_NUMBER(p_actid),
657: p_login_person_id => p_login_person_id,

Line 1261: ln_transaction_id := hr_transaction_ss.get_transaction_id (

1257: -------------------------------------------------------------------
1258: -- Check if Transaction Already Exists !
1259: -------------------------------------------------------------------
1260:
1261: ln_transaction_id := hr_transaction_ss.get_transaction_id (
1262: p_Item_Type => p_item_type,
1263: p_Item_Key => p_item_key
1264: );
1265:

Line 1268: hr_transaction_ss.start_transaction (

1264: );
1265:
1266: IF ln_transaction_id IS NULL THEN
1267: -- Create a New Transaction
1268: hr_transaction_ss.start_transaction (
1269: itemtype => p_item_type,
1270: itemkey => p_item_key,
1271: actid => TO_NUMBER(p_actid),
1272: funmode => 'RUN',

Line 1278: ln_transaction_id := hr_transaction_ss.get_transaction_id (

1274: p_login_person_id => p_login_person_id,
1275: result => lv_result
1276: );
1277:
1278: ln_transaction_id := hr_transaction_ss.get_transaction_id (
1279: p_Item_Type => p_item_type,
1280: p_Item_Key => p_item_key
1281: );
1282: END IF;

Line 1323: hr_transaction_ss.get_activity_trans_step_id (

1319: -- There are transaction steps for this transaction.
1320: -- Get the Transaction Step ID for this activity.
1321: --------------------------------------------------------------------
1322: ln_transaction_step_id :=
1323: hr_transaction_ss.get_activity_trans_step_id (
1324: p_activity_name => lv_activity_name,
1325: p_trans_step_id_tbl => ltt_trans_step_ids
1326: );
1327:

Line 1331: hr_transaction_ss.save_transaction_step (

1327:
1328: END IF;
1329: -- Save Transaction Step.
1330:
1331: hr_transaction_ss.save_transaction_step (
1332: p_item_Type => p_item_type,
1333: p_item_Key => p_item_key,
1334: p_actid => TO_NUMBER(p_actid),
1335: p_login_person_id => p_login_person_id,