DBA Data[Home] [Help]

PACKAGE: APPS.CZ_IB_TSO_GRP

Source


1 PACKAGE CZ_IB_TSO_GRP AUTHID CURRENT_USER AS
2 /*	$Header: czibtsos.pls 120.2 2005/06/30 12:54:17 skudryav ship $		*/
3 
4 --
5 -- Removes returned config item by marking it with a special flags returned_flag
6 --
7 
8 /*  Removes returned config item by marking it with a special flags returned_flag
9 * @param p_instance_hdr_id Identifies instance_hdr_id OF returned config item
10 * @param p_instance_rev_nbr Identifies instance_rev_nbr OF returned config item
11 * @param p_returned_config_item Identifies config_item_id OF returned config item
12 * @param p_locked_instance_rev_nbr  Identifies locked revision OF returned config item
13 * IF it IS NULL THEN this means that config item was NOT locked ( no pending orders WITH this item )
14 * @p_application_id - application Id OF caller ( if NULL then by default it's 542(IB))
15 * @p_config_eff_date - configuration effectivity date ( if NULL then by default it's SYSDATE )
16 * @param x_validation_status Returns either fnd_api.g_true IF configuration IS valid
17 * OR fnd_api.g_false IF configuration IS NOT valid
18 * @param x_return_status Returns one OF three VALUES indicating the
19  * most serious error encountered during processing:
20  * FND_API.G_RET_STS_SUCCESS IF no errors occurred
21  * FND_API.G_RET_STS_ERROR IF AT LEAST one error occurred
22  * FND_API.G_RET_STS_UNEXP_ERROR IF AT LEAST one unexpected error occurred
23  * @param x_msg_count Indicates how many messages exist ON ERROR_HANDLER
24  * message stack upon completion OF processing.
25  * @param x_msg_data IF exactly one message EXISTS ON ERROR_HANDLER
26  * message stack upon completion OF processing, this parameter contains
27  * that message.
28  *
29  * @rep:scope PUBLIC
30  * @rep:lifecycle active
31  * @rep:displayname Remove Returned Config Item
32  */
33 PROCEDURE remove_Returned_Config_Item
34 (
35  p_instance_hdr_id           IN  NUMBER,
36  p_instance_rev_nbr          IN  NUMBER,
37  p_returned_config_item_id   IN  NUMBER,
38  p_locked_instance_rev_nbr   IN  NUMBER,
39  p_application_id            IN  NUMBER,
40  p_config_eff_date           IN  DATE,
41  x_validation_status         OUT NOCOPY VARCHAR2,
42  x_return_status             OUT NOCOPY VARCHAR2,
43  x_msg_count                 OUT NOCOPY NUMBER,
44  x_msg_data                  OUT NOCOPY VARCHAR2
45  );
46 
47 END CZ_IB_TSO_GRP;