DBA Data[Home] [Help]

PACKAGE: APPS.BIS_CUSTOMIZATION_PVT

Source


1 PACKAGE BIS_CUSTOMIZATION_PVT AS
2 /* $Header: BISVCTMS.pls 120.1 2006/02/14 13:16:33 hengliu noship $ */
3 -- dbdrv: sql ~PROD ~PATH ~FILE none none none package &phase=pls \
4 -- dbdrv: checkfile(115.1=120.1):~PROD:~PATH:~FILE
5 
6 /*
7 REM +=======================================================================+
8 REM |    Copyright (c) 2002 Oracle Corporation, Redwood Shores, CA, USA     |
9 REM |                         All rights reserved.                          |
10 REM +=======================================================================+
11 REM | FILENAME                                                              |
12 REM |     BISVCTMS.pls                                                      |
13 REM |                                                                       |
14 REM | DESCRIPTION                                                           |
15 REM |     Private API for shipping ak customizations at function level      |
16 REM |                                                                       |
17 REM | NOTES                                                                 |
18 REM |                                                                       |
19 REM | HISTORY                                                               |
20 REM | 27-Apr-2005 kyadamak Creation                                         |
21 REM | 14-Feb-2005 hengliu  Add Delete_Custom_Region_Items                   |
22 REM +=======================================================================+
23 */
24 --
25 --
26 PROCEDURE Create_Custom_Region_Items
27 ( p_api_version              IN  NUMBER
28 , p_commit                   IN  VARCHAR2  := FND_API.G_FALSE
29 , p_Custom_region_items_Rec  IN  BIS_CUSTOMIZATION_PUB.custom_region_items_type
30 , x_return_status            OUT NOCOPY  VARCHAR2
31 , x_msg_count                OUT NOCOPY  NUMBER
32 , x_msg_data                 OUT NOCOPY  VARCHAR2
33 );
34 --
35 --
36 -- updates rows into ak_custom_region_items and tl tables
37 --
38 PROCEDURE Update_Custom_Region_Items
39 ( p_api_version              IN  NUMBER
40 , p_commit                   IN  VARCHAR2  := FND_API.G_FALSE
41 , p_Custom_region_items_Rec  IN  BIS_CUSTOMIZATION_PUB.custom_region_items_type
42 , x_return_status           OUT NOCOPY  VARCHAR2
43 , x_msg_count               OUT NOCOPY  NUMBER
44 , x_msg_data                OUT NOCOPY  VARCHAR2
45 );
46 --
47 -- delete row in ak_custom_region_items and tl tables
48 --
49 PROCEDURE Delete_Custom_Region_Items
50 ( p_api_version              IN   NUMBER
51 , p_commit                   IN   VARCHAR2 := FND_API.G_FALSE
52 , p_Custom_region_items_Rec  IN   BIS_CUSTOMIZATION_PUB.custom_region_items_type
53 , x_return_status           OUT NOCOPY VARCHAR2
54 , x_msg_count               OUT NOCOPY NUMBER
55 , x_msg_data                OUT NOCOPY VARCHAR2
56 );
57 --
58 PROCEDURE Update_Customizations
59 ( p_api_version         IN  NUMBER
60 , p_commit              IN  VARCHAR2   := FND_API.G_FALSE
61 , p_Customizations_Rec  IN  BIS_CUSTOMIZATION_PUB.customizations_type
62 , x_return_status       OUT NOCOPY  VARCHAR2
63 , x_msg_count           OUT NOCOPY  NUMBER
64 , x_msg_data            OUT NOCOPY  VARCHAR2
65 );
66 --
67 --
68 -- creates rows into ak_custom_regions and tl tables
69 --
70 PROCEDURE Create_Customizations
71 ( p_api_version         IN  NUMBER
72 , p_commit              IN  VARCHAR2   := FND_API.G_FALSE
73 , p_Customizations_Rec  IN  BIS_CUSTOMIZATION_PUB.customizations_type
74 , x_return_status       OUT NOCOPY  VARCHAR2
75 , x_msg_count           OUT NOCOPY  NUMBER
76 , x_msg_data            OUT NOCOPY  VARCHAR2
77 );
78 
79 
80 
81 END BIS_CUSTOMIZATION_PVT;