DBA Data[Home] [Help]

PACKAGE: APPS.PAY_GET_JOB_SEGMENT_PKG

Source


1 PACKAGE PAY_GET_JOB_SEGMENT_PKG AUTHID CURRENT_USER as
2 /* $Header: pygbjseg.pkh 115.1 2003/01/03 11:21:28 nsugavan noship $ */
3 --
4 /*===========================================================================+
5  |               Copyright (c) 1993 Oracle Corporation                       |
6  |                  Redwood Shores, California, USA                          |
7  |                       All rights reserved.                                |
8  +============================================================================
9  Name
10     PAY_GET_JOB_SEGMENT_PKG
11   Purpose
12     Function to pass on the value of the job segment selected in Tax Details
13     References DFF or blank if no segment is selected. Function is moved here
14     to a seperate package to facilitate call to the function in oracle 8.0
15     as functions defined in the same package cannot be called in R8.0
16 --
17 REM Change List
18 REM -----------
19 REM Name          Date        Version Bug     Text
20 REM ------------- ----------- ------- ------- --------------------------
21 REM nsugavan      12/24/2002    115.0 2657976 Initial Version
22 REM nsugavan      01/03/2003    115.1 2657976 Removed parameter job name
23 ============================================================================*/
24 
25 
26 -- EDI MES
27 --
28 function  get_job_segment(p_organization_id             in hr_organization_information.organization_id%type
29                          ,p_job_definition_id           in number
30                          ,p_payroll_action_id           in number)
31                          return varchar2;
32 --
33 -- EDI MES
34 --
35 pragma restrict_references (get_job_segment,  WNDS, WNPS);
36 
37 end pay_get_job_segment_pkg;