Schedule report and download generated PDF issue

Hi,
I am trying to run a rpt file, which is stored on CR server, on the CR server 2008, the generated pdf to be stored in inbox, and the pdf will be retrieved using IPDF class and inputstream. Ideally, whole process is running within one session using enterprise SDK. <br>
I am be able to run the rpt file by using schedule mechanism. Setting scheduleInfo to run it RightNow. I can access the generated PDF right after my program schedule(run) the rpt file without any problem. The PDF exists in both inbox and instance manager (as child of rpt file). <br>
Here comes the problem. When my program uses enterprise SDK to query file list in inbox immediately after schedule() call, the query returns no files. <br>
Furthermore, I then tried to inspect the instance of generated PDF file by query all PDF instances. I tried to print out the instance name by using <br>
               IPDF content = (IPDF)instanceObject;<br>
               System.out.println(((IFile)content.getFiles().get(0)).getName());<br>
, and realized that the generated file name is actually the rpt file!! which is really confusing (as I explicitly set query to be SI_KIND = 'Pdf'). <br>
To conclude my issue, after I schedule the rpt file to run now, I am able to view the generated pdf on CMC. The pdf (as it displayed in CMC) stored in inbox, and as an instance of the rpt file. However, I cannot retrieve PDF from enterprise SDK. I can retrieve the content of instance, but it's clearly not the pdf file I expected. <br>
I also tried to logoff session after I schedule the rpt, and re-login to retrieve pdf, and tried to explicitly commit() after schedule(). Both methods doesn't solve the problem. Any suggestion on what might happens or something I might have missing? Thanks in advance.<br>
p.s. I think it may be helpful if I give out the whole process flow as follow:<br>
1. log on the CR server, obtain session<br>
2. retrieve the rpt file.<br>
3. set schedule time (right now), format(pdf), destination(inbox), and parameter<br>
4. make schedule call: schedule(IInfoObjects).<br>
first option:<br>
5. query file list in inbox (SELECT * FROM CI_INFOOBJECTS WHERE SI_KIND = 'Inbox')<br>
6. retrieve file from file list and store the data into arraylist by using file's inputstream IPDF.getInputstream<br>
7 close all resources<br>
Outcome: no file in inbox (I can view pdf on CMC though)<br>
second option:<br>
5. query pdf instances belong to rpt file (FROM CI_INFOOBJECTS WHERE SI_PARENTID ="+ <br>report.getID() +" and SI_INSTANCE=1 and SI_KIND='Pdf'")<br>
6. retrieve file from instance list and store data into arraylist by using file's inputstream.<br>
7 close all resources<br>
Outcome: the instance is actually the rpt file rather than generated pdf. <br>
mlie<br>
Edited by: mlie on May 11, 2009 11:16 AM

Hi Praveen, <br>
Thanks for reply. <br>
It's my bad not showing all of my code. The whole piece of code is <br>
     String inboxQuery = "SELECT * FROM CI_INFOOBJECTS WHERE SI_KIND = 'Inbox'";<br>
          IInfoObjects ceInboxs = getDocument(ceInfoStore,inboxQuery);<br>
          IInfoObject ceInbox = (IInfoObject)ceInboxs.get(0);<br>
          <br>
          inboxQuery = "SELECT * FROM CI_INFOOBJECTS WHERE SI_PARENTID = " + ceInbox.getID();<br>
          <br>
          ceInboxs = (IInfoObjects)ceInfoStore.query(inboxQuery);<br>
I believe I don't need to include owner name because SDK will determine which inbox to retrieve automatically according to the user who login to CR server. <br>
However, to try all the possibility, I still appended the user id at the end of query, and still no luck. <br>
I am wondering if its got something to do with timing. Please advice. Thank you <br>
mlie

Similar Messages

  • Upload and download a PDF in BSP

    Hi All,
    I need to do the following funtionalityin BSP (business server page ).
    1)upload and download a PDF
    Pls anyone help me by providing the necessary code to do this .
    Thanks in Advance
    Rizwan

    Hi,
    This link is useful for U
    http://help.sap.com/saphelp_nw04/helpdata/en/eb/8c683c8de8a969e10000000a114084/content.htm
    http://wiki.sdn.sap.com/wiki/display/BSP/HandlingBinaryData
    Regards
    kk

  • Extract data from database tables and download in pdf and csv

    extract data from database tables and download in pdf and csv
    hi how can i re-write my old form procedure in adf java. the procedure used to extract data from diffirent table and dowload the data in pdf and csv.am not downloading image, i what to extract data from diffirent tables in my database and download that data in pdf and csv. i would like to write this in java adf.i just what direction am not asking anyone to do my work this is my learning curve
    the form code is
    function merge_header3 return varchar2 is
    begin
         return '~FACILITY DESCRIPTION~ACCOUNT NO~BRANCH CODE~BANK REF NO.~P/P/ AMOUNT~Postal Address 1~Postal Address 2~Box Postal Code~Dep. Date~Month~BANK NAME~BRANCH NAME~ACCOUNT TYPE~DESCRIPTION~OBJECTIVE DESCRIPTION';
    end;
    procedure download_file (i_pbat integer) is
      dir varchar2(80);
      file_name1 varchar2(80);
      file_name2 varchar2(80);
      appl_code varchar2(80);
      fil1 client_text_io.file_type;
      fil2 client_text_io.file_type;
      dat varchar2(1000);
      DATA VARCHAR2(1000);
      bvspro varchar2(100);
      ssch   varchar2(100);
      bvspro_total number(20,2);
      ssch_total   number(20,2);
      grand_total  number(20,2);
      cnt    integer;
      cursor pbat is
           select *
           from sms_payment_batches
           where id = i_pbat
      cursor pay  (pb_id integer) is
           select *
           from sms_payment_vw
           where pbat_id = pb_id
           order by subsidy ASC,programme,beneficiary_name
      cursor cgref (low varchar2) is
           select *
           from cg_ref_codes
           where rv_domain ='SMS'
           and rv_low_value = low
      success boolean;     
      begin  
           set_application_property(cursor_style,'busy');
           appl_code := sms_global.ref_code('SMS','APP_CODE','SMS',0);
        dir       := sms_global.ref_code('SMS','PAY_DIR','c:\sms\batch_payments',0);
             success := webutil_file.create_directory(dir);
         if webutil_file.file_is_directory(dir) then
             null;
    --         message ('directory exists');
        else
    --                  message ('create directory ');
             success := webutil_file.create_directory(dir);
    --         if success then        message ('directory exists');    end if;
        end if;     
        for c_pbat in pbat loop
             file_name1 := dir ||'\' || appl_code||c_pbat.batch_number||'-'||to_char(c_pbat.batch_dt,'yyyymmdd')||'pay.txt';
             file_name2 := dir ||'\' || appl_code||c_pbat.batch_number||'-'||to_char(c_pbat.batch_dt,'yyyymmdd')||'merge.txt';
    --message('create files ');
    --         fil1  := client_text_io.fopen (file_name1,'W');
    --         fil2  := client_text_io.fopen (file_name2,'W');
        fil1  := client_text_io.fopen (file_name1,'W','');
        fil2  := client_text_io.fopen (file_name2,'W','');
                   dat :=                       'FROM ACCOUNT NUMBER'
                                                                ||'~'||'FROM ACCOUNT DESCRIPTION'
                                                                ||'~'||'MY STATEMENT DESCRIPTION'
                                                                ||'~'||'BENEFICIARY ACCOUNT NUMBER'
                                                                ||'~'||'BENEFICIARY SUB ACCOUNT NUMBER'        
                                                                ||'~'||'BENEFICIARY BRANCH CODE'
                                                                ||'~'||'BENEFICIARY NAME'
                                                                ||'~'||'BENEFICIARY STATEMENT DESCRIPTION'
                                                                ||'~'||'AMOUNT';
             --     client_text_io.put_line(fil1,dat);
             bvspro:= null;
             ssch  := null;
             cnt := 0;     
             dat := '~'||lpad('~',16,'~');
             for c_pay in pay(c_pbat.id) loop
    --message('cpay loop ' || cnt);              
               if bvspro is null then
                     dat := lpad('~',16,'~');
                     dat := utility.put_field(1,c_pay.programme,dat,'~');     
               client_text_io.put_line(fil2,dat);
               dat := utility.put_field(1,c_pay.subsidy,dat,'~');
               client_text_io.put_line(fil2,dat);
               dat := merge_header3;
                     client_text_io.put_line(fil2,dat);
                     bvspro := c_pay.programme;
                     ssch := c_pay.subsidy;
                     grand_total := 0;
                     bvspro_total := 0;
                     ssch_total := 0;
               end if;
               if bvspro <> c_pay.programme then
                     dat := lpad('~',16,'~');
                     dat := utility.put_field(5,ssch_total,dat,'~');
                     dat := lpad('~',16,'~');
                     dat := utility.put_field(5,bvspro_total,dat,'~');
               dat := utility.put_field(1,'Total:' || bvspro,dat,'~');
                     client_text_io.put_line(fil2,dat);
                     dat := lpad('~',16,'~');
               client_text_io.put_line(fil2,dat);
                     dat := utility.put_field(1,c_pay.programme,dat,'~');     
               client_text_io.put_line(fil2,dat);
                     bvspro := c_pay.programme;
               dat := utility.put_field(1,c_pay.subsidy,dat,'~');
               client_text_io.put_line(fil2,dat);
               dat := merge_header3;
                     client_text_io.put_line(fil2,dat);
                     bvspro := c_pay.programme;
                     ssch := c_pay.subsidy;
                     bvspro_total := 0;
                     ssch_total := 0;
                     cnt :=0;
             end if;                           
               if ssch <> c_pay.subsidy then
                     dat := lpad('~',16,'~');
                     dat := utility.put_field(5,ssch_total,dat,'~');
                     dat := lpad('~',16,'~');
               client_text_io.put_line(fil2,dat);
               dat := utility.put_field(1,c_pay.subsidy,dat,'~');
               client_text_io.put_line(fil2,dat);
               dat := merge_header3;
                     client_text_io.put_line(fil2,dat);
                     ssch := c_pay.subsidy;
                     ssch_total := 0;
                     cnt :=0;
             end if;                           
            bvspro_total := bvspro_total + c_pay.amount;
            ssch_total   := ssch_total   + c_pay.amount;              
                  grand_total  := grand_total  + c_pay.amount;              
            cnt := cnt +1;
    --message('bfore write file 2 ' );              
            client_text_io.put_line(fil2
                                   ,cnt
                            ||'~'|| c_pay.beneficiary_name
                                                                ||'~'||c_pay.BENEFICIARY_ACCOUNT_NUMBER ||''            
                                                                ||'~'||c_pay.BRANCH_CODE             ||''           
                                                                ||'~'|| c_pay.BENEFICIARY_STATEMENT_DESC            
                                                                ||'~'|| c_pay.AMOUNT                                
                            ||'~'|| c_pay.address_line1
                            ||'~'|| c_pay.address_line2
                                                    ||'~'|| c_pay.postal_code
                                                    ||'~'|| TO_CHAR(c_pay.deposit_date,'DD-Mon-YYYY')
                                                    ||'~'|| c_pay.month
                                                    ||'~'|| c_pay.bank
                                                    ||'~'|| c_pay.bank_branch
                                                    ||'~'|| c_pay.account_type
                                                    ||'~'|| c_pay.subsidy
                                                    ||'~'|| c_pay.programme)
                  DATA :=                                  c_pay.FROM_ACCOUNT_NUMBER                   
                                                                ||'~'||c_pay.FROM_ACCOUNT_DESCR                    
                                                                ||'~'||c_pay.MY_STATEMENT_DESCR                    
                                                                ||'~'||c_pay.BENEFICIARY_ACCOUNT_NUMBER
                                                                ||'~'
                                                                ||'~'||c_pay.BRANCH_CODE            
                                                                ||'~'||c_pay.BENEFICIARY_NAME                      
                                                                ||'~'||c_pay.BENEFICIARY_STATEMENT_DESC            
                                                                ||'~'||c_pay.AMOUNT;                                
            DATA := REPLACE(DATA, ',' , ' ' );
            DATA := REPLACE(DATA, '~' , ',' );
    --message (cnt ||' ' || data);       
    --message('bfore write file 1 ' );              
                  client_text_io.put_line(fil1, data);
             end loop;
    --message ('end of write');         
                 dat := lpad('~',16,'~');
                 dat := utility.put_field(6,ssch_total,dat,'~');
                 dat := lpad('~',16,'~');
           dat := utility.put_field(1,'Total:' || bvspro,dat,'~');
                 dat := utility.put_field(5,bvspro_total,dat,'~');
              client_text_io.put_line(fil2,dat);
              dat := lpad('~',16,'~');
           client_text_io.put_line(fil2,dat);
           dat := utility.put_field(1,'Grand Total:' ,dat,'~');
                 dat := utility.put_field(5,grand_total,dat,'~');
              client_text_io.put_line(fil2,dat);
             -- close file
    for i in 1..50 loop  
           if substr(i,-1) = 0 then
                 message ('flush ' || i);
           end if;                 
                  client_text_io.put_line(fil1, lpad(' ',2000));
                  client_text_io.put_line(fil2, lpad(' ',2000));
                  client_text_io.put_line(fil1, lpad(' ',2000));
                  client_text_io.put_line(fil2, lpad(' ',2000));
    end loop;
             client_text_io.fclose(fil1);
             client_text_io.fclose(fil2);
        end loop;
       set_application_property(cursor_style,'default');
        exception
             when others then
                  message(sqlcode ||' ' ||sqlerrm);
       end download_file;    i try this but this code onlydownload image not data from database tables
        public void downloadImage(FacesContext facesContext, OutputStream outputStream)
            BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
            // get an ADF attributevalue from the ADF page definitions
            AttributeBinding attr = (AttributeBinding) bindings.getControlBinding("DocumentImage");
            if (attr == null)
                return;
            // the value is a BlobDomain data type
            BlobDomain blob = (BlobDomain) attr.getInputValue();
            try
            {   // copy the data from the BlobDomain to the output stream
                IOUtils.copy(blob.getInputStream(), outputStream);
                // cloase the blob to release the recources
                blob.closeInputStream();
                // flush the output stream
                outputStream.flush();
            catch (IOException e)
                // handle errors
                e.printStackTrace();
                FacesMessage msg = new FacesMessage(FacesMessage.SEVERITY_ERROR, e.getMessage(), "");
                FacesContext.getCurrentInstance().addMessage(null, msg);
            }

    You should ask your forum in the ADF-forum.

  • Login and download a .pdf file

    The company I work for has electronic manuals in .pdf format on a company website. Some manuals are updates once per week.
    Is it possible to have Automator:
    1. Automatically login to the company website
    2. Locate and download the .pdf files
    3. Save the files in a specified location on my computer.
    4. Logoff the website.
    Thanks.

    You can create a pretty great login system using nothing more
    than the
    server behaviors that ship with Dreamweaver. Pick your server
    model and
    read the docs in the HELP section to get started.
    Nancy Gill
    Adobe Community Expert
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner''s
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "skydogg" <[email protected]> wrote in
    message
    news:f50ph0$vn$[email protected]..
    > How is it going guys? I hope things are well.
    >
    > I need to develop a client login for a health and
    fitness assessment
    > program
    > website. In the website, I need the customer to have the
    ability to login
    > and
    > then view, download or print a PDF file with their
    specific result
    > information
    > from within the page. I plan to use tables developed in
    Access or SQL ,
    > unless there is a less complex way of doing it? The PDF
    template is
    > already
    > created. We just enter the results of all the test for
    the client and
    > save it
    > for each customer.
    >
    > Please help me out.
    >
    > With great thanks,
    >
    > skydogg
    >

  • Call first report in another report and download the ouput of first report

    Hi Experts ,
    Ther is 1 ALV Report which gives ouput.
    i need to call first report in second report and copy the output of first report to itab in second report and download that itab to excel in second report.
    Pls if anybody knows the solution reply as soon as possible.
    regards,
    Imran

    Moderator message - Cross post locked
    Rob

  • Generate SSRS Report and save as PDF in SharePoint

    Hi,
    I am working on a SharePoint 2010 Visual WebPart that lets a user click a button to generata a SSRS report and save the report in a SharePoint Library as a PDF file.  Code is mentioned below:
    try
    string siteContext = SPContext.Current.Web.Url;
    string strReport = siteContext + "/Reports/Quote/Quote.rdl";
    WR_SSRS.ReportExecutionService rs = new WR_SSRS.ReportExecutionService();
    rs.Url = siteContext + "/_vti_bin/ReportServer/ReportExecution2005.asmx";
    rs.Credentials = System.Net.CredentialCache.DefaultCredentials;
    byte[] result;
    string format = "PDF";
    string historyID = null;
    string devInfo = "<DeviceInfo><Toolbar>False</Toolbar></DeviceInfo>";
    WR_SSRS.ParameterValue[] parameters = new WR_SSRS.ParameterValue[3];
    parameters[0] = new WR_SSRS.ParameterValue();
    parameters[0].Name = "EnqID";
    parameters[0].Value = enqID.ToString();
    parameters[1] = new WR_SSRS.ParameterValue();
    parameters[1].Name = "QuotationID";
    parameters[1].Value = quoteID;
    WR_SSRS.DataSourceCredentials[] credentials = null;
    string showHideToggle;
    string encoding;
    string mimeType;
    WR_SSRS.Warning[] warnings;
    WR_SSRS.ParameterValue[] reportHistoryParameters;
    string[] streamIDs;
    WR_SSRS.ExecutionInfo execInfo = new WR_SSRS.ExecutionInfo();
    WR_SSRS.ExecutionHeader execHeader = new WR_SSRS.ExecutionHeader();
    string SessionId = null;
    string extension;
    rs.ExecutionHeaderValue = execHeader;
    execInfo = rs.LoadReport(strReport, historyID);
    rs.SetExecutionParameters(parameters, "en-gb");
    SessionId = rs.ExecutionHeaderValue.ExecutionID;
    result = rs.Render(format, devInfo, out extension, out mimeType, out encoding, out warnings, out streamIDs);
    execInfo = rs.GetExecutionInfo();
    using (SPSite site = new SPSite(SPContext.Current.Site.ID))
    using (SPWeb web = site.OpenWeb())
    web.AllowUnsafeUpdates = true;
    SPFolder folder = web.Folders[siteContext + "/Quotes"];
    string filename = string.Concat(quoteID, ".pdf");
    //remove old copies
    SPList lib = web.Lists["Quotes"];
    foreach (SPListItem i in lib.GetItems())
    if (i.Name == filename)
    i.Delete();
    break;
    SPFile file = folder.Files.Add(filename, result);
    SPListItem item = file.Item;
    item["EnquiryID"] = enqID.ToString();
    item["FinalQuote"] = "No";
    item.Update();
    web.AllowUnsafeUpdates = false;
    catch (Exception ex)
    LogError(ex.Message);
    The WebPart works fine in my local server and even on another development testing server.  However, once deployed to the live server that has claims authentication it stops working and throws an error that says:
    "Client found response content type of 'text/html; charset=utf-8', but expected 'text/xml'. 
    The request failed with the error message: 
    <RSError xmlns="http://www.microsoft.com/sql/reportingservices"><MoreInformation><Message>An unknown error occurred with the Reporting Services endpoint on this SharePoint site. Contact the SharePoint site administrator for help.</Message></MoreInformation></RSError> 
    If I open the report manually in SharePoint Site, it works fines it even works fine when try to view in a WebPart. 
    Can someone help me with this ?
    Regards, Vikram

    Hi Vicky,
    Based on the error message, it is related to the service account for reporting service.
    If the Report Server service runs under a built-in account such as NetworkService, the Grant database access option in SharePoint Central Administration will not work correctly.
    Configure the service account to run under a domain user account as follows:
    1. Start the Reporting Services Configuration tool and connect to the report server.
    2. On the Service Account page, click Use another account, enter a domain user account, and click Apply.
    3. Click Web Service Identity, for Report Server, click New, type an application Restart the Report Server service.
    Here is a detailed MSDN article for your reference:
    http://msdn.microsoft.com/en-us/library/ms159704.aspx
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • Data missing in scheduled report via email as pdf and excel

    Hi,
    I scheduled a webi report to email as pdf and excel, I am getting the mail but on pdf and excel only I can see the report header, values are missing
    Regards
    Aflal

    how come?
    do you have any parameters in this report?
    can you tell exactly the steps u r following doing
    thanks
    Amr

  • Refreshing deski reports and saving in pdf format

    I am generating pdf from deski report. I am using BO-XI and Adobe Reader 8. When I am navigating through bookmarks on pdf ( charts and tables) view is zooming in. I have reset the Edit -> preferences ->page display -> page layout to 'single page continuous'  and Zoom to 100% on Adobe Reader. When I open the report it will be 100% first time and when I navigate through report. It is zooming in to 48%. Need help on setting BO report to 100% Zoom with PDF format.
    Edited by: Sunandan Soora on Mar 3, 2009 11:47 PM

    Hi Sunandan,
    According to the BOXIR2 supported platform guide Acrobat reader version 8 is not supported with BOXIR2.
    Following are the versions which are supported.
    Acrobat Reader Version 5.0.
    Acrobat Reader version 7.0.
    Could you please test the issue witht he supported version.
    Regards,
    Sarbhjeet Kaur

  • Schedule reports and wait until the report complete

    I have wrote a java program to call BO SDK to schedule several crystal reports (same report, run at once with different parameters) to an unmanage disk. The program run successfully and can generate the reports. I would like to add an email notification function once all the reports are generated. How can I know the status of all the reports is completed?
    Does anyone know the answer? Many thanks.

    Hi Grace,
    BO CMC has feature for e-mail notification
    goto CMC
    navigate to that report.
    rigth click>> Manage->>Default Settings-->>Notification. (Email Notification: )
    Email notification based on:
          A job has been run successfully .
                      Configure notification message
                                               Use the Job Server's defaults
                                               Set the values to be used here:
        A job has failed to run 
                       Configure notification message
                                            Use the Job Server's defaults
                                            Set the values to be used here:
    I dont know about doing all this through SDKs but you can try doing this step by step frist through CMC and then going for infovie and then your java program.
    See if this could achieve your reqiurements
    Thanks,
    Praveen.

  • Report and Layout Import Wizard issue

    Running SAP B1 v8.82 PL04. RDC into the client server.
    I'm getting an issue when importing a report.  I get all the way to clicking the "Finish" button and it never loads to the next screen (telling me if the import was successful or not).  When I go to the location I specified for the report, it appears there but with a different icon and when I click it shows me an error: "No matching records found 'Queries' (OUQR) (ODBC -2028) [Message 131-183]".
    Narrowed down the issue a little:
    - Happens for any report I try to import
    - Happens for both file types (.rpt / .b1p)
    - The wizard works in the other databases on the server
    - Same issue when I try on different computers with different log ins
    There didn't seem to be any major event that triggered the issue.  I was in the middle of importing a few reports, and imported a couple successfully, when all of the sudden the issue occurred.
    You can also refer to the video link I've attached below which is a complete walk-through of the issue.  Any help on this is greatly appreciated, this is really holding me up. Thanks in advance!
    -Andrew
    http://screencast.com/t/g88C39K78Zgs

    Verifique a SAP Note 1532509.
    Solution
    Please run the below query and if it returns results please Go to the PEQ page mentioned below or log a support message via SAP Service
    Marketplace, and attach the results of the query.
    select * from CDPM where ObjectType = 232 and ObjectKey not in (select doccode from rdoc) order by permid
    Select * from USR3 where PermId
    not in (Select distinct Absid from OUPT union Select distinct cast(PermId as nvarchar(50) )from CDPM)
    the solution to this note can be found at:
    http://wiki.sdn.sap.com/wiki/display/PEQ/Can%27t+import+CR+template+into+B1
    By using

  • HOW-TO list scheduled reports and their frequency

    Is there a way to get a list of scheduled reports with their frequency and recipients? Thanks in advance.

    You could do this either with Auditor (and Audit reports) or with Query Builder.
    The code below (for Query Builder) is an example you could use:
    SELECT
    SI_NAME, SI_SCHEDULEINFO.SI_SUBMITTER,
    SI_PARENTID, SI_KIND, SI_NEXTRUNTIME,
    SI_PROCESSINFO.SI_DBNEEDLOGON,
    SI_PROCESSINFO.SI_LOGON_INFO,
    SI_PROCESSINFO.SI_PROMPTS,
    SI_PROCESSINFO.SI_RECORD_FORMULA,
    SI_FORMAT_INFO, SI_DEPENDENCIES,
    SI_SCHEDULEINFO.SI_DESTINATION
    FROM
         CI_INFOOBJECTS
    WHERE
    SI_RECURRING = 1

  • Firefox crashes when I try and download a pdf. eMac 10.4 1.25 GHz PPC G4

    when on a site and one can download a pdf, firefox crashes.

    This happens often and never works. It did work on 10.39 but not on 10.4

  • I have a spreadsheet file in apple's numbers that I use as a grade sheet.  I can generate an individual student's report and email a pdf version of this report to the student.  Is there anyway to automate this process to the entire spreadsheet?

    ?

    Hi Matt,
    Similar answer, as well. My first thought on reading the question was 'mail merge', as it was with Ed's question.
    But since you're already generating the individual reports using Numbers, 'printing' those to a PDF file and attaching the file to an email message would seem a better route to go.
    That should be doable using either Automator or AppleScript, but my expertise with either of those is about the same level as is was when I responded to Ed's question. I'll wish you luck, and leave this to the Automator or AppleScript experts.
    Regards,
    Barry
    PS: I'd suggest you prepare a copy of the document with the names (and perhaps the marks/grades) replaced with anonymous ones. I suspect a look at the actual file will be necessary to get a handle on its structure.
    B.
    Message was edited by: Barry (Added PS)

  • Oracle Reports 11g output in pdf issue

    We are upgrading Oracle Forms and Reports from 10g to 11g R2. After moving the reports to 11g, the report layout is completely garbled/broken when it is shown as PDF (opened with adobe reader XI and older versions).
    desformat=pdf
    destype=cache
    Output in HTML format is showing correctly.
    desformat=html shows up ok.
    Server: AIX 6.1
    Weblogic 10.3.6
    Java SDK : 1.6
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 – Production
    Any help is greatly appreciated.
    Thank you.

    Are you using Oracle Forms and Reports 11.1.2.1.0 (the latest version of Forms/Reports 11gR2)? If yes, there is a known bug in all platforms except Linux where there are PDF viewing issues with the reports. According to My Oracle Support (MOS) note 1522543.1, this note goes into greater detail about the bug. It mentions to download Patch 16046595 from MOS. Apply this patch to your WebLogic domain, and it should fix the problem. When downloading the patch, make sure you are downloading the one for AIX as there are specific versions of the patch just for Solaris and Windows.
    Before installing this patch (or installing any Oracle patch), I would do the following:
    1. Review the README file which is included in the patch download.
    2. Make a backup of your Middleware home.
    To install the patch:
    1. Download and unzip the patch into the filesystem. Let the extracted patch location be called PATCH_TOP.
    2. Shutdown all WebLogic servers and instances (OPMN).
    3. Set the ORACLE_HOME variable to be the location where your Oracle home is for Forms and Reports.
    4. Append the PATH variable to include $MW_HOME/oracle_common/OPatch
    5. Go to $PATCH_TOP/16046595
    6. Run: opatch apply (if that does not work, try ./opatch apply)
    7. Type in 'y' when it asks you if the system is ready for patching.
    8. When the patch is successfully installed, start up OPMN and your WebLogic servers.
    9. Test the issue to see if the PDF report comes out like it should.
    Thanks,
    Scott (PITSS)

  • Report will not generate PDF only the XML output.  View XML icon disabled

    I created a PDF format report.
    When the report completes, View Output shows XML code not the PDF output.
    View XML button is disabled from Diagnostic on view request screen.
    Any thoughts. All settings are the same as when other XML to PDF reports are created. Not sure why this one is not working.
    Thanks

    I'm afraid this is not an installation issue, it rather sounds and application server one, at the operative level.
    I suggest you to post your thread at the Fusion Middleware or Developer Tools forums.
    You didn't provide any OS nor Oracle / AS version, I suggest you to specify this information when posting in future threads.
    ~ Madrid.

Maybe you are looking for

  • About BIC mapping designer

    Hi Guys, Can anybody pls give me overview on BIC mapping designer?   Is that mandatory in seeburger related scenarios? Do i need to have the access to accomplish my business requirements Because Seeburger has already some default mapppings if i need

  • Unable to Mount "Mac OS standard" Volumes

    I am unable to mount volumes of file system "Mac OS standard." In this case I am trying to mount an image I made of a Starcraft BroodWars CD, but my computer claims that the file is damaged. However it says this of all of my saved images and I find t

  • Database path error in jsp in online

    Error msg is java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Not a valid file name. my coding is Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); String accessFileName = "http://www.xyz.mobi/dbSample"; //its your ms-access file name wi

  • Aborting uploads through Apache/Weblogic bridge

    Hi, I have an application to which people should be able to upload files, however only of a certain size. So if I detect that the file is too large (based on Content-Length), I return an errorpage and don't read the data from the browser. This is all

  • Ez won't export my recordings to itunes

    I am trying to record vinyl records using 'ion duodeck' and EZ software which puts (or used to) the recordings into my itunes folder on my windows PC. I haven't done any for a few months, and have updated itunes in that time. Now EZ isn't saving the