DBA Data[Home] [Help]

PACKAGE: APPS.OZF_SD_BATCH_PUB

Source


1 PACKAGE OZF_SD_BATCH_PUB AUTHID CURRENT_USER as
2 /* $Header: ozfpsdbs.pls 120.0.12010000.8 2009/05/20 09:41:36 annsrini noship $ */
3 /*#
4 * This package can be used to Update Supplier Ship and Debit Batch Header and Line Status for a NEW/WIP batch.
5 * @rep:scope public
6 * @rep:product OZF
7 * @rep:displayname OZF_SD_BATCH_PUB Public API
8 * @rep:compatibility S
9 * @rep:businessevent None
10 * @rep:category BUSINESS_ENTITY OZF_SSD_BATCH
11 */
12 
13 -- API Name	: MARK_BATCH_SUBMITTED
14 -- Type		: Public
15 -- PURPOSE	: This procedure Updates Supplier Ship and Debit Batch Header and Line status for a NEW/WIP batch
16 --              : and also marks the disputes as resolved for those lines in the WIP batch whose status is SUBMITTED
17 -- PARAMETERS   :
18 --         IN   : p_api_version_number
19 --              : p_init_msg_list
20 --              : p_batch_id
21 --        OUT   : x_return_status
22 --              : x_msg_count
23 --              : x_msg_data
24 -- NOTES        :
25 /*#
26 * This procedure updates Supplier Ship and Debit Batch Header and Line status for a NEW/WIP batch and also marks the disputes as resolved for those lines in the WIP batch whose status is SUBMITTED.
27 * @param p_api_version_number indicates the Version of the API.
28 * @param p_init_msg_list indicates whether to initialize the message stack.
29 * @param p_batch_id Batch Id for which Status is to be updated.
30 * @param x_return_status indicates the status of the program.
31 * @param x_msg_count provides the number of the messages returned by the program.
32 * @param x_msg_data returns messages by the program.
33 * @rep:scope public
34 * @rep:displayname Mark Batch Submitted
35 * @rep:compatibility S
36 * @rep:businessevent None
37 * @rep:category BUSINESS_ENTITY OZF_SSD_BATCH
38 */
39 
40   PROCEDURE Mark_Batch_Submitted (p_api_version_number      IN NUMBER,
41 			          p_init_msg_list           IN VARCHAR2 := FND_API.G_FALSE,
42 			          p_batch_id		    IN NUMBER,
43                                   x_return_status	    OUT nocopy VARCHAR2,
44                  	          x_msg_count 	            OUT nocopy NUMBER,
45 			          x_msg_data		    OUT nocopy VARCHAR2
46 			         );
47 
48   END OZF_SD_BATCH_PUB;
49