Opening landscape RTF report 11g output programmatically from the Form

Hi
Using Forms/Reports 11.1.2.0 on SLES11
If I generate the report output in PDF and the output is landscape, then openning the PDF up using web.show_document (in Adobe Reader) is fine and it shows in a wide format even if sometimes it doesn't show the whole width of the report.
If you generate a report in RTF format, then transfer the RTFdocument to the client using webutil, then open the RTF document with wordpad (again using webutil) then you can't seem to default the opening of wordpad to landscape mode.  It only opens in portrait mode and the report is wrapped amd looks poor. Another option is to use MS Word and use a command line switch to run a macro that changes the format to landscape, but putting the macro in a 1000 user's Word envirnment might not be easy.
Are there any other ways to open an RTF format document in a wide format view such that the report is not wrapped within the wordprocessing environment?
Thanks for any thoughts.
Tony

Hi
Using Forms/Reports 11.1.2.0 on SLES11
If I generate the report output in PDF and the output is landscape, then openning the PDF up using web.show_document (in Adobe Reader) is fine and it shows in a wide format even if sometimes it doesn't show the whole width of the report.
If you generate a report in RTF format, then transfer the RTFdocument to the client using webutil, then open the RTF document with wordpad (again using webutil) then you can't seem to default the opening of wordpad to landscape mode.  It only opens in portrait mode and the report is wrapped amd looks poor. Another option is to use MS Word and use a command line switch to run a macro that changes the format to landscape, but putting the macro in a 1000 user's Word envirnment might not be easy.
Are there any other ways to open an RTF format document in a wide format view such that the report is not wrapped within the wordprocessing environment?
Thanks for any thoughts.
Tony

