DBA Data[Home] [Help]

APPS.PER_CEI_UPD dependencies on PER_CAGR_ENTITLEMENT_ITEMS

Line 59: l_last_update_date per_cagr_entitlement_items.last_update_date%TYPE;

55: (p_rec in out nocopy per_cei_shd.g_rec_type
56: ) is
57: --
58: l_proc varchar2(72) := g_package||'update_dml';
59: l_last_update_date per_cagr_entitlement_items.last_update_date%TYPE;
60: l_last_updated_by per_cagr_entitlement_items.last_updated_by%TYPE;
61: l_last_update_login per_cagr_entitlement_items.last_update_login%TYPE;
62: --
63: Begin

Line 60: l_last_updated_by per_cagr_entitlement_items.last_updated_by%TYPE;

56: ) is
57: --
58: l_proc varchar2(72) := g_package||'update_dml';
59: l_last_update_date per_cagr_entitlement_items.last_update_date%TYPE;
60: l_last_updated_by per_cagr_entitlement_items.last_updated_by%TYPE;
61: l_last_update_login per_cagr_entitlement_items.last_update_login%TYPE;
62: --
63: Begin
64: hr_utility.set_location('Entering:'||l_proc, 5);

Line 61: l_last_update_login per_cagr_entitlement_items.last_update_login%TYPE;

57: --
58: l_proc varchar2(72) := g_package||'update_dml';
59: l_last_update_date per_cagr_entitlement_items.last_update_date%TYPE;
60: l_last_updated_by per_cagr_entitlement_items.last_updated_by%TYPE;
61: l_last_update_login per_cagr_entitlement_items.last_update_login%TYPE;
62: --
63: Begin
64: hr_utility.set_location('Entering:'||l_proc, 5);
65: --

Line 76: -- Update the per_cagr_entitlement_items Row

72: l_last_update_date := sysdate;
73: l_last_updated_by := fnd_global.user_id;
74: l_last_update_login := fnd_global.login_id;
75: --
76: -- Update the per_cagr_entitlement_items Row
77: --
78: --
79: update per_cagr_entitlement_items
80: set

Line 79: update per_cagr_entitlement_items

75: --
76: -- Update the per_cagr_entitlement_items Row
77: --
78: --
79: update per_cagr_entitlement_items
80: set
81: cagr_entitlement_item_id = p_rec.cagr_entitlement_item_id
82: ,item_name = p_rec.item_name
83: ,element_type_id = p_rec.element_type_id

Line 263: (p_module_name => 'PER_CAGR_ENTITLEMENT_ITEMS'

259: --
260: when hr_api.cannot_find_prog_unit then
261: --
262: hr_api.cannot_find_prog_unit_error
263: (p_module_name => 'PER_CAGR_ENTITLEMENT_ITEMS'
264: ,p_hook_type => 'AU');
265: --
266: end;
267: --