DBA Data[Home] [Help]

PACKAGE: APPS.MRP_VALIDATE_FLOW_SCHEDULE

Source


1 PACKAGE MRP_Validate_Flow_Schedule AUTHID CURRENT_USER AS
2 /* $Header: MRPLSCNS.pls 115.5 2002/11/29 17:47:29 sjagan ship $ */
3 
4 --  Procedure Entity
5 /*
6 Enhancement : 2665434
7 Description : Changed the usage of the record type from old record type
8 (MRP_FLow_Schedule_PUB.Flow_Schedule_Rec_Type) to new record type
9 (MRP_FLow_Schedule_PVT.Flow_Schedule_PVT_Rec_Type)
10 */
11 
12 PROCEDURE Entity
13 (   x_return_status                 OUT NOCOPY VARCHAR2
14 ,   p_flow_schedule_rec             IN  MRP_Flow_Schedule_PVT.Flow_Schedule_PVT_Rec_Type
15 ,   p_old_flow_schedule_rec         IN  MRP_Flow_Schedule_PVT.Flow_Schedule_PVT_Rec_Type
16 );
17 
18 --  Procedure Attributes
19 /*
20 Enhancement : 2665434
21 Description : Changed the usage of the record type from old record type
22 (MRP_FLow_Schedule_PUB.Flow_Schedule_Rec_Type) to new record type
23 (MRP_FLow_Schedule_PVT.Flow_Schedule_PVT_Rec_Type)
24 */
25 
26 PROCEDURE Attributes
27 (   x_return_status                 OUT NOCOPY VARCHAR2
28 ,   p_flow_schedule_rec             IN  MRP_Flow_Schedule_PVT.Flow_Schedule_PVT_Rec_Type
29 ,   p_old_flow_schedule_rec         IN  MRP_Flow_Schedule_PVT.Flow_Schedule_PVT_Rec_Type
30 );
31 
32 --  Procedure Entity_Delete
33 /*
34 Enhancement : 2665434
35 Description : Changed the usage of the record type from old record type
36 (MRP_FLow_Schedule_PUB.Flow_Schedule_Rec_Type) to new record type
37 (MRP_FLow_Schedule_PVT.Flow_Schedule_PVT_Rec_Type)
38 */
39 
40 PROCEDURE Entity_Delete
41 (   x_return_status                 OUT NOCOPY VARCHAR2
42 ,   p_flow_schedule_rec             IN  MRP_Flow_Schedule_PVT.Flow_Schedule_PVT_Rec_Type
43 );
44 
45 END MRP_Validate_Flow_Schedule;