Similar Messages

  • Oracle report can not run from the form using 10gAs(release 1)

    Hi
    My matrix oracle report is okay from the builder but it is too slow when i call from the form.And finally it says me
    [b]Network Access Message: The page cannot be displayed
    Explanation: The request timed out before the page could be retrieved.
    Try the following:
    Refresh page: Search for the page again by clicking the Refresh button. This may have been a one-time error.
    I have made the following correction
    1-ENGINERESPONSETIMEOUT
    2-callbackTimeOut="9000000"
    3-ping timeout="600" interval="30" in opmn.xml
    please help me ,any advice is important for me
    Thank you
    Tata

    Hi
    My matrix oracle report is okay from the builder but it is too slow when i call from the form.And finally it says me
    [b]Network Access Message: The page cannot be displayed
    Explanation: The request timed out before the page could be retrieved.
    Try the following:
    Refresh page: Search for the page again by clicking the Refresh button. This may have been a one-time error.
    I have made the following correction
    1-ENGINERESPONSETIMEOUT
    2-callbackTimeOut="9000000"
    3-ping timeout="600" interval="30" in opmn.xml
    please help me ,any advice is important for me
    Thank you
    Tata

  • Calling report with no parameters from a form should report be a JSP file?

    Hi,
    I'm completely new to the Oracle environment and am having a few beginner problems all I want to find out is how to call a report from a form. I know this question has been asked before but I can't work it out from the answers because people seem to keep talking about rdf files:
    I am trying to call the report with the following code:
    Declare
         report_id REPORT_OBJECT;
         v_rep varchar2(100);
         rep_status varchar2(20);
    Begin
         report_id:= FIND_REPORT_OBJECT('EmployeeRep');
         v_rep := RUN_REPORT_OBJECT(report_id);
    END;
    My report is called 'EmployeeRep' but it saves it as a JSP file and there is no option to save as an rdf as is mentioned in other posts. I can understand the environments confusion because there is no directory information with the find_report_object command. Does the report have to be stored in a certain directory.
    All I have done with the report is created it from the emp table of the sample Scott database. Any help is appreciated and nothing is too obvious as I say I'm completely new to this.
    Thanks
    Dan

    Try to pinpoint what is going wrong:
    1. Run the report stand alone (from Reports Builder). If that doesn't work, then it won't work calling it from Forms either.
    2. Check if anything has run at all, or if there are report error messages with:
    http://localhost:port/reports/rwservlet/showjobs?
    For a standalone Report Server use:
    http://localhost:port/reports/rwservlet/showjobs?server=rep_server_name
    3. If it does work, call it from Forms. Is the report output file created (e.g. in the cache directory if destype=cache)? In your code you have run_report_object, but you won't see any output on your screen. To see the output add web.show_document(...) to your report. There are many examples in this forum if you search for run_report_object.

  • Features that are not supported by Excel in the browser and interactive reports will be removed from the saved copy

    I Created a power view in Excel 2013 and uploaded to my Power BI for o365 site.
    But when i click on my excel file it opens in browser,After that i click on File tab its showing me two option 
    1. Save a Copy
    2.Download a copy
    When i click on save a copy its showing me an warning below
    Features that are not supported by Excel in the browser and interactive reports will be removed from the saved copy.
    Continue with Save?
    If i continue saving it only saves an excel files with data only not the power view which i want to save with applied filters.
    Please help me for this

    Just to clarify, when you hit the option of Save As Copy, the whole experience goes into a "read-write" mode in Excel services, which currently doesn't support authoring, just consumption of PowerView sheets.
    Two mitigations that come to mind:
    1. Download the copy (as Brad suggests), rename the file and upload.
    2. Use the send to option of SharePoint online, give the file the right target document library (can be the same as source) and rename the file:
    GALROY

  • Get all output-soundsignals from the soundcard

    I want to display all output-audiosignals from the soundcard. How can I realize that?
    So far I tried that with the Java Sound API and the following code:
    audioFormat = getAudioFormat();
    dataLineInfo = new DataLine.Info(TargetDataLine.class, audioFormat);
    targetLine = (TargetDataLine) AudioSystem.getLine(dataLineInfo);
    targetLine.open(audioFormat);
    targetLine.start();          
    targetLine.read(dataBuffer, 0, numOfBytes);
    private static AudioFormat getAudioFormat(){
    float sampleRate = 8000.0F;
    int sampleSizeInBits = 16;
    int channels = 1;
    boolean signed = true;
    boolean bigEndian = false;
    return new AudioFormat(sampleRate, sampleSizeInBits, channels, signed, bigEndian);
    With that I got different results on different computers. Sometimes it displays data
    although there isn't any output on my soundcard and on some other computers it displays nothing.
    I've already read a lot of tutorials, but they didn't help me.
    Thank you.

    I want to display all output-audiosignals from the soundcard. How can I realize that?
    So far I tried that with the Java Sound API and the following code:
    audioFormat = getAudioFormat();
    dataLineInfo = new DataLine.Info(TargetDataLine.class, audioFormat);
    targetLine = (TargetDataLine) AudioSystem.getLine(dataLineInfo);
    targetLine.open(audioFormat);
    targetLine.start();          
    targetLine.read(dataBuffer, 0, numOfBytes);
    private static AudioFormat getAudioFormat(){
    float sampleRate = 8000.0F;
    int sampleSizeInBits = 16;
    int channels = 1;
    boolean signed = true;
    boolean bigEndian = false;
    return new AudioFormat(sampleRate, sampleSizeInBits, channels, signed, bigEndian);
    With that I got different results on different computers. Sometimes it displays data
    although there isn't any output on my soundcard and on some other computers it displays nothing.
    I've already read a lot of tutorials, but they didn't help me.
    Thank you.

  • Executing the report from the form

    I am getting the following error while executing a report from the form, and the destination format is excel
    RWRBE60.exe - Application Error
    The exception unknown software exception (0xc00000fd) occurred in the application at location 0x64aa591a.
    Click on OK to terminate the program
    Click on CANCEL to debug the program
    OK Cancel

    im having same problem when i use long report file names. like when i use report name my_very_long_long_report_name.rep this problem occurs..
    i reduced this to my_short_report_name.rep it never occurs, it happend in lot of reports.
    Regards

  • TS1702 Re: Notes App. I opened Notes, then opened a particular note. It opened briefly, and then suddenly several notes, from the past two weeks, just disappeared. Is this a known glitch, and is there any way to retrieve or restore these lost notes?

    Re: Notes App. I opened Notes, then opened a particular note. It opened briefly, and then suddenly several notes, from the past two weeks, just disappeared. Is this a known glitch, and is there any way to retrieve or restore these lost notes?

    The other day i deleted my email accounts off of my ipod and only reloaded a few of them. today i looked at my notes to look at a project i had typed on my notes because i didnt have paper and pen around to write it and i didnt want to froget. I reloaded the rest of my emails in hope that everything would reappear but sadly only some of them from 2010 loaded. Recently i had update some of the files and they were like they were when i first created them there were alos ones that i had deleted long ago. There are other notes i had made that were really important to me to andi wouldn't be able to remember every single one. Help Please!

  • Printing a report with print sheets from the portal

    It is my understanding that a print sheet uses a variant to make a connection between the variable settings set in the web portal and the variable / filtering settings that are used when printing a report. It is also my understanding that without a print sheet and variant that when a user prints a report from the portal that the printed report would not have the same filtering (variable settings) as what the user sees in the report. I have created a report and a print sheet that uses a variant, but when we view reports in the portal there is not a print icon... we can only print from the browser. Printing from the browser only prints what is on the screen, not a formatted report set up in the reporting agent. How do I print a report that uses a variant and a print sheet set up in the reporting agent to be available to print from the portal... i.e. display an icon to print the report? If you have a better or more detailed explanation of what a print sheet is and how to set it up, please include that as well.

    The BW Reporting agent print settings is used for batch printing of BW reports not online printing from the web.
    Currently there are no SAP delivered formatted reporting print functionality for BW. BI 7.0 will have formatted reporting and PDF export options.
    SAP had recently released a How to Document on printing using MS Excel. See the attached link for the same.
    https://websmp205.sap-ag.de/~sapdownload/011000358700001853752005E/HowToWebPrintingWithExcel.zip
    Also this has been discussed in some other threads also:
    Web template entire page print ?
    Thanks.

  • How to run the 9I report from the forms menue 9i

    how to run the 9I report from the forms menue 9i.
    Shehzad Latif

    Hi,
    1. create a Reports Object node in Forms. If you use teh same object node name then you can write generic code that works in all Forms
    2. Get the whitepaper about Forms/reports integrtion
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    Frank

  • Output Determination from the Customer Master Record

    Dear All,
    Can anybody please help me out with the configuration level settings for output proposal from the customer master record.
    Thanks
    Deepak Joshi

    Hi there,
    Can you pls let me know from where did you get the information that O/p can be triggered from customer master records? & in what scenarios you can trigger them?
    My experience in SAP tells me that O/p can only be truggered through condition techique where you will assign the determination procedure to the sales doc type.
    No where I have seen assigning the O/p determination procedure to something related to customer / customer types.
    For the O/p to trigger you need to maintain condition master records. I hope you are not getting confused between condition records & customer master records.
    Regards,
    Sivanand

  • I have a hotmail account sync. With my Mail on the Macbook and iPad, everytime I open my mac all emails are transfered from the iPad to the Macbook. Is there a way to keep a copy of the emails on the iPad? Or access them after transfered?

    I have a hotmail account sync. With my Mail on the Macbook and iPad, everytime I open my mac all emails are transfered from the iPad to the Macbook. Is there a way to keep a copy of the emails on the iPad? Or access them after transfered?

    AND yea i afraid to sync my iphone and lose everything ;( i had everything perfect sync ing perfect ical,contacts,mail,apps and now sence new library I dont wana lose everything.....my hole life runs on my fone i need help bad

  • Run Oracle reports from the FORM builder

    Hello All,
    We have Oracle Form base application running on the window OS.
    (Form version is 9.0.4.1.0)
    Our Database is installed on Linux box (DB version: 10.1.0.3.0)
    I need to run different Oracle reports from the form based application or from the form builder. (Report Builder 9.0.4.1.0)
    Any feed back will be appreciated.
    Regards,
    D

    try this
    Run_product(REPORTS,' <path to the report>', ASYNCHRONOUS, RUNTIME, FILESYSTEM,' ',NULL);
    in some event ( whichever event you want your report to show up)

  • Adobe Creative Cloud Muse: Why I don't receive anymore the email from the forms I created in several websites?

    Adobe Creative Cloud Muse: Why I don't receive anymore the email from the forms I created in several websites?

    Hello Sanjit,
    thank you for replying.
    I had the problem on this website, I have two forms, one simple and the other more sofisticated:
    www.oeso.org
    (at the bottom I have a simple contact form) and
    I created also a form on www.oeso.org/new-membership.html
    but i didn't receive any reply so
    I put the form on my website (architecturevisualdesign.ch) in a hidden form:
    http://architecturevisualdesign.ch/oeso-new-membership.html
    and here I receive the OESO New Membership Form Submission reply.
    Thank you for your help.
    Best regards,
    Nicole
    2014-09-09 11:17 GMT+02:00 Sanjit_Das <[email protected]>:
    Adobe Creative Cloud Muse: Why I don't receive anymore the email from the forms I created in several websites?
    created by Sanjit_Das in Help with using Adobe Muse CC - View the full discussion
    Please provide the site url in question , also have you hosted the site on Business Catalyst ?
    Emails can land to spam/junk folders so you should also check the folders.
    Thanks,
    Sanjit
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6713391#6713391
    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:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Help with using Adobe Muse CC by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Delete record from the form and from the database

    hi,
    i want delete record from the form and the database ,but the record is only delete from the from !!!
    this is my code :
    if //condition then
    delete_record;
    commit;
    end if ;
    Any solutions ??
    thnx

    You have unique key field(s) on the table you are trying to insert which actually restricts you from inserting the same value again.
    When you are deleting the record and issue commit there is a record to be inserted in the table which is a duplicate that's why you are getting this unique error.
    As oracle is not able to insert your commit fails and stops your deletion of record from table

  • Form with report, where some items in the form have been given values.

    Hi, greetings:
    I have a question that maybe silly but annoying to me. I need to provide a form with report, where some items in the form have been given values automatically, and these items (display only) are supposed to show given values in the form automatically.
    I used the APEX form with report. The update and delete worked well. But I cannot show automatic values when insert. By default APEX insert form makes every item null; I tried to give value for two items: P5212_USERKEY, P5212_DAILY_VER_DATE with process before header, after header, after regions and before footer, and computation, or set values of these two items in the branch when user hit create button (submit). It never worked out, the two items always displayed null value, and when I insert, I got "ORA-01400: cannot insert NULL into ("TBSBI"."DAILYVERPRODNOTE"."USERKEY")", since I have set up constraint in database that these two columns should not be null.
    Could anyone help on this? any suggestion would be appreciated.
    Sam

    If you have made these values 'Display Only' they would by default not save the session state. Accessing the page items will always return NULL. Did you change the 'Save Session State' option to 'Yes'?

Maybe you are looking for

  • How to update XML file using XSLT

    Hi there, I have a "small" issue with exporting data to an XML file using XSLT. A two steps process is needed to import data from a non-hierarchical XML file into ABAP, change the data, and then update the XML file with new values. The problem is not

  • FCP 7.0.3 doesn´t render in Lion

    Everytime I start a new project with just two little clips and try to render it, FCP tells me there is not enough Ram available. But I have 24GB.

  • Crystal Report: Items sold by customer

    Experts, I am creating a crystal report to return items sold by customer. 1) The report should allows me to choose date range, and if there is no date range selected, it should return all items sold, customer ID and name 2) The report should also let

  • Can Slides from Captivate 4 be pasted into Captivate 3?

    I had never used Captivate but I downloaded the Captivate 4 demo and was able to create a training (this software is sweet).  Anyhow, my company has Captivate 3 and I do not have this on my machine so instead of re-creating this training in Captivate

  • Issues with Workflow triggering

    Hi All, I am having a problem in the PO approval workflow. The problem is as follows. When I have multiple levels of release blocks, after each level of approvals the successive approver gets a workitem created in his inbox. If any approver rejects t