How to Print GIF image in XML RTF Report

Hi All,
I have one requirement like to print the GIF image in Oracle Report.
The report is an XML Report.
The image file stored in database, the table is fnd_attached_docs_form_vl.
select distinct file_name from fnd_attached_docs_form_vl
Front end Navigation ----->
view -----> Attachments
Now i need to get the image from there and print it report.
Can you pls help me.
Regards
Venu

Hi,
I didn't tried that scenario as my report is not a Non-XML Report.
And my report is XML Report.
Regards
Venu

Similar Messages

  • How can print blank rows for XML output report..

    Hi all,
    I am working in XML output PO fix format report and in that report there is 3 sections. (1) Header section(2)Line section (3) Footer section. My requirement is like this, header and footer section print in all pages and line section break for next page after printing fix 15 lines in a page. And if any page has less then 15 lines then it generate remaining blank row to maintain footer position.
    Please suggest me, how can i generate blank rows and break lines for page if there is more then 15 rows in Line section.
    Thanks in Advance!

    Hi,
    <?for-each:ROW?>
    <?end for-each?><xsl:variable name="cnt" select="count(//row|//ROW)" />
    <?for-each:xdoxslt:foreach_number($_XDOCTX,1,15-count(ROW),1)?> <?end if?>
    this will create 15 lines irrespective of you have that much rows of data in xml or not
    if you want more help , drop me mail @ [email protected]

  • How to print system-time in XML?

    Hi,
       Please help me how to print system-time in XML. Like we use sy-uzeit in ABAP.
    Can we use anything in XML too..
    Thanks & Regards,
    Sai

    hi movilogo
    Please try this.
    Create hidden item P1_DATE
    Create On load process in page 1 and put this code
    begin
    :P1_DATE:=TO_CHAR(SYSDATE,'DD-MON-YYYY HH:MM:SS');
    end;
    Open your region in Page 1 put this code in Footer area
    *&P1_DATE.*
    Refresh your page.
    you will get the output like this.
    16-SEP-2009 11:09:17
    thanks
    Mark Wyatt

  • How to print the image data stored in object of 'java.io.File' Class in jsp

    I have created a file object for the image file in the system temporary directory.Now I want to display it in my page. please tell,How to print the image data stored in object(in my program it is imgr) of 'java.io.File' Class in jsp

    Create a servlet which gets an InputStream of the file and writes it to the OutputStream of the response and call this servlet in `src` attribute. That's basically all.
    Here's an example which covers the most of the minimum needs: [http://balusc.blogspot.com/2007/04/imageservlet.html].

  • Add a GIF image file to excel reports

    Hi all
    I have a concurrent program which gives me a report in excel( I Have PL/SQL code for generating excel output which works fine)
    I want to add a gif image to the excel report output
    can anyone tell me how to add a gif file to the excel report
    Thanks

    Hi;
    Please check:
    In Report Manager, How Can We Place The Line Description In The Center Of A Page for a published FSG report? [ID 553406.1]
    http://blogs.oracle.com/xmlpublisher/2008/05/excel_limitations.html
    Hope it helps
    Regard
    Helios

  • How to print page no/total pges in report programing?

    how to print page no/total pges in report programing?

    Hi
    This is an example:
    In TOP-OF-PAGE you can write:
    WRITE: SY-PAGNO, '/', '-----'.
    When the program has finished to print all data, run a routine like this:
    Declare a variable
    DATA: L_PAGE_COUNT(5) TYPE C,
          V_LINE TYPE I. "The line where page number is written
    * In my example I suppose the page number is always
    * written in the first row of the page.
    V_LINE = 1.
    *  Copy this code to the end of program
    *  Page count will be printed on each page here
      WRITE sy-pagno TO l_page_count LEFT-JUSTIFIED.
      DO sy-pagno TIMES.
        READ LINE V_LINE OF PAGE sy-index.
        REPLACE '-----' WITH l_page_count INTO sy-lisel.
        MODIFY CURRENT LINE.
        ADD 1 TO sy-index.
      ENDDO.
    Max

  • How to Print Footer details conditionally in RTF template ( XML Bi report)

    Hi,
    I have a XML ( BI) report. in which i am printing carry frwd / running total/ sub group total values in the footer section.
    I have add one more condition to display the footer values based on the <xdofo:show-carry-forward ...> values.
    Please suggest and help me on this, how to handle this case.
    Regards,
    KAP.

    Hi,
    Thanks for the reply...
    Actually i am looking for the following scenarios :
    1. i want to Hide/ Don't show last 3-pages Footer information in the report.
    2. While i am displaying the Carry forward information in the report
    a. if the page/ running total is 0, i don't want to display the footer information.
    b. only case if the page/ running total is > 0, i want enable footer information dynamically for each page.
    i have done as follows :
    in the Template main body :
    *<?template:footer?>*
    **1000* *1000**
    *<?end template?>*
    and for behind 1000 currently :
    <xdofo:inline-total display-condition="exceptlast" name="RUNAMT"><xdofo:show-carry-forward name="RUNAMT" format="99G999G999D00"/></xdofo:inline-total>
    it was printing the " RUNAMT " calculated page total sucessfully. but here if the Total = 0 then i don't want to show the value in FOOTER...
    Thanks in Advance.
    Please let me know, if more information required to help..
    KAP..

  • Smartforms - How to print an image in backgroud ?

    Hello,
    I have to print some orders in development and quality system, so to avoid that some people can think that
    is a production order, I have to print also a big image in background (DEV for Development, QAS for Quality).
    Do you have some idea ? How to print a big image on background ?
    Tks,
    bye.

    Hi Roberto,
    To determine the logo dynamically, you need to click the traingular or arrow button which stays right beside 'NAME' where you select the backgroung picture.
    Once you select the arrow button, the F4 help will be removed and you can enter variable into that field.
    Regards,
    Swarna Munukoti

  • How JPG or GIF Image open in MIDP?

    How my j2me application can support jpg or gif image format. I have tested png file in midp 1.0 and its not support other than png format( im not sure about midp 2.0 does it support or not). I have seen lot of mobiles those support gif and jpg file formats. Does j2me applications on those mobile can support other image formats?
    Plus it is possible that i can develop my own decoder for jpg or gif format. I know it possible, but im talking related to its processing power consumption. Or is there any third party api exist to support jpg or gif file format on midp. Please r

    Here is the code snap that read image from a URL.. I have tested this code on localhost & two different pc on lan in emulator.. but not in actuall mobile... but i hope it will work...
    Image image = null ;
    DataInputStream httpInput = null ;
    DataOutputStream httpOutput = null ;
    HttpConnection httpCon = null ;
    String url = "http://localhost:8080/images/picture.png"
    try
    httpCon = (HttpConnection)Connector.open(url);
    int bufferSize = 512 ;
         byte byteInput[] = new byte[bufferSize] ;
         ByteArrayOutputStream imageBuffer = new ByteArrayOutputStream(1024*50);
         httpInput = new DataInputStream( httpCon.openInputStream() );
                   System.out.println("Http-Input Connecting Establish Successfully");
                   httpOutput = new DataOutputStream( httpCon.openOutputStream() );
                   System.out.println("Http-Output Establish Successfully");
    int size = 0 ;
    // read all image data ....
         while ( ( size = httpInput.read( byteInput , 0 , bufferSize ) ) != -1 )
                        imageBuffer.write( byteInput , 0 , size ) ;
    // get byte from buffer stream
              byte byteImage[] = imageBuffer.toByteArray();
                   System.out.println("read byte " + byteImage.length );
         // convert byte to image ...
         image = Image.createImage( byteImage , 0 , byteImage.length );
         return image ;
         //return null ;
    catch( IOException e )
                   System.out.println("\nUnable to Perform Image IO Operation with Host");
         return null ;
    ....................................

  • Printing .GIF images with PHP

    Hello,
    As part of a PHP IF statement, I would like to print an image
    instead of text. How do I do this?
    Thanks in advance,
    John

    I've done some dabbling in PHP's GD library (the image
    manipulation extension of PHP).
    What I have done in the past is create a separate php file
    just for the image output. I then pass in the parameters needed to
    create the image in the image request. So as an example, I'd send
    the image request like so:
    http://domain.com/preview_image.php?text_string=Type%20Text%20Here&text_color=black&bg_col or=white&font=ADORABLE
    preview_image.php is the php file that contains the script to
    generate the image based off of the text_string, text_color, and
    bg_color variables contained in the query parameters.
    Or if you don't need a dynamic image, just echo the image tag
    inside the if statement:
    echo "<img src='pathtoimage.jpg'>;

  • How to print specific image size?

    Hi Gang - how do I print a 11x15" image onto 13x19" photo paper?  At first it seems easy, but things aren't making sense. Here's what I did:
    I exported the photo and used the LR image resize dialog area to 11x15" - easy.
    I imported the exported image (assuming the image was 11x15") and then went to the LR print area - this is where the confusion begins. 
    The print tab shows the image dimensions as 8 x10.19 in.  Help, how do I make it the 11x15" I need it to be?
    I understand that I'll need to adjust the image to get the portion I want into the 11x15 space, but for now, I can't even get the size to 11x15".
    I tried custom package options, but no luck there.
    I do have Canon's Print Studio Pro plug-in which works great. Except, once again, I don't know how to instruct it to print the image dimension 11x15" on the 13x19" paper.
    Fiddling with settings, I printed a dozen attempts, and still no luck achieving 11x15" image size on the 13x19" paper.  For now, I'm OK with the image getting cut off or other skew - baby steps - I need to learn how to make the image print 11x15" image size.A
    Thanks for offering suggestions.
    Screen shot shows my 11x15" image is 8x10.19; I don;t know how to make it 11x15".
    LR v5.7
    Mac OS X Yosemite v10.10.2
    Brain: generally intuitive, but need help on this question!

    The first step in the Lightroom Print module is to click the Page Setup button, select your printer, and then select the paper size. From your screen shot it looks like the correct paper size hasn't  been selected yet, because you said you wanted to print on 13 x 19 inch paper, but the paper on screen is only 8.5 inches wide. My guess is that Page Setup is still set for US Letter size paper, and that you should go back to Page Setup and change it. After you do that, if your Layout Style is set to Single Image you should be able to set the Cell Size to 11 x 15 inches.

  • Hp office jet 6500 how to print mirror images

    How do I create a mirror image for text  to print on a tshirt transfer paper?  I can do it with my old printer but I can't find the area were I would click Mirror Image for this printer. 

    Hi @adamjoshme ,
    I understand that you want to know how to print a mirror image. I would like to help you out with this issue today.
    This feature might not be available with this model. You would have to check the printer preferences, in the Advanced section for Mirror Image and turn it on from there if it is available. I checked the manual and it didn't show this feature.
    If you don't have that option in the driver then use Paint, Under Rotate select Rotate 180 degree's and then under Rotate select flip horizontally.
    Hope this helps.
    Have a great day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • How to set gif image as wallpaper in Nokia s60v3 m...

    Hi, I am using N79 and i want set gif image as wallpaper.when i am trying to set a gif image as wallpaper no animation is coming on standby screen
    How to set gif wallpaper on standby screen with animation

    Not sure but you may have to install this application
    http://www.mobidhoom.com/anim-sprite-lite-v233s60v3/
    Try and give your feedback..
    --------------------------------------------------​--------------------------------------------------​--------------------------------------------------​--If you find this helpful, pl. hit the White Star in Green Box...

  • How to print dynamic images in smartforms?

    Hi Guys,
    We are maintaining images in QM02 similar to the header or item texts.  Those images has to be displayed in smartform.
    Can anyone know how to read any image from transaction and display the same in smartform. Those images will be different for different notification numbers?
    Please let me know if instead of SE78 we can read the image and display the same in smartform?
    Or is there anyway we can achieve the same?
    Thanks,
    <MOVED BY MODERATOR TO THE CORRECT FORUM>
    Edited by: Alvaro Tejada Galindo on Dec 28, 2009 2:30 PM

    Hi Naidu,
    I Have the same problem with you. I Did a program to put all imagens in SE78. After this, you can use a variable to fill out the name.
    Example:
    Name: &name&
    Object:GRAPHICS
    ID:BMAP
    Regards,
    Marcelo

  • How to insert GIF images in Blogs

    I am able to insert GIF images in to blogs... but its not playing .. only static..
    Any help..
    Thanks in advance..
    Regards,
    Mahesh

    Yes.. Its working perfect. (Sorry Jyoti sir for copy-paste)

Maybe you are looking for

  • Windows 7 64-bit: Switchable graphics and Ricoh card reader problem

    Hi guys, Two problems with my laptop. I'm using a T400, previously installed with Windows Vista Business 32-bit. Switchable graphics worked well until I formatted and installed Windows 7 Pro 64-bit (I got the RTM through MSDNAA). Now, Windows can onl

  • Why can't I see my iPhone images in Finder?

    5-6 year old iMac with 10.6.8 iPhone 4 Yes, I can import into iPhoto, but since I do my editing in Picasa I'd rather just drag or import straight from Finder. Yes, I can start messing with iCloud but really all I want is to see any files or images on

  • Editing previous entry in User Exit

    Hello , We are using on user exit in HR module to display employee trip data . We have for eg 5 line items in a table control on sap standard TRIP transaction .At runtime user enters data in the table control fields line by line . When user exit is t

  • Creating notification (Its urgent Plz help)

    Hi All, I am asked to do a development for create notification such that if a person enter the measuring point greater than a specified limit say 60 which according to them is a dangerous point then a notification should be created and it should be t

  • How can I enlarge the firefox window where the theme is displayed?

    I would like to enlarge the area where the persona/theme is displayed at the top of my screen.