DBA Data[Home] [Help]

APPS.JTF_DIAG_REPORT_FACTORY dependencies on JTF_DIAG_RAW_TEXT

Line 167: FUNCTION CREATE_RAW_TEXT(content VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_RAW_TEXT

163: RAISE_APPLICATION_ERROR(-20100,'The content provided for the hide show is null');
164: END IF;
165: RETURN hide_show_component;
166: END CREATE_HIDE_SHOW;
167: FUNCTION CREATE_RAW_TEXT(content VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_RAW_TEXT
168: IS
169: raw_text_component JTF_DIAG_RAW_TEXT;
170: exec_id NUMBER;
171: ui_node_id NUMBER;

Line 169: raw_text_component JTF_DIAG_RAW_TEXT;

165: RETURN hide_show_component;
166: END CREATE_HIDE_SHOW;
167: FUNCTION CREATE_RAW_TEXT(content VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_RAW_TEXT
168: IS
169: raw_text_component JTF_DIAG_RAW_TEXT;
170: exec_id NUMBER;
171: ui_node_id NUMBER;
172: raw_text_content VARCHAR2(20000);
173: BEGIN

Line 179: raw_text_component := JTF_DIAG_RAW_TEXT(exec_id,ui_node_id,raw_text_content,0);

175: IF content IS NOT NULL THEN
176: raw_text_content := content;
177: exec_id := report_context.EXEC_ID;
178: select JTF_DIAGNOSTIC_REPORT_S.nextval into ui_node_id from dual;
179: raw_text_component := JTF_DIAG_RAW_TEXT(exec_id,ui_node_id,raw_text_content,0);
180: ELSE
181: RAISE_APPLICATION_ERROR(-20100,'The content provided for the raw text is null');
182: END IF;
183: RETURN raw_text_component;