DBA Data[Home] [Help]

APPS.CS_KB_KWIC_UTIL dependencies on CTX_DOC

Line 61: CTX_DOC.POLICY_MARKUP (

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

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

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

Line 174: CTX_DOC.POLICY_HIGHLIGHT (

170: l_kwic_segment VARCHAR2(32000); -- the final kwic segment
171: BEGIN
172:
173: -- positions of matching words returned in l_restab
174: CTX_DOC.POLICY_HIGHLIGHT (
175: policy_name => 'CS_KB_KWIC_POLICY',
176: document => p_document,
177: text_query => p_text_query,
178: restab => l_restab );