4 PDF reports from Single report in reports 10G

Hi All,
i want to generate 4 PDF report from one oracle report in reports 10G.
from the same query i want to generate 4 PDF with different order and result set based upon the query parameter at a single time.
exp: query fetch Some eng/spanish provider and client data. requirement is i want to spilt into 4 PDF:
Provider wise Eng.
Provider wise spanish.
Client wise english.
Client wise spanish.
Can anybody please help on this?
Regards
Abhishek

Hi All,
i am generating 4 PDF reports from one Oracle reports in 10 G.
i used RUN_REPORT_OBJECT built in 4 times with some different parameter list at a single time.
some time it generates but some time it generate 2 or 3 out of 4.
Can you anyone help me on this issue.
Regards,
Abhishek
Edited by: user651239 on Sep 22, 2008 10:16 PM

Similar Messages

  • Report from Single Dimention

    Hi Friends,
    i want to generate report from single dimension table with out using alias.is it possible?.If it is possible Please answer me.

    Hi,
    BI server needs one fact table to be joined to produce the query.
    If you are having at least one fact table in the RPD then the dimension table will try to create join with the fact table and produce the result with the dimension table only.
    But in the physical query it will have the fact table too.
    Or else you can create a dummy fact table in the RPD.
    Refer-
    http://www.rittmanmead.com/2009/08/oracle-bi-ee-10-1-3-4-1-reporting-on-non-transactional-dimension-values-equivalence-of-outer-joins/
    Please let me know further and hope this helped/ answered.
    Regards
    MuRam

  • Error in creating PDF's from 11g Fusion ware report server :: REP-0178

    Hello Friends,
    I am trying to create pdf files from the report server command line, It works fine when I run the command from ORACLE User but when I run it from any other user I get error
    REP-0178: Reports Server rep_001 cannot establish connection.
    Command line that I am using is :-
    /abc/home/rwclient.sh server=rep_001 report=/abc/home/auto.rdf destype=file desname=/abc/home/report001 desformat=pdf userid=${ID}
    I am using a personal copy of reports.sh in /abc/home/
    It is also working fine when I run it from the browser report server link, the only issue is it didn't work through command line for any user other than Oracle.
    OS : Linux x86_64
    Reprots : Fussion ware 11g
    Kind regards,
    Aashish Sharma

    Small update again,
    I skipped using the downloadable oc4j/j2ee and tried using the one that came with 10.2.0.1 installation (patched to 10.2.0.3)
    It starts up fine saying:
    07/03/28 21:31:27 Oracle Application Server Containers for J2EE 10g (9.0.4.1.0) initialized
    It started up all well with the downloadable latest containers too, but got different errors running the apex_fop.jsp file.
    well with the version that came with the database it says in the PDF file after I tried to generate it from a report:
    Error 500:
    java.lang.UnsupportedClassVersionError: Bad version number in .class file
    Anyone got any idea?

  • Calling Reports from forms after migrating to 10g

    Hi all,
    I have migrated forms to 10g. Now, few of those forms have a button_block where some buttons have a WHEN_BUTTON_PRESSED trigger, and in that they are calling the reports. Now I need to change it.
    I have the following logic in it.
    declare
         musername varchar2(20);
         mpassword     varchar2(20);
         mconnect      varchar2(20);
         mparameter  varchar2(50);
         mcommand      varchar2(120);
         malert      number;
    begin
              musername := Get_Application_Property(USERNAME);
              mpassword := Get_Application_Property(PASSWORD);
              mconnect  := Get_Application_Property(CONNECT_STRING);
              mparameter:= 'mreceipt_no='||:global.receipt_no||' mreceipt_category_code='||:global.category_code;
              mcommand  := 'r25run.exe module=report_name.rep userid='||musername||'/'||mpassword||'@'||mconnect||' '||rtrim(ltrim(mparameter));
              host(mcommand,NO_SCREEN);
    exception
         when others then
              message('error');
    end;No I need to change, the line
    mcommand  := 'r25run.exe module=report_name.rep userid='||musername||'/'||mpassword||'@'||mconnect||' '||rtrim(ltrim(mparameter));
    How do I use run_report_object for this??

    Hi
    here is a complete example on how to call a report from a parameter form 10g
    DECLARE
       PARAM_ID                                 PARAMLIST ;
       PARAM_NAME                           VARCHAR2(30) := 'REPORT_PARAMETER';
       ALRT                                         NUMBER;
       ERR_TXT                                   VARCHAR2(1000);
       repid                                         REPORT_OBJECT;
       v_rep                                        VARCHAR2(100);
       v_REP_SERVER_NAME       VARCHAR2(200);
       v_ip                                          VARCHAR2(100);
    BEGIN
           PARAM_ID := GET_PARAMETER_LIST(PARAM_NAME);
           IF NOT ID_NULL(PARAM_ID) THEN
              DESTROY_PARAMETER_LIST('REPORT_PARAMETER');
           END IF;
           v_REP_SERVER_NAME := REP_SERVER_NAME;
    BEGIN
            SELECT  PARAMETER_VALUE  -- this is the selection of the server ip stored into a tabel u could assign it into a variabel.
            INTO   v_ip
            FROM GENERAL_FIXED_PARAMETERS
           WHERE PARAMETER_ID = 'REPORT_SERVER_IP';
           EXCEPTION
           WHEN OTHERS THEN   
           Message ('OTHERS' || SQLCODE || ' And ' || SQLERRM);
           Message ('OTHERS' || SQLCODE || ' And ' || SQLERRM);     
    END;
           PARAM_ID := CREATE_PARAMETER_LIST(PARAM_NAME);
           ADD_PARAMETER(PARAM_ID,'PARAMFORM',TEXT_PARAMETER,'NO');   
           ADD_PARAMETER(PARAM_ID,'COPIES',TEXT_PARAMETER,:COPIES);
           ADD_PARAMETER(PARAM_ID,'P_DISPLAY',TEXT_PARAMETER,:DESTYPE);
           ADD_PARAMETER(PARAM_ID,'DESFORMAT',TEXT_PARAMETER,'pdf');
           ADD_PARAMETER(PARAM_ID,'group_id',TEXT_PARAMETER, :group_id);
             repid := find_report_object('WH_R01_GRP_ITEM');
             SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,v_rep_server_name);     
             v_rep := RUN_REPORT_OBJECT(repid,PARAM_ID);
      WEB.SHOW_DOCUMENT('http://'||V_IP||'/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?server='||v_REP_SERVER_NAME,'_blank');
    END;
    Hope this helps...
    Regards,
    Abdetu...

  • Call Oracle Reports from  Forms ver 9i or 10g

    Hi,
    Can somebody guide me, how to call Oracle Reports from the Oracle form 9i,
    Run_product is no more available into 9i & 10g, Run_report_object is not working with out put type "Screen" or "preview".
    What is the best way to call the reports from the form ??? pls help...
    Thanks in avdance.
    Jitesh ([email protected])

    You can use RUN_REPORT_OBJECT with CACHE type, and WEB.SHOW_DOCUMENT to view the document on the screen.
    In the Forms help you should find examples.
    If you have access to Metalink, have a look at Note:207396.1.

  • How to call a report from form in developer suite 10g

    i want to call report from a form that is developed in Builder 10g. Reprot is also built in Reports Builder 10g. I now want to run report through form.Please give me any solution.

    I am finding that this document is unhelpful also with respect to running a form which calls the report in the testing environment of Oracle Developer Suite. I have Googled for forms integration with reporting and most refer to this document, but it does not help.
    I have download and used the "run_report_object_doc" procedure they provided, along with a supporting function. And used that.
    This document indicates that if the sever is not specified then it will use the in-process server. This does not happen. When I do not specify the server I get the notorious "FRM-41211: Integration error: SSL failure running another product." I suspected that the in-process server is not getting called.
    When I look through the rwservlet.properties file I find that the servlet is configured with in=process "yes". I have since changed this file so that a server is actually named. I called it "local".
    This time a local.conf file is created, not a rep_local.conf file as indicated in the documentation. Anyhow when I try the form again I get the same FRM-41211 message.
    Alternatively, I have change the report invocation parameters to supply a server name "local". This time I no longer get the FRM-41211 message. I get the error FRM-41214: Unable to run report.
    When I use the servlet to get information, I get (can anyone see any setting that is a problem?):
    http://localhost:8889/reports/rwservlet/showenv?server=local
    OracleAS Reports Services - Servlet Environment Variables Return to Top
    KeyMapFile C:\DevSuiteHome_1\reports\conf\cgicmd.dat
    DBAUTH C:\DevSuiteHome_1\reports\templates\rwdbauth.htm
    SYSAUTH C:\DevSuiteHome_1\reports\templates\rwsysauth.htm
    server local
    DIAGNOSTIC yes
    traceopts undefined
    ERRORTEMPLATE C:\DevSuiteHome_1\reports\templates\rwerror.htm
    SERVER_IN_PROCESS yes
    COOKIEEXPIRE 30
    ENCRYPTIONKEY reports9i
    DIAGHEADTAGS undefined
    DIAGBODYTAGS undefined
    HELPURL undefined
    RELOAD_KEYMAP NO
    IMAGEURL http://localhost:8889/reports/rwservlet
    SINGLESIGNON yes
    OracleAS Reports Services - Server and Engine Environment Variables Return to Top
    PATH C:\DevSuiteHome_1\jdk\jre\bin\client;C:\DevSuiteHome_1\jlib;C:\DevSuiteHome_1\bin;C:\DevSuiteHome_1\jre\1.4.2\bin\client;C:\DevSuiteHome_1\jre\1.4.2\bin;C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\oracle\product\10.2.0\client_1\bin;C:\Program Files\CA\Dcs\DMScripting\;C:\Program Files\CA\DCS\CAWIN\;C:\CAisd\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\system32\nls;C:\WINDOWS\system32\nls\ENGLISH;C:\Program Files\ZipGenius 6\;c:\Program Files\CA\SharedComponents\ScanEngine;C:\PROGRA~1\CA\ETRUST~2;C:\Program Files\CA\Unicenter Software Delivery\BIN;C:\PROGRA~1\CA\SHARED~1\CAM\bin;C:\Program Files\CA\SharedComponents\ScanEngine;C:\Program Files\CA\SharedComponents\CAUpdate\;C:\Program Files\CA\SharedComponents\ThirdParty\;C:\Program Files\CA\SharedComponents\SubscriptionLicense\;C:\Program Files\CA\eTrustITM;c:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies\;C:\Program Files\Microsoft Office\Office10;C:\Program Files\CA\DSM\bin;c:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\DevSuiteHome_1\jdk\jre\bin
    DISPLAY
    LD_LIBRARY_PATH
    ORACLE_HOME C:\DevSuiteHome_1
    TNS_ADMIN
    NLS_LANG AMERICAN_AMERICA.WE8MSWIN1252
    USER_NLS_LANG
    RW C:\DevSuiteHome_1\reports
    REPORTS_PATH C:\DevSuiteHome_1\repadm61\srw;C:\DevSuiteHome_1\cgenr61\admin\crretc;C:\DevSuiteHome_1\cgenr61\admin;C:\DevSuiteHome_1\reports\templates;C:\DevSuiteHome_1\reports\samples\demo;C:\DevSuiteHome_1\reports\integ;C:\DevSuiteHome_1\reports\printers;
    REPORTS_TMP C:\Temp
    REPORTS_TAGLIB_URI /WEB-INF/lib/reports_tld.jar
    java.class.path C:\DevSuiteHome_1\j2ee\home\lib\ojsp.jar;C:\DevSuiteHome_1\reports\jlib\rwrun.jar;C:\DevSuiteHome_1\jlib\zrclient.jar
    sourceDir
    tempDir
    useDataCache
    ignoreDataParameter

  • Calling report from form on which IDS 10g is installed

    Dear All,
    I have a form which calls a report. I am able to run this form and report from my application server 10g. But before deploying it on the server I would like to test it from my pc where Developer suite 10g is installed. i.e running a report from the form in on IDS client pc. I have made changes in formsweb.cfg and default.env file. I am starting a report server from the command prompt using rwserver server=rep_oraclag_OraBi. But when I run the report it says that unable to run report.
    Regards
    Trusha

    Dear All,
    Thanks for the reply. I am able to run my report from the form through my application server which is installed on Linux. My question is how to run report on the development PC where IDS 10g is installed. Before deploying it on the server, I would like to test it from my development PC. Is there anyway I can do this? I have started on temporary report server using rwserver server=server_name. I have set path in formsweb.cfg and default.env. But when I run report from the form it says unable to run report. I am able to run all my forms on my development pc. But not able to run any report.
    Regards
    Trusha

  • How to seperate Power Pivot Data Model and Power Pivot Report from Single Workbook.

    HI  Team,
    Initially, We have created Power Pivot report in workbook, containing Source Data Model as well.
    Now, we want to convert workbook having model as Shared Data Model, and all report needs to be part of single workbook.
    I want to implement one of the below solution, but know how to do it.
    1. Separate and Export all Power Pivot report sheet into single Excel Workbook such that it will have all report sheets.
    2. Use Same Model as it is and delete reports from existing one after export to new excel workbook.
    OR
    Is there is any other way to avoid re-creation of reports again? I want to use same report but instead of Embedded Excel data source, I want to use shared data Source in excel.

    One option is to use one workbook as the data source(model) and other workbooks for the reports.  This works in the stand alone Excel and SharePoint versions of Power BI, but not yet in O365 Power BI version.
    There is no export functionality. You would have to copy the workbook and update data source references. I have never tried it, but in theory it should work :).
    Brad Syputa, Microsoft Reporting Services This posting is provided "AS IS" with no warranties.
    Hi Michael,
    Yes your answer is partially correct..thanks for reply, I am working on Power Pivot reports on SharePoint.
    However, below issues observed.
    1. There is No Export Functionality ( as you told)
    2. We can not copy report sheet from workbook1 (which has Data Model) to Workbook2 ( only for report) using Control + C (copy) and Control + V (paste) option.
    Or Move Power Pivot Table ..
    So, solution can be (as you said, unfortunately I tried it already but dint worked)
    1. Copied workbook with New Name - Workbook2.
    2. Go to Data -> I tried to change connection setting -> to use shared Data Model -> I could create new Pivot table using shared Data Model
    But, Still I could use earlier designed Power Pivot tables as it is, to point to shared data model.
    I don't want to re-design entire report. As my project workbook has plenty reports.... :)

  • How can I Generate two different reports from single execution of Test cases in NI teststand

    Hi,
    My requirement is to generate two different reports from NI teststand. One for the Logging of error descriptions and the other report is by default generated by the Teststand. How can i generate a txt file that contains error descriptions other than that mentioned in the default report?
    Solved!
    Go to Solution.

    Do you need to do that just for these two sequences but not for other sequences? I don't see a problem to use SequenceFilePostStepRuntimeError. Create this callback in both sequence files and configure them to log into the same file. SequenceFilePostStepRuntimeError callback is called after each step of the sequence file if it has runtime error. You can access the calling step error information via RunState.Caller.Step.Result.Error property. Take a look to attached example.
    The "other way" is useful if you need to log errors not for every step of the sequence file, but for some of them. This is more complex, because you need to create a custom step types for these steps. For the custom step you can create substeps (post-step in your case) which will be executed every time after step of this type executed. Then, this is you job to determine if error happened in the step, acces to step's error information is via Step.Result.Error property. 
    Also, be aware that step's post-expression is not executed in case of error in the step.
    Sergey Kolbunov
    CLA, CTD
    Attachments:
    SequenceFilePostStepRuntimeError_Demo.seq ‏7 KB

  • Cannot load report from server in Crystal Reports 2013 Viewer

    Hello,
    I am having trouble opening a report that is hosted on a Crystal Reports Server (2013) from the Crystal Viewer.  I've created and uploaded the reports using the report designer (version 2013).  The reports have been uploaded using the "Save As -> Enterprise" to save to my enterprise server.  This part works fine.  I then navigated to the Crystal Reports Viewer to open my report (that I just uploaded w/ the designer) from the server.  Depending on the report, one of two things happens:
    1.) I get a loading bar at the bottom right of the screen that says "Operation in progress . . ." followed by an error message:
    Unable to Refresh Report
    A problem occurred while refreshing on the server. The report may not be configured properly for refresh.
    Please contact your server administrator. (me)
    2.) I get a loading bar at the bottom right of the screen that says "Refreshing <file name of the report> (<server name>)" followed by... nothing.  The loading bar goes away and nothing happens.  It goes back to the screen that shows when the application first loads (blank canvas).
    I've taken some basic troubleshooting steps to try and rule out any potential issues that came to mind, but I've not been successful.
    Any help would be appreciated, thanks!

    Hi
    Check the below thread
    Crystal Reports 2013 data didn't refresh using OLE DB Provider for SQL Server
    With Regards
    Balaji Sampath

  • Remove a report from CUCM Cisco Unified Reporting

    Hello,
    I did a Unified CM Cluster Overview report in CUCM 8.6 (a cluster with 2 nodes, replication is good) but it took a long time. So I stopped the process.
    But when I enter the Unified CM Cluster Overview in Unified Reporting, it shows that generated report. And when I click it, it shows
    "ERROR : Fatal error encountered while validating report XML with schema".
    My question is : How can I delete a report from Cisco Unified Reporting ?
    I searched in Cisco Unified Reporting Administration Guide and I didn't found a way to do it.
    EDIT : Well the report was being generated, and the report can finally be displayed. But the question remains open. How can I delete this report ?
    Thank you for your answers.

    Hi Mohamed,
    Generate a new report, it will overwrite the old one. There is no option to delete it from cucm admin page. If you are concerned about the time it took to generate the report the first time then restart the Database Layer Monitor and Tomcat services before running a fresh report. Tomcat needs to be restarted from CLI of the Pub ( utils service restart Cisco Tomcat ), it is case sensitive.
    HTH
    Manish

  • Run the reports from out of the Reports Builder

    Hi, happy new year for everybody!
    I'm new on Oracle. I would like to know how can I run the reports created on Reports Builder (Developer Suite) without enter the Reports Builder. The ideia is to allow a common user access the report, enter the parameters and see the result.
    Thanks!
    Adriano

    Hello,
    You can start a Reports Server :
    http://download-uk.oracle.com/docs/cd/B14099_17/bi.1012/b14048/pbr_strt.htm
    2 Starting and Stopping OracleAS Reports Services
    then, execute the Reports using the Reports Servlet :
    http://download-uk.oracle.com/docs/cd/B14099_17/bi.1012/b14048/pbr_run.htm
    13 Running Report Requests
    Regards

  • Automatically generating multiple pdf reports from single(*.rpt) report file

    Post Author: msam
    CA Forum: General
    I would like to be able to automatically pass a parameter list to a single report, and have it automatically generate multiple reports (as saved pdf files), based on the parameter list.
    Is this possible?  If so, could someone point me to some documentation?  Thanks.

    What you probably need to do is generate each bio
    individually with the
    <cfdocument...> tag just the way you want them. And
    then use some of
    the advanced <cfpdf...> functionality that allows you
    to append two or
    more individual PDF's into a single large PDF.
    Here are some resources that describe some of the
    <cfpdf...> functionality.
    http://www.coldfusionjedi.com/index.cfm/2007/7/9/ColdFusion-8-Working-with-PDFs-Part-1
    http://www.coldfusionjedi.com/index.cfm/2007/7/10/ColdFusion-8-Working-with-PDFs-Part-2
    http://cfpdf.blogspot.com/
    http://cfpdf.blogspot.com/2007/06/cfpdf-action-merge_27.html
    http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=cfpdf_02.html

  • Create separate PDF files from MS Access Database report field

    In the development or update of pipe specifications the valve specifications (database records) that are associated with the piping specification are updated or corrected.  These revised valve specifications are then exported as a group through the Access Report Print to PDF file with the piping specification name for the file name.  Each separate valve specification within this single file needs to have its own PDF Valve spec file name so that each valve spec can be attached to project engineering documents or for purchasing.  All of the valves are coded in the in the database and projects with this general description, V-?????? with each question mark representing a descriptive part of the valve.  MS Access database has this V-?????? field name for every valve record in this large database.  The current practice is extract from the single PDF file page thumbnails and rename every extracted file.  With over 1000 valve records being updated, the task is time consuming.

    These are the settings.

  • Open PDF File from Link on SSRS Report REDUX

    Revisiting an earlier post here, because a solution is revealed. 
    The string below, when entered into the "Jump to URL" value on the Navigation tab for Textbox properties, works IN A REPORT PUBLISHED to a Report Server.  This would NOT work in the Visual Studio project on my desktop.
    ="
    FILE:\\somehost.com\SomeFolder\SomPDF.pdf"
    Unfortunately, it opens the PDF file on the same browser tab as the SSRS report that contains the link to the file. 
    Can anyone please suggest an alternative construction for the string that would force the file to open in either a new browser window or a new tab in the current window?

    How about trying this
    =
    "javascript:void(window.open('FILE:\\somehost.com\SomeFolder\SomPDF.pdf'))"

