DBA Data[Home] [Help]

PACKAGE: APPS.CTO_OM_WF_API

Source


1 package CTO_OM_WF_API AUTHID CURRENT_USER as
2 /* $Header: CTOOMWFS.pls 115.1 2003/10/31 18:47:01 ssawant noship $ */
3 
4 
5 /**************************************************************************
6 
7    Procedure:   Reservation_Exists
8    Parameters:  p_application_id              (standard signature format)
9                 p_entity_short_name
10                 p_validation_entity_short_name
11                 p_validation_tmplt_short_name
12                 p_record_set_short_name
13                 p_scope
14                 x_result
15    Description: This API with standard signature format is called from
16                 the security constraints to validate whether a change is
17                 allowed on an order line.
18                 This API is associated with the Reservation_Exists validation Template.
19 
20 *****************************************************************************/
21 
22 
23 PROCEDURE Reservation_Exists(
24         p_application_id        IN      NUMBER,
25         p_entity_short_name     IN      VARCHAR2,
26         p_validation_entity_short_name  IN      VARCHAR2,
27         p_validation_tmplt_short_name   IN      VARCHAR2,
28         p_record_set_short_name IN VARCHAR2,
29         p_scope                 IN VARCHAR2,
30         x_result                OUT NOCOPY NUMBER
31         );
32 
33 
34 
35 
36 end CTO_OM_WF_API ;