DBA Data[Home] [Help]

APPS.ECX_OUTBOUND dependencies on FND_LOG_ATTACHMENT

Line 1250: fnd_log_attachment.writeln(attachment_id, ctemp);

1246: if(attachment_id <> -1 AND i_xmldoc is not null) then
1247: clength := dbms_lob.getlength(i_xmldoc);
1248: while clength >= offset LOOP
1249: ctemp := dbms_lob.substr(i_xmldoc,g_varmaxlength,offset);
1250: fnd_log_attachment.writeln(attachment_id, ctemp);
1251: offset := offset + g_varmaxlength;
1252: End Loop;
1253: fnd_log_attachment.close(attachment_id);
1254: end if;

Line 1253: fnd_log_attachment.close(attachment_id);

1249: ctemp := dbms_lob.substr(i_xmldoc,g_varmaxlength,offset);
1250: fnd_log_attachment.writeln(attachment_id, ctemp);
1251: offset := offset + g_varmaxlength;
1252: End Loop;
1253: fnd_log_attachment.close(attachment_id);
1254: end if;
1255: ELSE
1256: xmlDOM.writetofile(ecx_utils.g_xmldoc,ecx_utils.g_logdir||'/'||
1257: substr(ecx_utils.g_logfile,1,length(ecx_utils.g_logfile)-4)