DBA Data[Home] [Help]

APPS.HR_QUA_AWARDS_UTIL_SS dependencies on HR_TRANSACTION_SS

Line 1149: l_transaction_id := hr_transaction_ss.get_transaction_id

1145:
1146: begin
1147:
1148: hr_utility.set_location('Entering:'||l_proc, 5);
1149: l_transaction_id := hr_transaction_ss.get_transaction_id
1150: (p_item_type => p_item_type
1151: ,p_item_key => p_item_key);
1152: if l_transaction_id is not null then
1153: hr_utility.set_location('l_transaction_id is not null:'||l_proc,10);

Line 1159: hr_transaction_ss.delete_transaction_step

1155: fetch c_get_transaction_step_id into l_transaction_step_id;
1156: close c_get_transaction_step_id;
1157: if l_transaction_step_id is not null then
1158: hr_utility.set_location('if l_transaction_step_id is not null:'||l_proc,15);
1159: hr_transaction_ss.delete_transaction_step
1160: (l_transaction_step_id,null,p_creator_person_id);
1161: end if;
1162: end if;
1163:

Line 1553: l_transaction_id := hr_transaction_ss.get_transaction_id

1549: ,p_selected_person_id => p_qualifications(1).person_id
1550: ,p_creator_person_id => p_creator_person_id
1551: ,result => l_result);
1552:
1553: l_transaction_id := hr_transaction_ss.get_transaction_id
1554: (p_item_type => p_item_type
1555: ,p_item_key => p_item_key);
1556:
1557: --create a transaction step for this transaction.

Line 3234: if hr_transaction_ss.get_transaction_id

3230:
3231: -- the TRANSACTION_ID exists so ensure that it is null
3232:
3233:
3234: if hr_transaction_ss.get_transaction_id
3235: (p_item_type => itemtype
3236: ,p_item_key => itemkey) is not null then
3237:
3238: -- a current transaction is in progress we cannot overwrite it

Line 3241: l_transaction_id := hr_transaction_ss.get_transaction_id

3237:
3238: -- a current transaction is in progress we cannot overwrite it
3239: -- get the Transaction Step Id
3240: hr_utility.set_location('If itemtype and itemKey is not null:'||l_proc,15);
3241: l_transaction_id := hr_transaction_ss.get_transaction_id
3242: (p_item_type => itemtype
3243: ,p_item_key => itemkey);
3244: open c_get_transaction_step_id;
3245: fetch c_get_transaction_step_id into l_transaction_step_id;

Line 3247: hr_transaction_ss.delete_transaction_step

3243: ,p_item_key => itemkey);
3244: open c_get_transaction_step_id;
3245: fetch c_get_transaction_step_id into l_transaction_step_id;
3246: close c_get_transaction_step_id;
3247: hr_transaction_ss.delete_transaction_step
3248: (l_transaction_step_id,null,p_creator_person_id);
3249: end if;
3250: end if;
3251: -- the TRANSACTION_ID attribute has not been created. create it.

Line 3252: hr_transaction_ss.start_transaction

3248: (l_transaction_step_id,null,p_creator_person_id);
3249: end if;
3250: end if;
3251: -- the TRANSACTION_ID attribute has not been created. create it.
3252: hr_transaction_ss.start_transaction
3253: (itemtype => itemtype
3254: ,itemkey => itemkey
3255: ,actid => actid
3256: ,funmode => funmode

Line 4275: hr_transaction_ss.delete_transaction_step(p_transaction_step_id,null,p_creator_person_id);

4271: Begin
4272:
4273: -- delete the old transaction values
4274: hr_utility.set_location('Entering:'||l_proc, 5);
4275: hr_transaction_ss.delete_transaction_step(p_transaction_step_id,null,p_creator_person_id);
4276: hr_utility.set_location('Exiting:'||l_proc, 15);
4277: Exception
4278: when others then
4279: hr_utility.set_location('Exception:Others'||l_proc,555);