DBA Data[Home] [Help]

APPS.BIS_BUCKET_PUB dependencies on BIS_BUCKET_PVT

Line 5: --This API should call BIS_BUCKET_PVT.CREATE_BIS_BUCKET

1: PACKAGE BODY BIS_BUCKET_PUB AS
2: /* $Header: BISPBKTB.pls 115.4 2004/01/24 08:37:51 jxyu noship $ */
3:
4:
5: --This API should call BIS_BUCKET_PVT.CREATE_BIS_BUCKET
6: PROCEDURE CREATE_BIS_BUCKET (
7: p_bis_bucket_rec IN BIS_BUCKET_PUB.bis_bucket_rec_type
8: ,x_return_status OUT NOCOPY VARCHAR2
9: ,x_error_tbl OUT NOCOPY BIS_UTILITIES_PUB.Error_Tbl_Type

Line 17: BIS_BUCKET_PVT.CREATE_BIS_BUCKET(

13: l_error_tbl BIS_UTILITIES_PUB.Error_Tbl_Type;
14:
15: BEGIN
16:
17: BIS_BUCKET_PVT.CREATE_BIS_BUCKET(
18: p_bis_bucket_rec => p_bis_bucket_rec
19: ,x_return_status => x_return_status
20: ,x_error_tbl => x_error_tbl
21: );

Line 40: --This API should call BIS_BUCKET_PVT.UPDATE_BIS_BUCKET

36: END CREATE_BIS_BUCKET;
37:
38:
39:
40: --This API should call BIS_BUCKET_PVT.UPDATE_BIS_BUCKET
41: PROCEDURE UPDATE_BIS_BUCKET (
42: p_bis_bucket_rec IN BIS_BUCKET_PUB.bis_bucket_rec_type
43: ,x_return_status OUT NOCOPY VARCHAR2
44: ,x_error_tbl OUT NOCOPY BIS_UTILITIES_PUB.Error_Tbl_Type

Line 52: BIS_BUCKET_PVT.UPDATE_BIS_BUCKET(

48: l_error_tbl BIS_UTILITIES_PUB.Error_Tbl_Type;
49:
50: BEGIN
51:
52: BIS_BUCKET_PVT.UPDATE_BIS_BUCKET(
53: p_bis_bucket_rec => p_bis_bucket_rec
54: ,x_return_status => x_return_status
55: ,x_error_tbl => x_error_tbl
56: );

Line 75: --This API should call BIS_BUCKET_PVT.DELETE_BIS_BUCKET

71: END UPDATE_BIS_BUCKET;
72:
73:
74:
75: --This API should call BIS_BUCKET_PVT.DELETE_BIS_BUCKET
76: PROCEDURE DELETE_BIS_BUCKET (
77: p_bucket_id IN BIS_BUCKET.bucket_id%TYPE := BIS_UTILITIES_PUB.G_NULL_NUM
78: ,p_short_name IN BIS_BUCKET.short_name%TYPE := BIS_UTILITIES_PUB.G_NULL_CHAR
79: ,x_return_status OUT NOCOPY VARCHAR2

Line 88: BIS_BUCKET_PVT.DELETE_BIS_BUCKET(

84: l_error_tbl BIS_UTILITIES_PUB.Error_Tbl_Type;
85:
86: BEGIN
87:
88: BIS_BUCKET_PVT.DELETE_BIS_BUCKET(
89: p_bucket_id => p_bucket_id
90: ,p_short_name => p_short_name
91: ,x_return_status => x_return_status
92: ,x_error_tbl => x_error_tbl

Line 112: --This API should call BIS_BUCKET_PVT.RETRIEVE_BIS_BUCKET

108: END DELETE_BIS_BUCKET;
109:
110:
111:
112: --This API should call BIS_BUCKET_PVT.RETRIEVE_BIS_BUCKET
113: PROCEDURE RETRIEVE_BIS_BUCKET (
114: p_short_name IN BIS_BUCKET.short_name%TYPE := BIS_UTILITIES_PUB.G_NULL_CHAR
115: ,x_bis_bucket_rec OUT NOCOPY BIS_BUCKET_PUB.bis_bucket_rec_type
116: ,x_return_status OUT NOCOPY VARCHAR2

Line 125: BIS_BUCKET_PVT.RETRIEVE_BIS_BUCKET(

121: l_error_tbl BIS_UTILITIES_PUB.Error_Tbl_Type;
122:
123: BEGIN
124:
125: BIS_BUCKET_PVT.RETRIEVE_BIS_BUCKET(
126: p_short_name => p_short_name
127: ,x_bis_bucket_rec => x_bis_bucket_rec
128: ,x_return_status => x_return_status
129: ,x_error_tbl => x_error_tbl

Line 174: BIS_BUCKET_PVT.UPDATE_BIS_BUCKET (

170: OPEN c_bkt_set;
171: FETCH c_bkt_set INTO l_bucket_exists;
172: IF (c_bkt_set%FOUND) THEN
173: CLOSE c_bkt_set;
174: BIS_BUCKET_PVT.UPDATE_BIS_BUCKET (
175: p_bis_bucket_rec => l_bis_bucket_rec
176: ,x_return_status => x_return_status
177: ,x_error_tbl => x_error_tbl
178: );

Line 181: BIS_BUCKET_PVT.CREATE_BIS_BUCKET (

177: ,x_error_tbl => x_error_tbl
178: );
179: ELSE
180: CLOSE c_bkt_set;
181: BIS_BUCKET_PVT.CREATE_BIS_BUCKET (
182: p_bis_bucket_rec => l_bis_bucket_rec
183: ,x_return_status => x_return_status
184: ,x_error_tbl => x_error_tbl
185: );

Line 218: BIS_BUCKET_PVT.ADD_LANGUAGE;

214: PROCEDURE ADD_LANGUAGE
215: IS
216: BEGIN
217:
218: BIS_BUCKET_PVT.ADD_LANGUAGE;
219:
220: END ADD_LANGUAGE;
221:
222: END BIS_BUCKET_PUB;