DBA Data[Home] [Help]

PACKAGE: APPS.WSH_OTM_HTTP_UTL

Source


1 PACKAGE WSH_OTM_HTTP_UTL AS
2 /* $Header: WSHGLHUS.pls 120.0.12000000.1 2007/01/25 16:15:06 amohamme noship $ */
3 
4 -- ----------------------------------------------------------------------------------------- --
5 
6 
7 -- Get the Request and return the Response.
8 -- Make call to Rating servlet and fulfill the RIQ request.
9 PROCEDURE post_request_to_otm(  p_request       IN XMLType,
10                                 x_response      OUT NOCOPY CLOB,
11                                 x_return_status OUT NOCOPY VARCHAR2
12                               );
13 
14 -- Get the security token from FND Http packages.
15 -- Takes in opcode, argument and timespan for new ticket.
16 -- returns fnd ticket.
17 PROCEDURE get_secure_ticket_details( p_op_code       IN VARCHAR2,
18                                      p_argument      IN VARCHAR2,
19                                      x_ticket        OUT NOCOPY RAW,
20                                      x_server_time_zone OUT NOCOPY VARCHAR2,
21                                      x_return_status OUT NOCOPY VARCHAR2
22                                    );
23 
24 
25 END WSH_OTM_HTTP_UTL;
26