Maybe you are looking for

  • AIR 3.4 SDK Beta with iOS6 Support is missing BETA 2 update

    We are trying to get our application that uses native extensions working with iO6 and AIR 3.4.  I can see from the website that there was an update on August 7th, and the top links show that update in the link date: Ie: http://labsdownload.adobe.com/

  • Can someone explain the difference between TIER_WEB and TIER_WEBDEV

    Hi All, We have two sets of values in Context file as below. <TIER_ADWEB oa_var="s_isAdWeb">NO</TIER_ADWEB> <TIER_ADFORMS oa_var="s_isAdForms">NO</TIER_ADFORMS> <TIER_ADFORMSDEV oa_var="s_isAdFormsDev">NO</TIER_ADFORMSDEV> <TIER_ADWEBDEV oa_var="s_is

  • Implementing Security for BPEL Process

    Hi, We have a requirement to add security layer to BPEL processes (BPEL 10.1.3.4) deployed on WL 9.2. Client has asked us to implement PKI for WL domain. Please guide me regarding the same. Regards, Prabodh Mitra P.S. we are not using OWSM due to som

  • How do I delete a partition so that I recover the disk space?

    I partitioned my terabyte hard drive to run Mavericks (as well as Yosemite). I followed the Genius instructions from the local store and used Disk Utility to delete Macintosh HD Mavericks. The Disk Utility message said the partition was deleted but i

  • Outlook app

    Has anybody had problems with the new Outlook for iOS app? it will not recognise my username and password for my iCloud.com account. A Yahoo mail account works perfectly with the app. i Am using version 1.0.3