DBA Data[Home] [Help]

APPS.CS_KB_KWIC_UTIL dependencies on CTX_DOC

Line 63: CTX_DOC.POLICY_MARKUP (

59: ) RETURN VARCHAR2
60: IS
61: l_result_segment CLOB;
62: BEGIN
63: CTX_DOC.POLICY_MARKUP (
64: policy_name => 'CS_KB_KWIC_POLICY',
65: document => p_document,
66: text_query => p_text_query,
67: starttag => p_starttag,

Line 129: l_restab CTX_DOC.highlight_tab; -- Keyword match info returned by CTX_DOC

125: p_endtag IN VARCHAR2,
126: p_document IN CLOB
127: ) RETURN VARCHAR2
128: IS
129: l_restab CTX_DOC.highlight_tab; -- Keyword match info returned by CTX_DOC
130:
131: TYPE number_table IS TABLE OF INTEGER INDEX BY PLS_INTEGER;
132: -- word occupies the range [open, close)
133: l_open_positions number_table; -- open positions of matching words

Line 183: CTX_DOC.POLICY_HIGHLIGHT (

179:
180: BEGIN
181:
182: -- positions of matching words returned in l_restab
183: CTX_DOC.POLICY_HIGHLIGHT (
184: policy_name => 'CS_KB_KWIC_POLICY',
185: document => p_document,
186: text_query => p_text_query,
187: restab => l_restab );