Formate Conversion: From Reports to Msword Format

Hi all
I am using oracle 9i reports. I generate one report and the out put in rtf format. when run this report and get the out put in file and can see by double click on it and its going open in Msword automatically. my problem start when i run this report from the forms using the run_report object and then suing web.show_documents to see the report in word. its working fine but every time it ask me the editor where i have to open this file. so i have to select Msword then its open. My all users can not do this one. so is there any way that it should be open automatically with out asking.
here is my code
WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)|| '?'||'server=' || :global.reportserver,'_blank');          
and in my report object property i have set all the property that the format is rtf
Thanks

I believe that is not possible. When getting a RTF document from a web site, Internet Explorer always asks you if you want to open or save the file. The file cannot be viewed directly in IE. That has to do with the fact that MS Word has to convert the RTF file first before it can be displayed.
There may be IE plugins on Internet that can directly view RTF files in the browser, but I'm not sure.
Another option is to use PDF instead of RTF. PDF can be viewed directly in the browser.

Similar Messages

  • Conversion from Reports 3.0 to Reports 9i:  Runs but can not print.

    I have a report (not too complex) created in 3.0. I opened it in Reports 9i and it run without error. When I attemped to print the following message came up:
    REP-0069: Internal Error
    REP-57054: In-process job terminated: Terminated with error:
    REP-50125: Caught exception: exception oracle.reports.RWException {
    oracle.reports.RWError[]erroChain={struct oracle.reports.RWError {
    int errorCode=50125,
    java.lang.String errorString="Caught exception: java.lang.NumberFormatException:", java.lang.String moduleName="REP"
    The description from help was:
    It is an internal error - Contact Oracle Customer Support for Assistance.
    Is it possible todirectly conver such reports?
    Thank you,
    Mauricio Imana
    [email protected]

    Hi
    Yes you need to install 6.0 or 6i as intermidiary in order to run your report successfully on 9i platform. This just recently happend with me.
    Zahir

  • Poor raw conversion from Fujifilm X100 .raf format in Lightroom 3 and 4

    I'm seeing very poor results when doing raw conversion from Fujifilm X100 .raf format. Who can I contact about this? Is there anything I can do?
    See below for what is supposed to be a white curtain, lit by stage lighting. It results in a blown out blue channel, serious loss of detail, and very ugly gradient.
    (Lightroom 4.2, Camera Raw 7.2 on LEFT  --- Fujifilm X100 in-camera jpg on RIGHT)
    And for more detail:
    (Lightroom 4.2, Camera Raw 7.2 on TOP  --- Fujifilm X100 in-camera jpg on BOTTOM)
    (Lightroom 4.2, Camera Raw 7.2 on LEFT --- Fujifilm X100 in-camera jpg on RIGHT)

    The blue light is so intense that it is, or almost is, saturating the sensor.
    The camera’s built-in raw conversion handles this by shifting the color to cyan—clipping the blue and allowing the green to contribute more.  I doubt there was cyan lighting in the scene, only blue.
    Adobe does not shift the hue, but this makes the blue seem over saturated.  Adobe’s conversion may be more colorimetrically correct, but less pleasing in this case of intense lighting that the sensor cannot accurately record.
    It is a difference in camera profile used between the camera and Adobe.  Since Adobe does not supply camera-match profiles for much more than Nikon and Canon cameras, you’re not going to be able to fix things other than managing the over-saturation using HSL or WB or other things like lower-vibrance, higher saturation. 
    You could try making your own camera profile using an X-Rite Color-Checker Passport or the color-checker and the Adobe DNG Profile Editor:
    http://xritephoto.com/ph_product_overview.aspx?id=1257

  • Conversion from string "20041023 " to type 'Date' is not valid.

    Hi ,
       I have a table with one of the column(EmpHiredate) datatype is char(10). It has value like "20141023". I need to display this value as date format(dd/mm/yyyy) in report. 
    Following methods i tried in textbox expression but no luck.
    =Format(Fields!EmpHireDate.Value,"dd/MM/yyyy")
    =Cdate(Fields!EmpHireDate.Value)
    Error:
    [rsRuntimeErrorInExpression] The Value expression for the textrun ‘EmpHireDate.Paragraphs[0].TextRuns[0]’ contains an error: Conversion from string "20041023  " to type 'Date' is not valid.
    Is it possible to convert string to date using SSRS textbox expression ? Can anyone help me with the solution.
    Thanks,
    Kittu

    Hi Jmcmullen,
         Found one more issue on the same. I have one value like "00000000" for the column(EmpHiredate)
    , when i use above expression values(ex:"20141023")
    are displaying in dd/MM/yyyy format in report except value like "00000000" and giving following error:
    [rsRuntimeErrorInExpression] The Value expression for the textrun ‘EmpHireDate.Paragraphs[0].TextRuns[0]’ contains an error: Conversion from string "0000/00/00" to type 'Date' is not valid.
    Even i tried to pass its original value("00000000") as below but no luck.
    =IIF(Fields!EmpHireDate.Value = "00000000","00000000",Format(CDATE(MID(Fields!EmpHireDate.Value,1,4) + "/" + MID(Fields!EmpHireDate.Value,5,2) + "/" + MID(Fields!EmpHireDate.Value,7,2)),"dd/MM/yyyy"))
    Also tried this:
    =IIF(Fields!EmpHireDate.Value = "00000000","2000/10/21",Format(CDATE(MID(Fields!EmpHireDate.Value,1,4) + "/" + MID(Fields!EmpHireDate.Value,5,2) + "/" + MID(Fields!EmpHireDate.Value,7,2)),"dd/MM/yyyy"))
    Please Suggest. 
    Thanks ,
    Kittu

  • Conversion from milliseconds to Date in 1.5

    A java.util.Date object can be constructed by passing the number of milliseconds since 1 January 1970 as a constructor argument. This Date can then be formatted to a human-readable format with SimpleDateFormat.
    I have tested this conversion from milliseconds to a date both in Java SDK 1.4.1 and Java 1.5.0 to see if there are differences in the way dates are calculated from milliseconds. It seems that there are differences when the system timezone is set to Europe/Berlin. The dates from 1.5.0 are one hour ahead of those from 1.4.1 in a certain week in May 1945 and a day in September 1945.
    This means that milliseconds that are generated from a date by using the Java 1.4.1 runtime and then stored are interpreted differently when they are retrieved when using java runtime 1.5.0, if they happen to be one of those days in 1945. This could cause discrepancies when an application is migrated to JDK 1.5.0.
    This is only a minor problem, but is there any way to know what caused these changes in SDK 1.5.0 and what these changes are? Is there historical data that the Sun implementation is based on to calculate dates from millisecond values?
    Any help is appreciated.
    Kind regards

    I found the following at "http://thedailywtf.com/forums/70146/ShowPost.aspx"
    In summer 1945, Berlin and the Soviet-occupied part of Germany observed a daylight savings time of two hours. Unfortunately, Sun's JRE 1.4 implementation of GregorianCalendar defines a maximum DST of one hour and, in non-lenient mode, rejects the 2 hours as invalid when recalculating all fields after the millisecond field is set.
    Here's the bug report: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4639407

  • Why is printing report different from report builder and app server

    I created a report and when ran from report builder it looks fine.
    And when i moved the report to server and ran the report in the browser using this url
    http://192.1.1.8:7778/reports/rwservlet?userid=esp/esp_dev1@wdev&report=FMMA_VOUCHER.rdf&destype=cache&desformat=pdf
    and print it the report shrinks, the fonts become small and the margins change. I am having hard time how to figure out a way to correlate the formatting in the report builder and when i run on the server using pdf format.
    Is there any way to set the server so that the pdf output matches with the report builder.
    Thanks.
    Sree

    I assume you are doing a cross platform deployment
    Pls read section 6.2
    Resolving PDF Font Issues During Cross-Platform Deployment
    in
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    [    All Docs for all versions    ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    ---------------------------------------------------------------------------------

  • Exporting a 2D table from Report to Excel

    I have created an automatic populating 2D table in the Report window.  I would like to copy the contents of the table into excel format.  When I try to copy/paste into excel, I just get a bunch of code.  Is there a way to copy the contents of the 2D table from Report and paste them into another program?
    Steve

    Steve,
    When you copy an object in REPORT (such as a 2D table), DIAdem will copy the code required to create the object, not the numbers in the table. This is by design and there is no direct way to copy the actual numbers from a REPORT table.
    A possible workaround is the "Transfer to VIEW" function on the REPORT toolbar. That function will take the current REPORT layout and copy it into the VIEW area. In VIEW you can highlight the values in the table and Copy/Paste them into Excel. To copy a complete column, click in the first row of the column and the pres and hold Shift&Control" and then hit the down arrow. That will select a complete channel.
    I hope this helps with your question,
         Otmar
    Otmar D. Foehner
    Business Development Manager
    DIAdem and Test Data Management
    National Instruments
    Austin, TX - USA
    "For an optimist the glass is half full, for a pessimist it's half empty, and for an engineer is twice bigger than necessary."

  • Conversion from u0091Stringu0092 to type u0091Dateu0092

    Hi,
    I am fetching a date from DeliveryDate TextBox from Sales Order. I enter as 10/03/2007. As I need to fetch this value and store it in Production Order DueDate records through SDK Code.When I fetch this value from code,I get as 20070310. When I try to update my Production Order DueDate it gives me an Error Msgbox “Conversion from string “20070310” to type ‘Date’ is not valid.” Here is my code to update production order.
    Dim DelDt As String
    DelDt = MyForm.Items.Item("12").Specific.value
    Here DelDt shows 20070310
    Now I have created an object of ProductionOrder and try to add Records,
    sboProdOrder.DueDate = DelDt
    On the above line it gives me that messagebox.
    Can any one help me as to how can I convert this code in a working one or how to convert the string to date in VB.Net
    Thanks a lot
    Murtaza

    Hi Murtuza,
    Retrieving the value from a date-field through the value always returns the date as a string in the format yyyymmdd.
    the field DueDate is a field of type DateTime.Date. to enter the date in this field, you must convert the string to a date.
    The following line converts the date-string to a date.
    new DateTime.Date(left(DelDt,4), mid(DelDt,5,2), right(DelDt,2))
    Regards
    Ad

  • Send a mail from report 6i with his function "mail...."

    I have tried to send a mail from report using "File" ---> "Mail.." Function that is avaible on report, but it send a file "*.eps" that is not readble with the normal reader.....
    It is possible to send a PDF file ???
    Thank 's .....
    il vampiro

    Hello Mike,
    In Reports Builder 6i, Just change the Initial Value of the DESFORMAT System Parameter in the Object Navigator (under Data Model) to PDF, or any other format you want to mail the report in.
    Thanks,
    The Oracle Reports Team.

  • Problem while passing parameter from report to report.

    Hi
    I'm using forms and reports 10g, hava a problem while passing the parameter from reports to report.
    i'm using srw.set_hyperlink to call report from report.
    i have created a key value in the cgicmd.dat file called
    faccre802005-2006: report=faccre80 destype=cache desformat=pdf userid=<userid/passwd@cs> server=<servername>
    Now in the format trigger i'm using this key value
    function BTN_DEBITFormatTrigger return boolean is
    temp varchar2(5000);
    IP_ADDRESS VARCHAR2(50);
    SERVER_NAME VARCHAR2(10);
    L_ACCT_CODE VARCHAR2(14);
    begin
    SELECT MAST_INT_DESC,MAST_USER_PGM_ID INTO IP_ADDRESS,SERVER_NAME FROM MAST_INT_INFO WHERE MAST_INT_ID='VISHWA';
    temp := IP_ADDRESS||'?faccre80'||:P_FIN_YEAR||'+server='||server_name;
    temp :=temp ||'+'||'P_PREVIOUS_CODE='''||:ACCT_CODE||''''||'+'||'P_COMPANY_CODE='''||:P_COMPANY_CODE||'''';
    temp :=temp ||'+'|| 'P_FROM_DATE='''||TO_CHAR(:P_FROM_DATE,'DD-MON-RRRR')||''''||'+'|| 'P_TO_DATE='''||TO_CHAR(:P_TO_DATE,'DD-MON-RRRR')||''''||'+'||'P_TRUST_CODE='''|| :P_TRUST_CODE||'''';
    temp :=temp ||'+'|| 'P_UNIT_CODE='''||:P_UNIT_CODE||''''||'+'||' P_FIN_YEAR='''||:P_FIN_YEAR||'''';
    temp :=temp ||'+'|| 'P_LEVEL='''||:P_LEVEL||''''||'+'||'P_HEADER='''||replace(:P_HEADER,' ','%20')||''''||'+'||'P_FORMAT='''||:P_FORMAT||'''';
    SRW.Set_Hyperlink(temp);
    END;
    return (TRUE);
    end;
    Report is coming but not the expected result because parmaeters are not coming from first report to second report.
    If i dont use cgicmd file userid and password are displyed in the URL.
    Pl tell me how to pass parameter from one report to another.
    thanks and regards

    Hi
    I got the solution.
    I forgot to add %* at end of the KEY value.

  • Email from Reports 3.0

    Hi ! Friends , Is it possible to E-mail a report from Reports 3.0

    Hi,
    You can send the report to mail.
    This is done by directing the email output to
    be directly sent via email without previewing
    it in the Report Previewer,
    This is achived by setting the following parameters:
    DESTYPE: MAIL
    DESFORMAT: PDF or HTML
    DESNAME: Name of the email id
    The result will be an email message with the
    output attached as the target format.

  • Regression testing on PDF output files from Reports?

    My current client is looking to do more automated regression testing of the output (content) of their reports, most of which are output from Reports6i into Adobe Acrobat PDF file format. Is anyone currently using or aware of a tool (QARun, WinRunner, etc.) that will do this? (Most of the tools can do a binary comparison of the PDF files that were output, but we need something that will look into the PDF files themselves and tell us where any differences are found in the actual content (text) of the report itself.)
    Thanks in advance for any info anyone can provide!
    - Bill

    Dear Nick,
    Just ensure a printer is configured. This can be done by typing in echo $PRINTER at the $Prompt.
    If it returns null then configurea printer and i fell this should resolve your problem,
    Since it did resolve my problem.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Nick Mavrakis:
    I am having some trouble getting pdf output in the unix environment from Reports 6i.
    If I kick off a defined report file (.rep) from the command line as follows:
    rwrun60 testreport.rep destype=file desformat=pdf desname=testreport.pdf userid=connection_details
    I get the following errors:
    REP-0004: Warning: Unable to open user preference file.
    REP-3300: Fatal error in toolkit.
    UI-9: This function call is out of context
    If I run the command without the file output options (rwrun60 testreport.rep userid=connection_details) then the report opens up on the screen correctly. From here, if I try to generate a pdf file, I get the following error:
    REP-1800: Formatter error.
    The report is defined as character type, and is a simple listing of approximately 50 records from a database table. There are no graphics or any pl/sql defined in the report.
    Has anyone had similar problems in trying to do this?
    Any help is greatly appreciated.
    Cheers
    Nick<HR></BLOCKQUOTE>
    null

  • Error in calling report from report??

    Hello experts,
    i am using oracle fusion middleware form and report 11.1.2.1.0 release.
    i am calling the report from report by using srw.set_hyperlink() function:
    format trigger code is below:
    srw.set_hyperlink(temp_path||'/reports/rwservlet?dblogin+server='||rep_server||'+report='||global_path
                ||'fac\reports\Fac_cheque_print_icici_0121_cc.RDF+destype=cache+desformat=pdf'
                ||'+paramform=no+locn_code='||:locn_code||'+vch_type='||:vch_type||'+vch_vch_no='||:vch_vch_#);error: EP-52005: The specified key dblogin does not exist in the key map file
    please help me out.
    thanks
    yash

    yash_08031983 wrote:
    Hello experts,
    i am using oracle fusion middleware form and report 11.1.2.1.0 release.
    i am calling the report from report by using srw.set_hyperlink() function:
    format trigger code is below:
    srw.set_hyperlink(temp_path||'/reports/rwservlet?dblogin+server='||rep_server||'+report='||global_path
                ||'fac\reports\Fac_cheque_print_icici_0121_cc.RDF+destype=cache+desformat=pdf'
                ||'+paramform=no+locn_code='||:locn_code||'+vch_type='||:vch_type||'+vch_vch_no='||:vch_vch_#);error: EP-52005: The specified key dblogin does not exist in the key map file
    please help me out.Hi, yash
    Check this link. try in sequences.
    1.http://www.orafaq.com/forum/t/164277/0/
    2. {thread:id=2383372}
    3. http://docs.oracle.com/cd/E12839_01/bi.1111/b32122/orbr_howto006.htm#i1058669
    Hope this helps
    Hamid
    Mark correct/helpful to help others to get right answer(s).*
    Edited by: HamidHelal on Apr 4, 2013 12:51 PM

  • Struts/ADF/Toplink conversion from 10.1.2 to 10.1.3

    Hi. We have a J2EE application based on Struts/ADF/Toplink.
    We just let the JDeveloper migrate the whole application itself.
    We solved a few minor problems, but now we have the greater one:
    - we have in domain classes some getX...(), setX...() methods, intended for example
    for getting attributes of nested objects or for conversion from String to Date.
    In older version, when you had some getXSomeAtr() method in domain class, the attribute
    XSomeAttr was automatically generated into Data Control.
    In newer version it's not! If you want the attribute to be in data control, you must
    have an private attribute XSomeAtr declared in domain class.
    Example - we have these attibutes (first two has their own getters and setters and are
    mapped in toplink, the third is unmapped)
         private Date datum;
    private String nazev;
    private String XDatumAsDate;
    and methods
    public String getXDatumAsDate() {
    return OurUtils.dateToStringAsDate(getDatum());
    public void setXDatumAsDate(String datum) throws ParseException{
    Date d = OurUtils.StringToDateAsDate(datum);
    setDatum(d);
    And the form look like this
    <html:text property="XDatumAsDate" .../>
    <html:text property="nazev"     .../>
    Reading is ok, but attempt to modify date in input field ends with
    "JBO-35009: Setting attribute for XDatumAsDate in object methodRSICollection failed"
    Are we doing something wrong ? We just need to have the date entering under our control and
    be able to enter dates in various formats.
    Thanks in advance for any comments.

    I compared the both old and new data control xml files and found the difference. The previous attribute descriptor has IsUpdateable="true" but the new has IsUpdateable="0".
    Manually changing won't help - data control generation of any class regenerates all data controls and puts back IsUpdateable="0". I'm stuck now.

  • Best practice video conversion from download

    I am looking for best practice for video conversions.
    I am downloading adobe recordings via this method:
    http://server.adobeconnect.com/xyz/output/filename.zip?download=zip
    From here, I have been converting the FLVs using either freemake video converter or FLV converter. I have tried converting into AVI (XVID), MOV, WMV, etc. (I need the file to be under 600 MB for an hour of recording, therefore it is going to need some type of compression).
    My goal is to import the video into Sony Vegas Pro 10 for further editting. I have found that whatever method I use, the video and audio does not sync properly about 50% of the time. The video time is longer than the audio time usually. Or that there are other various errors, such as the video just freezing halfway through the video.
    I have been using connect for a few years now, but with each update I find (connect 8, 9, etc), that the problems are getting worse. At this point I am just wasting time trying to convert into various formats using various codecs just trying to luck upon one where the video is at least without error.
    What methods are others using to convert the FLV to a workable editable format?

    Can't the FLV files be changed into many different formats through Apple's
    Compressor or Adobe Media Encoder? These formats can then be opened in
    standard video editing software for editing.
    Best practice video conversion from download
    mach5kel
    to:
    jsb152
    05/21/12 01:03 PM
    Please respond to jive-509399086-9dnu-2-2mvb7
    Re: Best practice video conversion from download
    created by mach5kel in Connect General Discussion - View the full
    discussion
    Yes, I use this as a last resort, as the quality of capture this was is
    signifcatnly lower. As well as it is a much more time consuming process. I
    sometimes have over 50 parts of 1 hour video. To use camtasia, you need
    first to record it, then it must be saved in a camtasia format, and then
    lastly rendered into avi or wmv. Therefore, it is does take awhile.
    Really, I feel there shouldnt be so many errors in the conversion process,
    but I am finding the FLV recordings themselves have problems. This last
    file I am looking at, even the recording playback on adobe connect, has
    serious issues with audio and video sync. A problem that is all too common
    Replies to this message go to everyone subscribed to this thread, not
    directly to the person who posted the message. To post a reply, either
    reply to this email or visit the message page: [
    http://forums.adobe.com/message/4426243#4426243]
    To unsubscribe from this thread, please visit the message page at [
    http://forums.adobe.com/message/4426243#4426243]. In the Actions box on
    the right, click the Stop Email Notifications link.
    Start a new discussion in Connect General Discussion by email or at Adobe
    Forums
    For more information about maintaining your forum email notifications
    please go to http://forums.adobe.com/message/2936746#2936746.

Maybe you are looking for

  • Video very dark in FCP X - ICC profile issue?

    I am a new user for Final Cut Pro X.  I have been using iMovie to edit movies. When I imported a project from iMovie, I immediately noticed that the video was significantly darker when I view it.  After Googling it a bit, I noticed one person that su

  • SLD error with ABAP Trial Version 7.0

    Hi,   I have installed JAVA trail version and ABAP trial version 7.0 on a single system.I am able to connect to my ABAP (NSP) version with system alias. But when I am configuring SLD ,I am getting RFC_EROR_COMMUNICATION  error. I access my local java

  • Converting Web dynpro date to SAP date type

    Hi I am using BAPI_FLIGHT_GETLIST to get list of flights but depending on some input criteria eg. on a particular date. I have written code upto this: Bapi_Flight_Getlist_Input input = new Bapi_Flight_Getlist_Input(); wdContext.nodeBapi_Flight_Getlis

  • IPhone - purple screen and can't update or restore

    Hi! I can't find any post that answers my problem so hopefully someone can help as it's been really frustrating! This morning I got the purple screen asking for me to plug my iphone into iTunes (I have the option for emergency calls). I was running a

  • Long shut down

    Very slow to shut down 90 seconds or more