BI Publisher 詳細例項 ZHAOCM

2021-06-19 19:51:38 字數 1121 閱讀 7673

1. 建立生成xml的程式

包頭:create or replace package zcm_retport_test

asprocedure pro_main(errbuf  out varchar2,

retcode out number);

end zcm_retport_test;

包體:create or replace package body zcm_retport_test

asprocedure pro_main(errbuf  out varchar2,

retcode out number) is

begin

fnd_file.put_line(fnd_file.output,

'<?xml version="1.0" encoding="utf-8"?>');

fnd_file.put_line(fnd_file.output,

'helloworld!!!');

exception

when others then

retcode := 2;

errbuf  := sqlerrm;

fnd_file.put_line(fnd_file.log,

'sqlerrm= ' || sqlerrm || 'sqlcode= ' || sqlcode);

end pro_main;

end zcm_retport_test;

注意:'<?xml version="1.0" encoding="utf-8"?>')  必須為小寫

2. 將此concurrent掛到ebs

注意:輸出格式為xml

3. 執行程式,檢視請求,在診斷中檢視xml,將內容儲存到本地.xml格式

4. 在word中載入xml檔案,編輯完成rtf檔案

4.1 開啟word,載入xml,插入專案,布置排版後將檔案儲存為.rtf格式

5. 在xml publisher 管理員職責下,建立資料定義

注意:**要與步驟2中的程式簡稱相同

6. 在xml publisher 管理員職責下,建立模板,上傳rtf檔案

注意:資料定義為步驟5建立的資料定義

7. 執行步驟2的請求,檢視輸出報表。

QT pro檔案詳細寫法 例項

lib 生成庫的makefile subdirs 生成有多級目錄管理的makefile target 生成最後目標的名字 destdir 指定生成目標的路徑 dependpath 工程的依賴路徑 includepath 這個用來指定工程要用到的標頭檔案路徑 sources 工程需要的原始檔 head...

BFS例項超詳細講解

例項參考挑戰程式設計bfs的迷宮最短路徑 include define maxn 100 using namespace std const int inf 100000000 typedef pairp 定義乙個pair型別的資料結構 char maze maxn maxn 1 定義乙個儲存輸入資...

自定義事件詳細例項

using system using system.collections.generic using system.text 定義事件資料類,從eventargs基類繼承 public class eateventargs eventargs 定義委託型別 public delegate void...