DBA Data[Home] [Help]

PACKAGE BODY: APPS.CSP_HR_LOC_CUST

Source


1 PACKAGE BODY CSP_HR_LOC_CUST AS
2 /* $Header: csphrloccustb.pls 120.0.12020000.1 2012/07/16 15:13:59 htank noship $ */
3 
4 
5 -- Start of Comments
6 -- Package name     : CSP_HR_LOC_CUST
7 -- Purpose          :
8 -- History          :
9 -- NOTE             :
10 -- End of Comments
11 
12 FUNCTION user_hook (
13    p_hr_loc_record  IN hr_location_record.location_rectype
14    ) RETURN hr_location_record.location_rectype
15 IS
16    x_hr_loc_record    hr_location_record.location_rectype;
17 BEGIN
18 
19     if(FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
20      FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,
21                 'csp.plsql.csp_hr_loc_cust.user_hook',
22                 'Begin...');
23     end if;
24 
25     x_hr_loc_record := p_hr_loc_record;
26 
27     if(FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
28      FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,
29                 'csp.plsql.csp_hr_loc_cust.user_hook',
30                 'Returning...');
31     end if;
32 
33     RETURN x_hr_loc_record;
34 END user_hook;
35 
36 End CSP_HR_LOC_CUST;