标签:style blog http color io os 使用 ar strong
1 function BeforeReport return boolean is 2 begin 3 4 SRW.USER_EXIT(‘FND SRWINIT‘); 5 //srw.message(100,‘Concurrent request Id : ‘|| :P_CONC_REQUEST_ID); 6 //srw.message(100,‘Concurrent PROGRAM Id : ‘|| fnd_global.CONC_PROGRAM_ID); 7 //srw.message(100,‘Concurrent PROGRAM APP Id : ‘|| fnd_global.PROG_APPL_ID); 8 :P_CONC_PROGRAM_ID := fnd_global.CONC_PROGRAM_ID; 9 :P_PROG_APPL_ID := fnd_global.PROG_APPL_ID; 10 11 return (TRUE); 12 end;
function AfterReport return boolean is begin SRW.USER_EXIT(‘FND SRWEXIT‘); return (TRUE); end;
4. 修改公式列函数
function CF_CONC_PROGRAM_IDFormula return Number is begin RETURN P_CONC_PROGRAM_ID; end;
Oracle Report(Report 6i/RDF)使用全局变量fnd_global, fnd_frofile
标签:style blog http color io os 使用 ar strong
原文地址:http://www.cnblogs.com/lzsu1989/p/3972058.html