DBA Data[Home] [Help]

PACKAGE: APPS.QP_PRICE_REQUEST_CONTEXT

Source


1 PACKAGE QP_Price_Request_Context AUTHID CURRENT_USER as
2 /* $Header: QPXVPRES.pls 120.0 2005/06/02 00:44:21 appldev noship $ */
3 
4 /* function to set request id */
5 PROCEDURE Set_Request_Id ;
6 
7 /* function to get current request id */
8 FUNCTION Get_Request_Id
9 return number;
10 
11 --needed for HTML Qualifiers UI
12 --return transaction_id attribute under namespace 'qp_context'
13 FUNCTION get_transaction_id RETURN NUMBER;
14 
15 -- set transaction_id attribute under namespace 'qp_context'
16 PROCEDURE set_transaction_id(p_transaction_id IN NUMBER);
17 --needed for HTML Qualifiers UI
18 
19 /* function to release Pricing Lock after Calling Application is done
20   with reading from the Interface Tables
21   This API is going to be picked up by Integration Team as the last step of
22   Pricing Engine call */
23 FUNCTION Release_Pricing_Lock
24 return integer;
25 
26 END QP_Price_Request_Context;