DBA Data[Home] [Help]

APPS.HR_CCMGR_SS dependencies on HR_CCMGR_TYPE

Line 199: l_ccmgr_rec HR_CCMGR_TYPE;

195: ,p_transaction_step_id in number default null
196: ,p_effective_date in varchar2 default null) IS
197:
198: l_proc Varchar2(200) := g_package || 'process_api';
199: l_ccmgr_rec HR_CCMGR_TYPE;
200: l_eff_date Date;
201: l_warning boolean;
202: Begin
203: hr_utility.set_location(' Entering:' || l_proc,5);

Line 209: l_ccmgr_rec := HR_CCMGR_TYPE(hr_transaction_api.get_number_value(p_transaction_step_id, 'P_ORG_INFORMATION_ID'),

205:
206: dt_fndate.set_effective_date(l_eff_date);
207: hr_utility.set_location(l_proc,10);
208:
209: l_ccmgr_rec := HR_CCMGR_TYPE(hr_transaction_api.get_number_value(p_transaction_step_id, 'P_ORG_INFORMATION_ID'),
210: hr_transaction_api.get_number_value(p_transaction_step_id, 'P_ORGANIZATION_ID'),
211: Null, -- organization name
212: hr_transaction_api.get_number_value(p_transaction_step_id, 'P_CURR_MANAGER_ID'),
213: hr_transaction_api.get_number_value(p_transaction_step_id, 'P_CURR_MANAGER'),

Line 240: Procedure validate_ccmgr_record(p_ccmgr_rec IN HR_CCMGR_TYPE

236: raise;
237: End process_api;
238:
239: --
240: Procedure validate_ccmgr_record(p_ccmgr_rec IN HR_CCMGR_TYPE
241: ,p_validate_mode IN boolean Default true
242: ,p_eff_date IN Date
243: ,p_warning OUT NOCOPY Boolean) IS
244: l_proc Varchar2(200) := g_package || 'validate_ccmgr_record';