Displaying multi-page BLOB on Reports

Hi to all,
I have experience with Forms but unfortunatelly not much with Reports.
I've been succesful at querying and displaying the content of a BLOB column that stores .TIFF images.
I've made the same steps described on the post: Display images from a BLOB
"Field.Source: my blob's column name
Column.File format: image "
I've set the vertical and horizontal elasticity properties of the field and the container repeating frame to Expand.
However, the report only displays the first .tiff image, although the same BLOB column contains multiple images
Do I need to change more properties in the repating frame or in reports in general to achieve this?
Or do I have to iterate this images either programatically?
Either way, how can I do this?
Any help would be appreciated.
Best regards,
Jorge

What it sounds like you are trying to do is have a detail
page listing detail records about documents followed by pages of
those document images.
Try designing two reports, one for the detail pages. Then
design a report to display the just the images. You should
pre-determine if the images exist.
Then combine the two reports onto a new report. This parent
report should reference common value(s) that are the same for all
details.
So first design a query that provides all your information,
including image file names with path and an indicator if the file
exists and all the detail for the detail report and perhaps an
identifier to connect the line item to the image.

Similar Messages

  • Displaying multi page tiff images

    Hi there
    I need to display a multipage tiff image, such that I can scroll through the different pages n the tiff file. I am new to ni vision and hence your inputs would be very helpful.

    Take a look at this thread.  You'll need to download the libtiff DLL here. 
    I managed to get it working in about 5 minutes, and could load a
    multi-page tiff into an array, and then split it into multiple Images.  The code is not the nicest, but it'll do the basics.  Alternatively you could try getting the .NET version of libtiff and calling it directly.
    Cheers ~ Greg
    Message Edited by GregS on 10-08-2009 03:36 PM

  • Display image file - BLOB on Report

    Hello there,
    Has anyone knew how to display an image file (BLOB) on Report using Application Express?
    You prompt reply would be appreciated.

    Once htmldb.oracle.com is available again, you may have a look in my demo application:
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    In the tab section II, you will find an image display example and the corresponding
    procedure.
    Denes Kubicek

  • Displaying Web Page on a Report

    I need to place a web page on my report to print out base on a field that is currenly on the report. It may sound easy to some but not me.

    I don't think you can do that.
    The web site is a dynamic page.
    If it were a "snapshot" of the web site, then you could put it
    in a picture box.
    Someone will have to click the link in order to trigger it.
    It might be possible to trigger this event if
    you were wrapping the .rpt file in code (C#, VB, JAVA, etc)
    On the printing, you might be able to set up having a .pdf
    sent from the report server.
    Hope this helps,
    The Panda

  • Getting Error While Displaying web page in Oracle Report 11g

    Hi,
    I am new to Oracle reports 11g. I have stuck into an error. While I'm trying to display the web page it says "No such Web command ()".
    I am using following URL to call the report.
    http://hostname:port/reports/rwservlet/?server=repserver&report=a.jsp&destype=cache&desformat=htmlcss&userid=scott/tiger@db
    Please help me out from this.

    Hi Rupesh,
    Thanks a lot removing web solved my problem.
    My second problem is
    1) SAP xMII >Navigation services>Navigation do following
    a) From the account name pull down menu select everyone
    b)In the navigation tree tab page,choose Navigation Item >Add>Child
    c)In the loading content dialog box,enter a name , for example,"Test"
    d)choose."..."
    e)In the File Browse dialog box,open the CM folder and navigate to teh QM folder
    Select ZPPWeb.htm and choose Ok
    After this I get error message as
    "Can't move focus to the control because it is invisible , not enabled or of a type that does not accept the focus".
    It does not add my htm file to the navigation link
    Thanks in advance
    Regards Namita

  • Display picture in blob on report with GET_BLOB_FILE_SRC

    Hi Guys !
    I want to display picture contains in blob on my report. The function GET_BLOB_FILE_SRC can do that but I must have an File browse item to use them.
    The only other way I know is to create my own function that return my image. Like that :
    create or replace
    PROCEDURE "GET_FILE" (p in number) as
    v_mime varchar2(255);
    v_length number;
    v_file_name varchar2(2000);
    Lob_loc BLOB;
    BEGIN
    select mime_type, blob_content, name,dbms_lob.getlength(blob_content)
    into v_mime,lob_loc,v_file_name,v_length
    from file
    where id = p;
    -- set up HTTP header
    -- use an NVL around the mime type and
    -- if it is a null set it to application/octect
    -- application/octect may launch a download window from windows
    owa_util.mime_header( nvl(v_mime,'application/octet'), FALSE );
    -- set the size so the browser knows how much to download
    htp.p('Content-length: ' || v_length);
    -- the filename will be used by the browser if the users does a save as
    htp.p('Expires: ' || to_char(sysdate + 1/24,'FMDy, DD Month YYYY HH24:MI:SS') || ' GMT');
    htp.p('Content-Disposition: attachment; filename="' ||
    substr(v_file_name,instr(v_file_name,'/')+1)|| '"');
    -- close the headers
    owa_util.http_header_close;
    -- download the BLOB
    wpg_docload.download_file( Lob_loc );
    end adu;
    The only benefit to use GET_BLOB_FILE_SRC is for specify format of my image ?
    Sylvain Michaud

    See +{message:id=10172227}+

  • Legal paper, Multi Page Access 2010 Report

    I have a report that produces two legal paper sized reports (front and back) however, but because of the 22"x 22" paper length restriction I have to create two separate reports and I'm not sure the data on the second report pertains to the first
    page. How can I create (in the report design) a two paged legal paper sized report and be able to see both pages in the print preview area? Hope this makes sense and thank you.  

    Hi,
    If we choose the page size with legal and based on your date to create 2 separate reports, I recommend you try the workaround:
    Create a sub form for each page and a page break between each sub form.
    More reference:
    http://www.access-programmers.co.uk/forums/showthread.php?t=216381
    http://office.microsoft.com/en-us/access-help/set-print-options-HA010341915.aspx
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Regards,
    George Zhao
    TechNet Community Support

  • How to Design Multi Page Report in SSRS 2008

    Hi All,
    I have managed to create a multi page report. When I am preview mode i can see that the report has 2 pages.
    But when I am in design view I cannot view the second page. How can I view the second page. Reason being I am trying to create a template where the table for certain data needs to be at the top of the page and some data at the middle and so on.
    Thanks in advance.
    Aash.
    Aash

    Hi Aash2,
    According to your description, the behavior of cannot view the second page in design view is expected, in another way, there is only one page in design view.
    Report Designer supports two views: Design to define the report data and report layout, and
    Preview to display a rendered view of the report. If you would like to show a table on the first page, and show the other table on the second page, you can add a page break on the first table like followings:
    1. Click the gray handle in the first table, select “Tablix Properties”
    2. Click “Add a page break after” check box under Page break options in General Tab
    After do above, you can see the first table in the first page, and the other table in the second page.
    For more details about report designer, please see the following article,
    Working with Report Designer in Business Intelligence Development Studio:
    http://msdn.microsoft.com/en-us/library/cc281300(v=sql.110).aspx
    If you have any question, please feel free to ask.
    Thanks,
    Eileen

  • Multi page report with large master block

    I am doing a long multi page report with master - detail block.
    Master block is about 60-100 lines long in form format and detail block is 0 to 300 lines in table format.
    I would like to repeat a few columns from master block on all subsequent pages.
    The current solution I have done uses a logical page of 4x1, but in this way i can not repeat selected columns on subsequent pages.
    Is there another way to handle large master block that extends more than one page.
    PB

    You can try this. Create another frame within your master repeating frame and put items there which you want to display on next pages. And set the property of this frame as All Pages.

  • XML Publisher report output in RTF format does not display full page

    Hi,
    We have one XML Publisher report, the output of report in RTF format is not getting displayed in Full Page in normal way (MS Word -->View menu --> Print layout) but we can see full page display when we do MS Word -->View menu --> Outline.
    Appreciate your valuable inputs on this.
    Is this a template issue or any profiles needs to be set.
    Thanks
    Vijay

    Do you have any header and footer on your template?
    If you have any header and footer then try to adjust it as of to display full page.
    Thanks
    Yasar

  • Values not getting displayed from first page of the report.

    Values in the report is getting displayed from second page.
    First page in the report only displaying the report title and column names.
    Secone page onwards, data and column names are generated.
    Can any one please help me, with the cause of the problem.

    what reporting tool?
    Interactive Reporting
    Financial Reporting

  • Display page in Interactive Report

    Hello everyone,
    I was trying to figure out how to display a new page in the main page when a link is clicked (link is in the main page)
    To explain it better:
    I have page 900 which is an interactive report
    when we click on the first link of of the report it opens a new page say page 2
    How can I make page 2 display in page 900 when the link is clicked, rather than completely changing from page 900 to page 2
    Hope I could make this understandable, please let me know if u have question
    also, this was a part of a question answered in a previous thread: Itnteractive Report: Links
    Itnteractive Report: Links
    Thanks you for your help
    appreciate it
    Sam

    Hi,
    I just think if you use iFrame.
    I did create sample to your app. Page 910.
    It not look nice, but you can modify it , and maybe get better solution
    Br,Jari

  • SSRS & Report Viewer control - Show the print button and fire print for multi page report in Mozilla & Chrome

    I have reports in SSRS. I am using remote reports. Reports have multiple pages.
    In IE, the print button displays, but in Firefox and Chrome, it does not display.
    Below links shows how to display the print button for mozilla and chrome. These solutions only fire the print for the
    current page in the report viewer-
    http://stackoverflow.com/questions/951009/sql-reporting-services-print-button-not-shown-in-mozilla
    http://stackoverflow.com/questions/4208457/ssrs-print-button-in-chrome-and-firefox
    I need to be able to issue a print command for all
    pages in one go from the reportviewer.

    Hello,
    The common workaround about print button on ReportViewer control for non-IE browsers is add ActiveX print control or create Print function. It has pros and cons.
    I am not good at programming. But you can try to disable page breaks by setting InteractiveHeight to 0 so that the report will rendering in single page with Report Viewer control.
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • I need a section to display at the bottom of the first page of my report

    My report displays a number of records, but at the bottom of the first page of the report, I need a section (a remittance slip) that would only appear at the bottom of the first page.
    I've tried using a page footer with conditional suppression.  This is fine for the first page, but in subsequent pages, the footer space is reserved, so the records in my details section only go 2/3's of the page.  "Reserve minimum page footer" seems pretty useless.
    I've looked into using a details section that uses "Print at bottom of page".  But since my report contains groupings, this messes up my report structure and leaves a lot of extra space as well.
    I can't guarantee that a group footer section will always be on the first page, since it is found at the end of each group.
    Any suggestions?  Anything I'm missing?
    Thank you.

    hello plynch,
    i would use the method that Abhilash suggested.
    " I guess if we have a section (other than the Page Footer, perhaps another Details section) that is always suppressed except when the record count reaches x numbers and have it printed at the bottom, this could be achieved"
    if you
    1) create a new formula for every section that counts the height of the section...
    whileprintingrecords;
    numbervar lines:= lines + .2 
    //use the above for a details section that is .2 inches in height
    whileprintingrecords;
    numbervar lines:= lines + 2.2
    //use the above for a group header section that is 2.2 inches in height
    2) do the above for every section (yes it's painful but it works) and you'll see how the sections add to the running total
    3) create a new details section that is conditionally suppressed if the page is not equal to 1 and if the running total count is not within a certain height range
    4) make this new details section the height that you want the remittance slip and also have a New Page After forced for the section conditional on it being page 1
    the above takes a bit of finicky work but if it's worth getting rid of the blank space...
    cheers,
    jamie

  • Number of rows displayed per page in an interactive report

    Hi,
    I'd like to know if it's possible to change the values of the select list called 'Rows' in an interactive report (which is displayed in the search bar).
    Indeed, I want to display 16 rows per page and I can only choose among the values 1, 5, 10, 15, 20, 25, 30, 50, 100, 200...
    Thank you for your reply.
    Emilie.

    Hi Tobias,
    Thank you for your help.
    I had already tried this but it's not what I want. What your are saying only limits the values in the select list (for example, if I set to 16, I can't choose values higher than 16 in the select list 'Rows' of the search bar).
    I want to limit the number of rows displayed in the interactive report to 16 per page.
    Any other idea?
    Emilie.
    Hi Emilie,
    Go: Home>Application Builder>Application 301>Page 51>Interactive Report Attributes>Search Bar>Maximum Rows Per Page
    Set to = 16
    Oracle help description: Defines the maximum number to display in Rows Per Page Selector in the search bar.
    Greetings,
    Tobias

