DBA Data[Home] [Help]

PACKAGE: APPS.CS_ALW_STS_TRANSITIONS_PVT

Source


1 PACKAGE CS_ALW_STS_TRANSITIONS_PVT AUTHID CURRENT_USER AS
2 /* $Header: csvalsts.pls 115.3 2004/01/21 17:23:39 spusegao noship $ */
3 
4 Procedure Copy_Status_Group(p_statusGroupId  IN VARCHAR2,
5                             x_statusGroupId OUT NOCOPY VARCHAR2,
6                             x_errorCode     OUT NOCOPY NUMBER,
7                             x_errorMessage  OUT NOCOPY VARCHAR2);
8 
9 
10 Procedure AllowedStatus_StartDate_Valid(p_statusGroupId        IN number,
11                                            p_allowed_status_id IN number,
12                                            p_new_start_date    IN date,
13                                            x_errorCode         OUT NOCOPY number,
14                                            x_errorMessage      OUT NOCOPY varchar2,
15                                            x_return_code       OUT NOCOPY varchar2);
16 
17 
18 Procedure AllowedStatus_EndDate_Valid(p_statusGroupId          IN number,
19                                            p_allowed_status_id IN number,
20                                            p_new_end_date      IN date,
21                                            p_incident_status_id IN NUMBER,
22                                            x_errorCode         OUT NOCOPY number,
23                                            x_errorMessage      OUT NOCOPY varchar2,
24                                            x_return_code       OUT NOCOPY varchar2);
25 
26 
27 Procedure StatusTrans_StartDate_Valid(p_statusGroupId          IN number,
28                                       p_from_allowed_status_id IN number,
29                                       p_to_allowed_status_id   IN number,
30                                       p_new_start_date         IN date,
31                                       x_errorCode             OUT NOCOPY number,
32                                       x_errorMessage          OUT NOCOPY varchar2,
33                                       x_return_code           OUT NOCOPY varchar2);
34 
35 Procedure StatusTrans_EndDate_Valid(p_statusGroupId          IN number,
36                                     p_from_allowed_status_id IN number,
37                                     p_to_allowed_status_id   IN number,
38                                     p_new_end_date           IN date,
39                                     x_errorCode             OUT NOCOPY number,
40                                     x_errorMessage          OUT NOCOPY varchar2,
41                                     x_return_code           OUT NOCOPY varchar2);
42 
43 Procedure Set_Transition_Ind(p_statusGroupId IN number);
44 
45 END CS_ALW_STS_TRANSITIONS_PVT;