DBA Data[Home] [Help]

PACKAGE: APPS.INV_TXNSTUB_PUB

Source


1 PACKAGE INV_TXNSTUB_PUB AS
2 /* $Header: INVTPUBS.pls 120.2 2006/04/28 05:00:49 pannapra ship $ */
3 
4         /*Bug#5194809. The following variable is removed as the dynamic SQL is
5 	  modified to static one in the package body and as a result there is no
6 	  need of this vaialbe*/
7 	--g_ret_status varchar2(56); -- This variable to hold the return status
8                              -- of the InstallBase Stub that is called
9                              -- using dynamic SQL
10 
11   /**
12    *  p_header_id         = TRANSACTION_HEADER_ID
13    *  p_transaction_id    = TRANSACTION_ID
14    *  x_return_status     = FND_API.G_RET_STS_*;
15    *  in case of an error, the error should be put onto the message stake
16    *  using fnd_message.set_name and fnd_msg_pub.add functions or similar
17    *  functions in those packages. The caller would then retrieve the
18    *  messages. If the return status is a normal (predicted) error or
19    *  an unexpected error, then the transaction is aborted.
20    */
21   PROCEDURE postTransaction(p_header_id IN NUMBER,
22                             p_transaction_id   IN NUMBER,
23                             x_return_status OUT nocopy VARCHAR2);
24 
25 END INV_TXNSTUB_PUB;