Maybe you are looking for

  • Can I scale an oam file in Muse?

    It would seem not, as I can't do it.   If anyone knows, please reply. The pixel preview of an oam does not even match in Muse.  This makes it hard to place the animation with any accuracy.

  • Crytal Report is not able to connect to BW

    Dear Colleagues, CR 2011 doesn't work, i.e. CR terminates, if we try to create a report from a query. We use - SAP Crystal Reports 2011 Version 14.0.0.760 RTM - Windows 7 Version 6.1 (Build 7600) - SAP BW 7.3 SAPKW73004 - SAPGUI 7.20 Version 7200.2.4

  • Best Way to Close ATT Internet Account

    I have been on hold for 90 minutes + and keep getting transfered and my call dropped and have to call back in and go through the process over and over.  any tips on how to cancel the service some other way? I thought they were fine, but now, i know w

  • Jive Forum Thread Settings

    Hello All, Currently in our portal environment, we implemented the Jive forums. And the settings for the each thread in a forum as follows below. 1) Number of correct answers the owner can make is = > 1 2) Number of of helpful answers for each thread

  • Can't delete itunes to update because of missing msi file

    Had virus issues with my computer.  Now finally got the add or remove list to re-populate and tried to update iTunes.  Kept saying error, can't find missing msi file. Read to manually delete all apple/itunes files including quicktime, etc.  Itunes wo