Search found 4 matches

by rtoogee
Tue May 19, 2009 6:07 am
Forum: Reports (Only Oracle Apps Reports)
Topic: Image Not Display In Excel Format
Replies: 0
Views: 2393

Image Not Display In Excel Format

Dear All, I have a report that the output ini Excel Format. This report has file rtf as the layout (template, use xml publisher). When i run this report, and view output,and then i save in my local the images still display. When i send this excel to my supplier, the supplier doesnot see the image (i...
by rtoogee
Thu Feb 12, 2009 8:15 am
Forum: Oracle Forms & Reports
Topic: Report in Excel
Replies: 1
Views: 7892

Report in Excel

I have an inventory report with the Excel as the ouput. One of the column is Part Number. The example of data like this <pre id='pre'><font size=2> In Oracle Table In Excel Part Number Part Number 103-44555 103-44555 1122367 1122367 0541688 541688 </font></pre id='pre'> The problems are: 1. How i ca...
by rtoogee
Wed Jan 21, 2009 11:38 am
Forum: Oracle Forms & Reports
Topic: Visible and Unvisible when Needed
Replies: 4
Views: 1550

If the output of report is text, you can use format trigger to visible or invisible.

If the output is rtf template, you can use conditional formatting
by rtoogee
Tue Jan 20, 2009 10:12 am
Forum: Oracle Forms & Reports
Topic: What is Format Trigger?
Replies: 2
Views: 3296

Or you can use it for visible or non visble frame,field etc with the exceptional condition.. Example: function F_NM_BRG4FormatTrigger return boolean is begin if :ITEM_DESC4 IS NULL THEN RETURN(FALSE); ELSE return (TRUE); END IF; end; The function will hide the field if ITEM_DESC4 is null. And displa...