How to show photos in report ?

I build table that has ORDSYS.ORDIMAGE column. Then I build
report to show these picture but it don't show photos. It just
show links to display photos while I'd like to display photos.
I've set this column formatting as HTML.
What should I do? Please tell me.
Thank You

Hi,
Tnx guys, maybe il try it (about ORDIMAGE) some other time. I have an urgent task to do.. We are now migrating our application from the developement server with 9iAS 1.0.2.0.0 with Portal 3.0.6. Im having a problem on migration, coz the export/import utility of Portal 3.0.6 fails. Some guys like us from other discussions agree to that. So i upgraded my production instance to 9iAS 1.0.2.2.1 with Portal 3.0.9.8.2. with patch 30982. In which they the bug for export/import is fixed.
Im posting my problem to you guys, maybe u can help me...
How can i export my application running on Portal 3.0.6 (with a bug on export/import) to a production instance Portal 3.0.9.8.2? Can it be posible to migrate a portal instance from a lower version to ahigher version of portal?
Some guys suggest for me to upgrade my development instance to Portal 3.0.9.8.2.. but i cannot do that.. coz it might destroy our application currently running on that developement servers over Portal 3.0.6.
Pls do suggest.. coz it might be a great help to us.
Tnx in advance,
jeri

Similar Messages

  • How to show photo galleries made in Bridge in Contribute CS4 - Help?

    Hello,
    I have created a photo gallery in Bridge and I cannot find out how to show this in my website. I've uploaded it to my ftp site but I cannot see how I can add it to my website. I have a gallery page on the website - does anyone know how I can find the code to this gallery so I can add this to the web page?
    Any help would be much appreciated - I'm still learning as I go with Contribute and so far the help files have been pretty poor.
    Cheers

    Thanks for your response but the link is missing - can you resend it please?
    Much appreciated

  • How to show photos on TV

    How do you show photos from ipad1 to TV?

    I'll try this tonight but i'm thinking I have a Wii, which has wireless and a photobucket so maybe connect the Ipad to the Wii via bluetooth and view pics that way?
    Just a thought...

  • How to show a crystal report in a SAP Portal?

    Hi
    I am trying to show a crystal report in SAP Portal. I did a crystal enterprise report iview, and in SAP portal I got this error when I trying to show it:
    404 Missing Page
    The page you requested is not available on this web server for one of the following reasons:
    The address you typed may be inaccurate. For example, a character was missing. To correct this issue, double-check the address and make sure that it is spelled correctly.
    If you clicked on a link or button, the web application that generates this link may be experiencing a temporary problem. Close and restart your browser and try the link again at a later time.
    Then I test ce_url service, and got this error:
    Service cannot be reached
    What has happened?
    URL http://portalsap:8002/sap/bw/sap-client=100_cmsname=ipmachinebo call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system BTP with error code 404 and for the reason Not found.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:mars_BTP_02-v:0-s:404-r:Notfound
    HTTP 404 - Not found
    Your SAP Internet Communication Framework Team
    I reviewed a Ingo's blog, and I have the configuration like he mentioned. With this handler
    /CRYSTAL/CL_BW_HTTP_HANDLER
    In http tab, I have
    Protocol: http
    Web server host and port: ipmachinebo:8080
    Path: SAP
    Viewer application: reportView.do
    can someone help me please?
    Regards,
    Paulina

    Hi Ingo
    Thank you for your response,
    I changed the 2 items, but I got this error when I executed the report in portal
    HTTP Status 400 - Invalid path /viewreport was requested
    type Status report
    message Invalid path /viewreport was requested
    description The request sent by the client was syntactically incorrect (Invalid path /viewreport was requested).
    And  when I tested the ce_url service I got this error:
    Service cannot be reached
    What has happened?
    URL http://mars.penitus.com:8002/sap/bw/sap-client=100_cmsname=192.168.0.35 call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system BTP with error code 404 and for the reason Not found.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:mars_BTP_02-v:0-s:404-r:Notfound
    HTTP 404 - Not found
    Your SAP Internet Communication Framework Team
    Regards,
    Paulina

  • Report : How to show all the reports in Content Management

    Hi,
      Can anyone tell me how I can show the "Resource Locks" Report in Portal.
      I can see 4 reports through Content Management -> Reports i.e. Approval Maintenance, Link Consistency, Resource Statistics, Time-based publishing.
    If I want to add more reports over here than "How I can achieve it".
      Also I have seen the settings System Administration -> System Configuration -> KM -> CM -> Repository Managers -> Reporting Repository
    But here I find no combo box for Active Reports, so from where I can activate the reports and show them in Content Management -> Reports
    Please help me.
    Regards
    Deep

    Deep,
        Are you talkign about the report which give you details of which Portal Objects are currently locked?
       If yes, then you can go to System Adminitrator > Monitoring > Object Locking
    Hope this helps,
    *Points will be appreciated.

  • How to show in a report a pdf blob from database

    Hi all
    We are working on report 6i and report 10. We have a report wich needs to show a blob field from database that storages a pdf (type application/pdf). OLE2 is deprecated. The pdf blob field must be displayed in a preview and must be printed. In local, it works. When it works on a browser, the pdf blob field is missing. If we load the field into a pdf file, the field is not visible in the browser.
    Do not get it to work. How I can implement? Could you give us any example for this?

    In local, it works. What do you mean by that exactly? You see the pdf in Reports Builder?
    If you just want to show the pdf in a browser (not embedded in a report) it is easy to use mod_plsql. You can have a simple db procedure like this to show any kind of blob:
    procedure show_webdoc(io_blob    in out nocopy blob
                         ,i_mimetype in varchar2
                         ,i_filename in varchar2)
    is
    begin
       if dbms_lob.getlength(io_blob) >0 then
          owa_util.mime_header(nvl(i_mimetype,'application/octet'),false);
          htp.p('Content-length: ' || dbms_lob.getlength(io_blob));
          htp.p('Content-Disposition:  inline; filename="'||i_filename|| '"');
          owa_util.http_header_close;
          wpg_docload.download_file(io_blob);
       end if;
    end show_webdoc;

  • How to show photos at 100% size in the Edit window?

    Background: I am using iWeb 1.1.1 to re-make my .Mac Homepage website; I love this newer, more flexible application and I love using iPhoto 6.0.4 with it.
    My iPhoto 6.0.4 question:
    How can I get the photos to show in their maximum size in the Edit box? There are some photos that I want to show as large as possible or even enlarge, and when the photos show at smaller than their exposed size, I feel disadvantaged.
    I welcome any advice you send. I am feeling a bad crunch right now because my graphics program of choice, Photoshop Elements 2, is not opening up for me (It's been stopping at the point where the message says: "Photoshop is not sending any personal information") and I cannot find the CD right now. It's here somewhere but...........
    — Lorna in Southern California

    I welcome any advice you send. I am feeling a bad
    crunch right now because my graphics program of
    choice, Photoshop Elements 2, is not opening up for
    me (It's been stopping at the point where the message
    says: "Photoshop is not sending any personal
    information") and I cannot find the CD right now.
    It's here somewhere but.........
    This is very easy to fix. There are many threads
    here, at the Adobe forum and in any forum where PE is
    mentioned. Quit PE, then take your computer totally
    offline (unplug the ethernet cable, shut down airport
    if that's what you use). Now launch PE, then go to
    Preferences>Adobe Online and set Check for Updates to
    Never. There never were any, never will be now for PE
    2, so you won't miss anything.
    Barbara..... if there never were any updates to PE2 and never will be any, then why would I need to disallow updates?
    BTW, I discovered how to get the picture to show up full size. iPhoto 6 is different than iPhoto 4, and while experimenting with some edits I discovered the Small Head — Big Head toggle bar in the Edit Window, and that was my answer.
    — Lorna in Southern California

  • How to show ABAP ALV report in Portal iview?

    I have a ABAP report developed in ALV grid. Now I want to show it in EP iview. How can I do that? What type iview I shall use? And any step by step procedure/doc will be really appreciated.
    Alternatively is it possible to create a HTML tabular report similar to that of ALV grid and show it in EP.
    How complex will it be?

    To add to padmakar's remark. You can use a transaction iview but it has limitations.
    First of all: You can use a transaction iview with or without Gui. If the user has a sap gui then 1) you make a transaction for your ALV 2) create a transaction iview defining the alv transaction + with gui output
    If the user has no gui. Then it will only work if your ALV is made web enabled ( so not on 4.6c ).
    Other alternatives are to create a BSP + bsp iview instead of a list. Or use Webdynpro.
    Hopes this helpes somewhat,
    Frederik

  • How to show photo folder in iTunes ?

    Hello everyone ..
    I want to know how i can see my photos from the iTunes on PC ?, i clicked on Photos but it showed me only some folder not all of them .. also i want to see my photos in iTunes so i can easily delete or edit any photo i want.

    Photos are not "in" your iTunes Library and are not viewed "in" iTunes.
    Photos taken on an iPod Touch/iPhone etc. are in the Camera Roll on the device. You can (and should) transfer them from the Camera Roll to your computer (using Windows Explorer, not iTunes) to which ever folder you want. Once that is done, you can view and edit them using programmes on your computer - again, not iTunes. You can also, if you so wish, put them back onto the iDevice as detailed in 2, below.
    Pictures (photos) already on your computer can be copied onto iDevices by using iTunes to specify which folder on the computer, iTunes should use to copy the pictures from. For example, if you have copied photos taken on your device onto your computer, as mentioned above, then when you have the device connected to iTunes, look on the Device/Photos pane and navigate to the folder with those photos in it. Every time the device is connected to your iTunes Library, part of the Sync procedure will update the device with any new pictures in the specified folder, and remove any pictures from the device that have been removed from the folder.
    If you wish, you can have sub-folders in the specified folder and these will appear on the device as folders.

  • How to show photo in form portlet when using ORDSYS.ORDIMG?

    I built a Form based on table that has ORDSYS.ORDIMG column.
    When I query the form,the photo shows. And then I publish this
    form to portal and add in a page. But the form portlet doesn't
    show picture, when I query. Why? What should I do?
    Please help me. I'm looking forward to hearing from all of
    you
    Thank you,
    Sirin

    Well I don't know how to use the ORDSYS.
    So I've created a solution myself using javascript.
    I created a table with a column "image" as VARCHAR2. Using the portal image fieldtype (in a form) will store the image name in the table-column and the actual image in a portal own table.
    1) First in the form added a new field (label only)
    2) The label is "<IMG SRC=/images/blank.gif NAME=test>"
    NB. I'm not sure if I added the blank image myself or not but it is a small gif in the images directory with only a transparent color.
    3) In the Additional PL/SQL Code section ... after displaying the page I added the following code;
    DECLARE
    v_image VARCHAR2(200);
    BEGIN
    v_image := p_session.get_value_as_VARCHAR2(
    p_block_name => 'DEFAULT',
    p_attribute_name => 'A_<imagefieldname>');
    IF v_plaatje IS NOT NULL THEN
    HTP.PRINT('<script language="JavaScript">
    if(document.images)
    document.test.src="http://<hostname>/pls/portal30/docs/'||v_image||'";
    </script>');
    END IF;
    END;
    Regards,
    Arnoud Koot
    Oracle Web Consultant
    http://www.thedoc.nl

  • How to show web layout reports from 10g forms

    Hi all ! When I try to open a report file with extension .jsp from a Form using web.show document() or run_report_object() only paper layout is showing on the screen so how I display a web layout from a form with proper documentation or design. Again why only data is showing on the screen without line,ractangle and other documentation but when I run the same report from report builder It is showing all on the screen.Please help how to resolve this. Please provide some proper code or way to solve this.
    Thanks & regards
    Sanjit

    Well,
    Web layout means that in place of (or in addition to) the paper layout, you get the report designed in JSP code. So all the frames, repeating frames etc will be expressed in JSP code using the Oracle Reports custom tags. Since it is code-based, you can insert your HTML or Java code in here to customize the output. You can in fact start with the HTML template, open it in reports builder, and start inserting the data using Reports custom JSP tags. In web layout, there are no "page breaks". So your report will be a JSP file, and can be deployed along with your J2EE application.
    and see http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsrw10g.pdf
    Regards

  • How to show photos on my ipad1 to my tv wirelessly?

    How can I show my photos on my ipad1 on my tv wirelessly?

    I'll try this tonight but i'm thinking I have a Wii, which has wireless and a photobucket so maybe connect the Ipad to the Wii via bluetooth and view pics that way?
    Just a thought...

  • How to show sysdate in report header

    Hi everyone
    i want to show the Sysdate option in my report header.
    i have been looking around and i found out that i have to add {$SYSDATE()$} to my report default value, the issue is
    1) cant find where is my default value so i can edit it
    2) is there anyway that i can write this comman {$SYSDATE()$} in my header and it will call the system date ?
    thanks

    In the Data Model Editor go to Parameters.
    Create a New Parameter
    1. Give it a Name P_Sysdate
    2 set Data Type to Date
    3 Set Default Value to {$SYSDATE()$}
    when you create you XML it should look like
    <!--Generated by Oracle BI Publisher 11.1.1.6.7-->
    <DATA_DS>
      <P_SYSDATE>2013-07-03T01:00:00.000-04:00</P_SYSDATE>
      <G_1>

  • How to show more than one record at a form-like style report?

    Hi All,
    I developed a form-like style report
    I want it to show more than one record at once (At the same page)
    I tried that by setting the value to "Maximum records per page" property for the repeating frame to 10
    but when I close the property palete and open it agian the value is returned to 1 !!!
    how to show more than one record at the same page?????
    Thank u

    Hi,
    there's perhaps another property like "page protect". If than 2 records didn't fit at one page there's a page break. Or is there any object inside the repeating frame with page-break properties? Sorry .. it's like looking into a chrystal ball ...
    Regards
    Rainer

  • How to show all view tab (Main Report and all Sub Report) in Visual FoxPro 9

    I use ActiveX from Crystal Report Developer XI for viewer in Visual FoxPro 9 and I already know how to show Main Report by using command:
    oRptRun=createobject("CrystalRuntime.Application")
    oRptView=thisform.oleRptViewer
    oRptOpen=oRptRun.OpenReport('MyReport.rpt')
    oRptView.ReportSource=oRptOpen
    oRptView.ViewReport
    Inside the MyReport.rpt there is two subreport name :
    1. MySubReport1
    2. MySubReport2
    My Question is :
    How to show all view tab (Main Report and all Sub Report) at the 1st time we call ViewReport?
    I try to using command :
    oRptRun=createobject("CrystalRuntime.Application")
    oRptView=thisform.oleRptViewer
    oRptOpen=oRptRun.OpenReport('MyReport.rpt')
    oRptSub=oRptOpen.OpenSubreport("MySubReport1")
    oRptSub=oRptOpen.OpenSubreport("MySubReport2")
    oRptView.ReportSource=oRptOpen
    oRptView.ViewReport
    but only show Main Report (view tab name : Preview)?
    Did I miss any command before I call oRptView.ViewReport?

    Your right, there is only one tab to view the report.
    To open the subreports you will need to click on them in the main report. I don't know of a way to open them programmatically like you are doing here
    http://diamond.businessobjects.com/robhorne</a>

Maybe you are looking for