DBA Data[Home] [Help]

APPS.WF_RENDER dependencies on XMLPARSER

Line 81: l_parser xmlparser.parser;

77: l_retcode pls_integer;
78: l_retmsg varchar2(2000);
79: slash number;
80: next_slash number;
81: l_parser xmlparser.parser;
82: l_amount number;
83: l_data clob;
84: l_temp clob;
85: begin

Line 87: l_parser := xmlParser.NewParser;

83: l_data clob;
84: l_temp clob;
85: begin
86: -- parser instance to parse XML CLOB document
87: l_parser := xmlParser.NewParser;
88:
89: -- parse document id to get the parameters
90: slash := instr(document_id, '/', 1);
91: l_attr := substr(document_id, 1, slash-1);

Line 209: xmlparser.parseClob(l_parser, l_data);

205: when others then
206: -- parse the XML and display the content after replaing < and > with
207: -- appropriate references
208: if (l_data IS NOT NULL) then
209: xmlparser.parseClob(l_parser, l_data);
210: if (display_type = Wf_Notification.doc_html) then
211: DefaultRender(l_data);
212: end if;
213: dbms_lob.append(document, l_data);