DBA Data[Home] [Help]

PACKAGE: APPS.HR_JOB_POS

Source


1 PACKAGE hr_job_pos AUTHID CURRENT_USER AS
2 /* $Header: pejapdel.pkh 115.0 99/07/18 13:54:30 porting ship $ */
3 /*
4  ******************************************************************
5  *                                                                *
6  *  Copyright (C) 1992 Oracle Corporation UK Ltd.,                *
7  *                   Chertsey, England.                           *
8  *                                                                *
9  *  All rights reserved.                                          *
10  *                                                                *
11  *  This material has been provided pursuant to an agreement      *
12  *  containing restrictions on its use.  The material is also     *
13  *  protected by copyright law.  No part of this material may     *
14  *  be copied or distributed, transmitted or transcribed, in      *
15  *  any form or by any means, electronic, mechanical, magnetic,   *
16  *  manual, or otherwise, or disclosed to third parties without   *
17  *  the express written permission of Oracle Corporation UK Ltd,  *
18  *  Oracle Park, Bittams Lane, Guildford Road, Chertsey, Surrey,  *
19  *  England.                                                      *
20  *                                                                *
21  ****************************************************************** */
22 /*
23  Name        : hr_job_pos  (HEADER)
24 
25  Description : This package declares procedures required for jobs and
26                positions occurring in an organization/business group
27                for applications that have the Org CBB and use Jobs and
28                Positions.
29 
30  Change List
31  -----------
32 
33  Version Date      Author     ER/CR No. Description of Change
34  -------+---------+----------+---------+--------------------------
35  70.0    05-APR-93 TMATHERS             Date Created
36  70.1    05-APR-93 TMATHERS             Added Exit.
37  70.2    22-APR-93 TMATHERS             Added hr_pos_bg_chk.
38 */
39 --
40 -- Procedure to check for the existsence of jbs and positions
41 -- when HR is not installed and the application using Organizations
42 -- also uses Jobs and Positions.
43 --
44 PROCEDURE hr_jp_predelete(p_organization_id INTEGER
45                          ,p_business_group_id INTEGER);
46 --
47 -- Procedure to check the existence of positions
48 -- when attempting to create a business_group.
49 --
50 procedure hr_pos_bg_chk(
51 p_organization_id INTEGER);
52 --
53 end hr_job_pos;