DBA Data[Home] [Help]

APPS.JTF_DIAG_REPORT_FACTORY dependencies on JTF_DIAG_RAW_TEXT

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

143: RAISE_APPLICATION_ERROR(-20100,'The content provided for the hide show is null');
144: END IF;
145: RETURN hide_show_component;
146: END CREATE_HIDE_SHOW;
147: FUNCTION CREATE_RAW_TEXT(content VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_RAW_TEXT
148: IS
149: raw_text_component JTF_DIAG_RAW_TEXT;
150: exec_id NUMBER;
151: ui_node_id NUMBER;

Line 149: raw_text_component JTF_DIAG_RAW_TEXT;

145: RETURN hide_show_component;
146: END CREATE_HIDE_SHOW;
147: FUNCTION CREATE_RAW_TEXT(content VARCHAR2,report_context JTF_DIAG_REPORT_CONTEXT) RETURN JTF_DIAG_RAW_TEXT
148: IS
149: raw_text_component JTF_DIAG_RAW_TEXT;
150: exec_id NUMBER;
151: ui_node_id NUMBER;
152: raw_text_content VARCHAR2(20000);
153: BEGIN

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

155: IF content IS NOT NULL THEN
156: raw_text_content := content;
157: exec_id := report_context.EXEC_ID;
158: select JTF_DIAGNOSTIC_REPORT_S.nextval into ui_node_id from dual;
159: raw_text_component := JTF_DIAG_RAW_TEXT(exec_id,ui_node_id,raw_text_content,0);
160: ELSE
161: RAISE_APPLICATION_ERROR(-20100,'The content provided for the raw text is null');
162: END IF;
163: RETURN raw_text_component;