DBA Data[Home] [Help]

APPS.PER_CIT_UPD dependencies on PER_CAGR_ENTITLEMENT_ITEMS_TL

Line 66: -- Update the per_cagr_entitlement_items_tl Row

62: --
63: --
64: --
65: --
66: -- Update the per_cagr_entitlement_items_tl Row
67: --
68: update per_cagr_entitlement_items_tl
69: set
70: cagr_entitlement_item_id = p_rec.cagr_entitlement_item_id

Line 68: update per_cagr_entitlement_items_tl

64: --
65: --
66: -- Update the per_cagr_entitlement_items_tl Row
67: --
68: update per_cagr_entitlement_items_tl
69: set
70: cagr_entitlement_item_id = p_rec.cagr_entitlement_item_id
71: ,item_name = p_rec.item_name
72: ,language = p_rec.language

Line 208: (p_module_name => 'PER_CAGR_ENTITLEMENT_ITEMS_TL'

204: --
205: when hr_api.cannot_find_prog_unit then
206: --
207: hr_api.cannot_find_prog_unit_error
208: (p_module_name => 'PER_CAGR_ENTITLEMENT_ITEMS_TL'
209: ,p_hook_type => 'AU');
210: --
211: end;
212: --

Line 379: from per_cagr_entitlement_items_tl cit

375: -- source_lang match the specified language.
376: --
377: cursor csr_upd_langs is
378: select cit.language
379: from per_cagr_entitlement_items_tl cit
380: where cit.cagr_entitlement_item_id = p_cagr_entitlement_item_id
381: and p_language_code in (cit.language
382: ,cit.source_lang);
383: --