(原)使用PL/SQL開發XML PUBLISHER報表的步驟

likesky276發表於2008-01-30

使用PL/SQL開發XML PUBLISHER報表的步驟
1.  產生XML格式資料:此步有兩種實現方法:

1)      PL/SQL,按標準XML檔案格式用fnd_file.put_line(fnd_file.output,)逐行輸出所要的資料,例如:fnd_file.put_line(fnd_file.output,'');

2)      直接使用XSUXML-SQL Utility)用SQL語言產生XML資料,下面是一例。

CREATE OR REPLACE PROCEDURE NANCY_TEST1(errbuf  OUT VARCHAR2,

                                        retcode OUT NUMBER) IS

  queryctx dbms_xmlquery.ctxtype;

  result   clob;

  xmlstr   varchar2(32767);

  line     varchar2(2000);

BEGIN

  queryctx := dbms_xmlquery.newContext('select distinct segment1 from gl_code_combinations');

  result   := dbms_xmlquery.getXML(queryctx);

  xmlstr   := dbms_lob.substr(result, 32767);

  loop

    exit when xmlstr is null;

    line := substr(xmlstr, 1, instr(xmlstr, chr(10)) - 1);

    fnd_file.put_line(fnd_file.output,line);

    xmlstr := substr(xmlstr, instr(xmlstr, chr(10)) + 1);

  end loop;

  dbms_xmlquery.closeContext(queryctx);

END;

 

2.  EBS掛接該PL/SQL,掛接方法與掛RDF報表類似,注意將output type改為XML

3.  XML PUBLISHER上註冊報表並上傳模板,方法類似上述RDF報表註冊方法。

4.  設定完畢就可以呼叫Request中執行了。

5.  有關XSU的資料:

http://www.oracle.com/technology/tech/xml/xdk/doc/production/java/doc/java/xsu/dbmsxsu.html

http://www.oracle.com/technology/tech/xml/xdk/doc/production10g/doc/java/xsu/xsu_userguide.html

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8118583/viewspace-166464/,如需轉載,請註明出處,否則將追究法律責任。

相關文章