EBS報表輸出檔案格式控制

2022-01-31 13:51:30 字數 691 閱讀 2124

具體使用方法:

1、新增使用者引數p_conc_request_id

2、在beforereport trigger中新增srw.user_exit('fnd srwinit');

和afterreport trigger中新增srw.user_exit('fnd srwexit');

3、新增使用者引數p_output_format

4、在beforereport trigger中新增

update fnd_conc_pp_actions x

set x.argument5 = :p_output_format

where x.argument1 = 'cux' --此引數可選

and x.action_type = 6

and x.status_s_flag = 'y'

and x.concurrent_request_id = :p_conc_request_id;

p_output_format目前可以選的引數有html,excel,pdf,rtf

ps1:action_type的值含義(參考:726955.1)

1 = printing.

2 = notification.

4 = plsql procedure (11i only).

6 = output post processor log file.

Scrapy輸出檔案格式問題彙總

q scrapy抓取的內容 包含中文 輸出到json lines檔案時如何確保輸出的是字元本身而不是其unicode編碼?a 預設的jsonlinesitemexporter其ensure ascii屬性為true,使得在ascii字符集中包含的字元才能輸出字元本身,其他的字元 如各種東亞語言 則輸...

Oracle 控制檔案格式ctl檔案格式

options skip 1,errors 10 load data characterset zhs16gbk infile into table table name truncate fields terminated by optionally enclosed by trailing nu...

C 輸出檔案編碼控制

c 讀寫檔案需要包含fstream標頭檔案。讀檔案宣告形如 ifstream fin 路徑 寫檔案宣告形如 ofstream fout 路徑 讀檔案時可以採用getline fin,string s 函式完成讀取一行的目的,可以直接使用while getline fin,s 來迴圈讀取。輸出直接使用...