DBA Data[Home] [Help]

PACKAGE: APPS.FWK_PORTLET_GEN_UTIL

Source


1 PACKAGE FWK_PORTLET_GEN_UTIL AUTHID CURRENT_USER as
2 /* $Header: fwkportgenutls.pls 120.4 2011/12/29 19:39:22 mmuhanna ship $ */
3 
4   -----------------------------------------------------------------------------
5   ---------------------------- PUBLIC METHODS ---------------------------------
6   -----------------------------------------------------------------------------
7 
8   -- Return back the full Page Metadata.
9   --
10   -- Parameters:
11   --  p_document    - the fully qualified document name, which can represent
12   --                  either a document or package file.
13   --                  (i.e.  '/oracle/apps/ak/attributeSets')
14   --
15   FUNCTION getPageMetaData(p_document in VARCHAR2)
16   RETURN CLOB;
17 
18 
19 
20     -----------------------------------------------------------------------------
21     ---------------------------- PUBLIC METHODS ---------------------------------
22     -----------------------------------------------------------------------------
23 
24     -- Return Path Name for specific document ID.
25     --
26     -- Parameters:
27     --  p_docid    - the fully qualified document id
28 
29   FUNCTION getPathName(p_docid in NUMBER)
30   RETURN VARCHAR;
31 
32     -----------------------------------------------------------------------------
33     ---------------------------- PUBLIC METHODS ---------------------------------
34     -----------------------------------------------------------------------------
35 
36     -- This Method is not used anymore. The FWK_PORTLET_GEN_MV
37     -- was dropped in 12.2 for NZDT project.
38     --
39     -- Parameters:
40     --  p_docid    - the fully qualified document id
41 
42 
43   PROCEDURE refresh_mview(errbuf    out nocopy varchar2,
44                           retcode   out nocopy number);
45 
46     -----------------------------------------------------------------------------
47     ---------------------------- PUBLIC METHODS ---------------------------------
48     -----------------------------------------------------------------------------
49     -- Used to refresh the new FWK_PORTLET_GEN Table.
50     --
51     -- Parameters:
52 
53   PROCEDURE refreshPortletTable(errbuf    out nocopy varchar2,
54                                 retcode   out nocopy number);
55 
56 
57 END FWK_PORTLET_GEN_UTIL;