DBA Data[Home] [Help]

PACKAGE: APPS.BEN_PLAN_DESIGN_COPY_PROCESS

Source


1 PACKAGE ben_plan_design_copy_process AUTHID CURRENT_USER AS
2 /* $Header: bepdcprc.pkh 120.1 2006/04/05 09:09:31 bmanyam noship $ */
3 --
4 -- Global type declaration
5 --
6 --
7 -- Global varaibles.
8 --
9 --
10 -- ----------------------------------------------------------------------------
11 -- |-------------------------------< process >--------------------------------|
12 -- ----------------------------------------------------------------------------
13 -- {Start Of Comments}
14 --
15 -- Description:
16  -- This is the main batch procedure to be called from the concurrent manager.
17 --
18    PROCEDURE process (
19       errbuf                       OUT NOCOPY      VARCHAR2,
20       retcode                      OUT NOCOPY      NUMBER,
21       p_validate                   IN              NUMBER DEFAULT 0,
22       p_copy_entity_txn_id         IN              NUMBER,
23       p_effective_date             IN              VARCHAR2,
24       p_prefix_suffix_text         IN              VARCHAR2 DEFAULT NULL,
25       p_reuse_object_flag          IN              VARCHAR2 DEFAULT NULL,
26       p_target_business_group_id   IN              VARCHAR2 DEFAULT NULL,
27       p_prefix_suffix_cd           IN              VARCHAR2 DEFAULT NULL,
28       p_effective_date_to_copy     IN              VARCHAR2 DEFAULT NULL
29    );
30 --
31    -- 5097567 : Added the following procedure to compile FF
32    PROCEDURE compile_modified_ff (
33       errbuf                       OUT NOCOPY      VARCHAR2,
34       retcode                      OUT NOCOPY      NUMBER,
35       p_copy_entity_txn_id         IN              NUMBER,
36       p_effective_date             IN              VARCHAR2
37    );
38 --
39 END ben_plan_design_copy_process;