DBA Data[Home] [Help]

APPS.BIS_CUSTOMIZATIONS_PUB SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 56

PROCEDURE Update_Customizations
( p_api_version      IN  NUMBER
, p_commit           IN  VARCHAR2   := 'N'
, p_Customizations_Rec      IN  BIS_CUSTOMIZATIONS_PVT.customizations_type
, x_return_status    OUT NOCOPY VARCHAR2
)

IS
BEGIN

BIS_CUSTOMIZATIONS_PVT.Update_Customizations
( p_api_version=>p_api_version
, p_commit     =>p_commit
, p_Customizations_Rec =>p_Customizations_Rec
, x_return_status => x_return_status
);
Line: 80

END Update_Customizations;
Line: 109

PROCEDURE Update_Custom_Regions
( p_api_version      IN  NUMBER
, p_commit           IN  VARCHAR2   := 'N'
, p_Custom_Regions_Rec      IN  BIS_CUSTOMIZATIONS_PVT.custom_regions_type
, x_return_status    OUT NOCOPY VARCHAR2
)

IS
BEGIN

BIS_CUSTOMIZATIONS_PVT.Update_Custom_Regions
( p_api_version=>p_api_version
, p_commit     =>p_commit
, p_Custom_Regions_Rec =>p_Custom_Regions_Rec
, x_return_status => x_return_status
);
Line: 133

END Update_Custom_Regions;
Line: 163

PROCEDURE Update_Custom_Region_Items
( p_api_version      IN  NUMBER
, p_commit           IN  VARCHAR2   := 'N'
, p_Custom_Region_Items_Rec      IN  BIS_CUSTOMIZATIONS_PVT.custom_Region_Items_type
, x_return_status    OUT NOCOPY VARCHAR2
)

IS
BEGIN

BIS_CUSTOMIZATIONS_PVT.Update_Custom_Region_Items
( p_api_version=>p_api_version
, p_commit     =>p_commit
, p_Custom_Region_Items_Rec =>p_Custom_Region_Items_Rec
, x_return_status => x_return_status
);
Line: 187

END Update_Custom_Region_items;