DBA Data[Home] [Help]

PACKAGE: APPS.FND_CONC_WEB_UTIL

Source


1 PACKAGE FND_CONC_WEB_UTIL  AUTHID CURRENT_USER AS
2 /* $Header: AFCPINRS.pls 120.4 2005/09/26 06:04:50 susghosh noship $ */
3 
4   -- Name
5   --   GET_REQUEST_STATUS_IMAGE
6   -- Purpose
7   --   This function returns the iconic image name for a request
8   --   based on the phase code and status code of the request.
9   -- Arguments (input)
10   --   request_id - Request id for which the iconic image name has to be returned.
11   -- Return Value
12   --   Image name which represent the phase and status of the request.
13 
14   FUNCTION GET_REQUEST_STATUS_IMAGE(P_REQUEST_ID NUMBER) RETURN VARCHAR2;
15 
16 
17 
18   -- Name
19   --   GET_REQUEST_DETAILS_URL
20   -- Purpose
21   --   This function returns the URL  parameters for the
22   --   view request details page.
23   -- Arguments (input)
24   --   request_id - Request id for which URL  parameters has to be returned.
25   -- Return Value
26   --   URL  parameters required for viewing the request details.
27 
28   FUNCTION GET_REQUEST_DETAILS_URL(P_REQUEST_ID NUMBER) RETURN VARCHAR2;
29 
30 
31   -- Name
32   --   GET_REQUEST_STATUS_IMG_TIP
33   -- Purpose
34   --   This function returns the tool tip for the  request status image
35   --   based on the phase code and status code of the request.
36   -- Arguments (input)
37   --   request_id - Request id for which the iconic image name has to be returned.
38   -- Return Value
39   --   Tool tip text which represent the phase and status of the request.
40 
41   FUNCTION GET_REQUEST_STATUS_IMG_TIP(P_REQUEST_ID NUMBER) RETURN VARCHAR2;
42 
43 END FND_CONC_WEB_UTIL;