DBA Data[Home] [Help]

PACKAGE: APPS.GME_REOPEN_STEP_PVT

Source


1 PACKAGE gme_reopen_step_pvt AS
2 /*  $Header: GMEVROSS.pls 120.1 2005/06/03 13:48:59 appldev  $    */
3 /*
4 REM *********************************************************************
5 REM *
6 REM * FILE:    GMEVROSS.pls
7 REM * PURPOSE: Package Specification for the GME batch reopen api
8 REM * AUTHOR:  Olivier DABOVAL, OPM Development
9 REM * DATE:    31th May 2001
10 REM * HISTORY:
11 REM * ========
12 REM * 31-May-2001   Olivier DABOVAL
13 REM *          Created
14 REM * 06AUG01  Thomas Daniel                                             *
15 REM *          Made changes for phantom implementation.                  *
16 REM **********************************************************************
17 */
18    PROCEDURE reopen_all_steps (
19       p_batch_header_rec   IN              gme_batch_header%ROWTYPE
20      ,x_return_status      OUT NOCOPY      VARCHAR2);
21 
22    PROCEDURE reopen_step (
23       p_batch_step_rec   IN              gme_batch_steps%ROWTYPE
24      ,x_batch_step_rec   OUT NOCOPY      gme_batch_steps%ROWTYPE
25      ,x_return_status    OUT NOCOPY      VARCHAR2);
26 END gme_reopen_step_pvt;