OBIEE 11.1.1.6.12 - save analysis in Excel file into Windows share folder on daily basis

Hi all,
how do I save analysis in Excel file into Windows share folder automatically on daily basis? Also my need is to automatically set prompt date in analysis as "sysdate - 1" (yesterday) before saving. Is it possible at all?
OBIEE 11.1.1.6.12

Set the report level filter using date
as current_date-1
to save file check this OBIEE 11g – Export To The File System : Total Business Intelligence

Similar Messages

  • HP Officejet Pro 8500 A909g - doesn't save a scanned PDF file on Windows 8.1 64 bit

    I have just purchased a new PC with windows 8.1 and sucessuly installed the driver from here:
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?os=4158&lc=en&cc=us&dlc=en&sw_lang=&product=3752...
    I can print.
    I have properly set up the digital filing to a network folder.
    when I scan a documet a PDF file is generated in the network location howver it is 0 bites in size.
    please help me.

    Hi @kitesquid,
    Welcome to the HP Forums!
    I understand that your HP Officejet Pro 8500 A909g, does not save a scanned PDF file on Windows 8.1 64 bit. I am sorry to hear this, but happy to help!
    To verify the printer's hardware is functional, are you able to make copies from the scanner glass? Copying a Multipage Original.
    In the meantime, please try our HP Print and Scan Doctor, and let me know the results!
    Hope to hear from you soon!  
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • How to forbidden to save report in Excel files

    Hi,
    I use Edge BO 3.0.
    In WEB Intelligence report, is it possible to forbiden to users to save data in an excel file ?
    I created an acces level and I denied for Webi report the rules :
    Export the report data
    save as Excel files
    save as CSV files
    I just allow users to save as PDF files.
    I created a group and give this acces level to this group for Web Intelligence application.
    But my users can allways save data in Excel files...
    What's wrong ?
        Thank you
             Michel  (from FRANCE)

    Hi,
    Following solution might help you to resolve the issue.
    In BusinessObjects Enterprise XI, users can save Web Intelligence reports as portable document format (PDF), Excel, comma-separated value (CSV), and other formats to their local computer. It is necessary to restrict this right for a group of users by disabling the Save As option.
    Resolution
    Here are the steps:
    Log on to the Central Management Console as administrator.
    Click Folder > folder containing report > Rights tab > Add/Remove.
    Add the appropriate group. Click OK. The User Folders window appears.
    Click Advanced in the Net Access Column.
    Clear the <group name> will inherit rights from its parent groups option.
    Clear the <folder name> will inherit rights from its parent folders option.
    Expand the Web Intelligence Document section.
    Click the Explicitly Denied option for the right to Export the report"s data.
    Click Apply > OK.
    When the Web Intelligence report is opened, the users will no longer see the Save As option.

  • Importing excel file into OBIEE 10.1.3.4

    Hi,
    I am trying to import excel file into OBIEE and would like to use it as a data source. Fro this, I have already created an excel file (using MS excel 2007) with some sample data and named the data ranges with in the excel sheet as well. and I have placed that file under C:\ drive directly. And then created DSN and made sure that it points to the excel file.
    When I go to Administration tool -> Import from Database -> seelct ODBS 3.5 and selected my DSN and clicked OK. Here I have not provided the user name and password (though I have provided the username/pwd as Administrator it is not taking).
    when I click ok, it is throwing the following error :
    nQSerror:16001 ODBC error state : IM006 code: 0 message: [Microsoft][ODBCDriver Manager] Driver's SQLSetConnectAttr failed. [nQSError: 16001]ODBC error state: S1000 code - 5015 message: [Microsoft][ODBC Excel Driver] External table is not in the expected format
    Pls help me in rectifying this error. Many thanks in advance.
    Thanks
    Edited by: 858747 on 25-Aug-2011 05:47
    Edited by: 858747 on 25-Aug-2011 05:48

    Hi, I am facing the same issue.
    I am using OBIEE 11g with MS Excel 2007 file as source. I have created ODBC Driver by selecting Microsoft excel driver.
    NQSAdminTool.log gives error:
    ODBC error state: S1000 code: -5015 message: [Microsoft][ODBC Excel Driver] External table is not in the expected format
    The Admin tool gives error: "Unable to connect database using connection pool", when I try to 'update row count' in Physical Layer.
    Any quick resolution to this?
    Many thanks in advance.
    Edited by: user1603699 on 25-Oct-2011 09:28

  • Save and Close excel file opened through OLE

    Hi,
    I have opened an excel file on my desktop and edited it.Now I have to save this file and close it.
    Right now , I am manually saving the file and closing it. So please give the steps to automate the process of saving and closing .
    Please find the code below for opening a file and editing.
    report zkntest2.
    INCLUDE: <line>,
             <icon>,
             <symbol>,
             ole2incl.
    DATA: g_excel_app             TYPE ole2_object,
          g_excel_workbook        TYPE ole2_object,
          g_excel_worksheet       TYPE ole2_object,
          g_excel_usedrange       TYPE ole2_object,
          g_excel_cell            TYPE ole2_object,
          g_excel_return          TYPE ole2_object.
    data :H_MAPL TYPE OLE2_OBJECT,         " list of workbooks
          H_MAP TYPE OLE2_OBJECT,          " workbook
          H_ZL TYPE OLE2_OBJECT,           " cell
          H_F TYPE OLE2_OBJECT.            " font
    CONSTANTS:c_appl(17)              TYPE c VALUE 'Excel.Application'.
    SELECTION-SCREEN BEGIN OF BLOCK blk1 with frame title text-001.
    PARAMETERS p_ofile LIKE rlgrap-filename default 'C:\layout.xls'.
    SELECTION-SCREEN END OF BLOCK blk1.
    CREATE OBJECT g_excel_app c_appl.
    CALL METHOD OF g_excel_app 'Workbooks' = g_excel_workbook.
    CALL METHOD OF g_excel_workbook 'Open'
      EXPORTING #1 = p_ofile.
    SET PROPERTY OF g_excel_app 'Visible' = 1.
    CALL METHOD OF g_excel_app 'Workbooks' = H_MAPL.
    PERFORM FILL_CELL USING  4 9 1 'Kiran'(001).
    PERFORM FILL_CELL USING  5 9 1 'Ref#'(002).
    PERFORM FILL_CELL USING  6 9 1 'Claim#'(003).
    PERFORM FILL_CELL USING  7 9 1 'Location'(004).
    FREE OBJECT g_excel_app.
    FORM FILL_CELL USING I J BOLD VAL.
      CALL METHOD OF g_excel_app 'Cells' = H_ZL EXPORTING #1 = I #2 = J.
      SET PROPERTY OF H_ZL 'Value' = VAL .
      GET PROPERTY OF H_ZL 'Font' = H_F.
      SET PROPERTY OF H_F 'Bold' = BOLD .
    ENDFORM.                    "FILL_CELL

    Try add this code below.
      CALL METHOD OF G_EXCEL_APP 'ActiveWorkbook' = G_EXCEL_WORKBOOK.
      CALL METHOD OF G_EXCEL_WORKBOOK 'SaveAs' EXPORTING #1 = '1.xls'.
      CALL METHOD OF G_EXCEL_WORKBOOK 'Close'.
      CALL METHOD OF G_EXCEL_APP 'Quit'.
      FREE G_EXCEL_APP.

  • Save and close excel file using C#.

    I am not sure why I get the following error for the below code.  Everything seems to work otherwise.
    Error found: System.Runtime.InteropServices.COMException (0x8002000B): Invalid index. (Exception from HRESULT: 0x8002000
    B (DISP_E_BADINDEX))
    Application _application;public void CloseFile(string filename, bool isSaveChanges)
    _application.Workbooks[filename].Close(SaveChanges: isSaveChanges);

    I' work with excel files with connection you can save data and  close connection Easy.
     //connection String for xls file format.
                        if (fileExtension == ".xls")
                            excelConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + fileLocation + ";Extended Properties=\"Excel 8.0;HDR=Yes;IMEX=2\"";
                        //connection String for xlsx file format.
                        else if (fileExtension == ".xlsx")
                            excelConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + fileLocation + ";Extended Properties=\"Excel 12.0;HDR=Yes;IMEX=2\"";
                        //Create Connection to Excel work book and add oledb namespace
                        OleDbConnection excelConnection = new OleDbConnection(excelConnectionString);
                        excelConnection.Open();
    DataTable dt = new DataTable();
                        dt = excelConnection.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
                        if (dt == null)
                            return null;
                        String[] excelSheets = new String[dt.Rows.Count];
                        int t = 0;
                        //excel data saves in temp file here.
                        foreach (DataRow row in dt.Rows)
                            excelSheets[t] = row["TABLE_NAME"].ToString();
                            t++;
                        OleDbConnection excelConnection1 = new OleDbConnection(excelConnectionString);
                        string query = string.Format("Select * from [{0}]", excelSheets[0]);
                        using (OleDbDataAdapter dataAdapter = new OleDbDataAdapter(query, excelConnection1))
                            dataAdapter.Fill(ds);
    Best Regards
    Hakim.

  • How to continuous data acquisition and save to an excel file using vc++

    Hi,
    I’m trying to build an MFC application with MSVC++6, where I would continuously acquire
    samples from 2 channels of a USB-6289. I’m using the DAQmx C functions.  I use the following codes to continuously get data:
    DAQmxErrChk(DAQmxCreateAIVoltageChan(taskHandle,"Dev1/ai0,Dev1/ai1","",DAQmx_Val_Cfg_Default,-10.0,10.0,DAQmx_Val_Volts,NULL));
    DAQmxErrChk(DAQmxReadAnalogF64(taskHandle,1000,-1,DAQmx_Val_GroupByChannel,data,2000,&read,NULL));
            DAQmxErrChk
    (DAQmxRegisterEveryNSamplesEvent(taskHandle,DAQmx_Val_Acquired_Into_Buffer,1000,0,EveryNCallback,NULL));
            DAQmxErrChk (DAQmxRegisterDoneEvent(taskHandle,0,DoneCallback,NULL));
     static int32 EveryNCallback(TaskHandle taskHandle, int32 everyNsamplesEventType, uInt32 nSamples, void *callbackData)
        int32       error=0;
        char    errBuff[2048]={'\0'};
        static int  totalRead=0;
        int32       read=0;
        float64     data[1000];
        // DAQmx Read Code
        DAQmxErrChk(DAQmxReadAnalogF64(taskHandle,1000,-1,DAQmx_Val_GroupByChannel,data,2000,&read,NULL));
       if( read>0 ) {
        fflush(stdout);
            Error:
        if( DAQmxFailed(error) ) {
            DAQmxGetExtendedErrorInfo(errBuff,2048);
            DAQmxStopTask(taskHandle);
            DAQmxClearTask(taskHandle);
                return 0;
    static int32 CVICALLBACK DoneCallback(TaskHandle taskHandle, int32 status, void *callbackData)
        int32   error=0;
        char    errBuff[2048]={'\0'};
        // Check to see if an error stopped the task.
        DAQmxErrChk (status);
    Error:
        if( DAQmxFailed(error) ) {
            DAQmxGetExtendedErrorInfo(errBuff,2048);
                //MessageBox("errors in DoneCallBack");
            DAQmxClearTask(taskHandle);
            //MessageBox(errBuff);
        return 0;
    I have two questions:
    1. how to save the data into an excel file? Can anyone show me some sample codes please?
    2.Are
    the data acquired from the two channels simultaneously? If I set the
    starting time at 0, sample frequency 1khz, can I directly multiply the
    sample number by 0.001 to calculate time (as shown below)?
    Time    channel1  channel2
    0.001    d11           d21
    0.002    d12           d22
    Thank you! 

    You aren't going to get much help with Visual C++ programing when asking questions in the LabVIEW forum. 
    Try the Measurement Studio for Visual C++ forum.
    Message Edited by Ravens Fan on 12-05-2008 04:24 PM

  • Cannot re-save a file into the same folder

    Hi.
    I have a odd issue where users are unable to resave their documents into the folder that they have opened them from.  The folders in question are their home folders to which each user has full permission to access. You cannot save over the original
    file or even to the same folder and changing the filename makes no difference at all.  You can however save to a different folder within the users home folder.  I get an event 300 error/event when trying to save but no other errors other than a confirmation
    box saying the file hasn't saved.
    Has anyone else seen this before/
    Thanks
    Tom

    It seems like a permission issue, can you save new files to the location anyway?
    You can try clean boot to determine whether other programs are conflicting:
    http://support.microsoft.com/kb/331796/en-us

  • Read data in real time and save as an excel file

    Hi,
    I want to write a LabVIEW progarmme which able to read data in real time and save it as an excel file from Varian Vacuum muli-gauge.
    It is using RS232 port.
    Can anyone give me some examples or point me in the right direction?
    I am a beginner of LabVIEW. Hope anyone can help me.
    Thank you very much!!
    Joanne

    Thanks for your reply.
    I just use MAX to verify that the rs232 port is operational.
    However, there is an error (please refer to the attachment).
    One possible reason is in MAX I am trying to do the default command *idn? ...but it doesn't work.
    I read the vacuum multi-gauge manual but I don't know which command should I use...
    I attached the manual and can you tell me which command should I use?
    Or can you tell me other possible reason for this error code?
    Thank you very much. 
    Joan
    Attachments:
    Varian Multi-Gauge Controller.pdf ‏2747 KB
    error1.JPG ‏111 KB

  • Can't find "save as" for excel file in Xcelsius

    Hello All
    I have created a dashboard using Live Office. I made some changes in my excel which is in my dashboard. Now I want to save the excel from xcelsius to my desktop. But I don't see any save as option in excel sheet inside my xcelsius file. I can import the excel files from my desktop but I don't see any option for exporting my excel to my desktop with Live Office connections. Is there any way to do this? Please help....
    Thanks
    Raghavendra.G

    Hi Raghavendra,
                     Another way is: you can save the excel to BOE using 'Save to BOE' button in Live office tab and then open the excel in BOE and save it where ever you need it.
    Regards,
    Sanjay
    Edited by: sanjay.madala on Jan 13, 2011 1:06 PM

  • How to save html as Excel file im java

    Hi to all
    How can i save html file as Excel file in Java
    If any solutions plz help Me

    Thanks for ur reply
    Source URL is::http://www.sttpc.com/reseller/price.htm
    Target is to save table data into Excel Sheet.
    Upto saving that file as Excel file its working (using I/O).
    When iam trying to read excel sheet data then iam getting OLE Exception.
    plz suggest me other Alternate solutions to overcome this problem.
    I tried htmlparser from sourceforge.net i got partial ouput.But i want dynamic solution.
    Thanks.

  • "Save As" and "Open" file dialog windows very slow to appear...

    I have a home network with 4 PCs, three using XP/3 and 1 using Win7.  Until recently, I had the three XP boxes in one workgroup (not homegroup) and the Win7 box in a different workgroup.  Everything was running fine.  I got anal and decided
    to rename some of the boxes and put them all in one workgroup, the one that the Win7 box is in.
    Immediately after I did all that, I noticed that every time I did a "save as" file function on the Win7 box, no matter the application, the dialog window took much longer to appear - sometimes almost 10 seconds.  This is not the case on the XP
    boxes.
    Following a suggestion I got on the Microsoft Answers Forum, I removed all the shares on my network and even removed the 3 XP boxes from the network, and I turned off Network Discovery.  The problem persisted.  Only when I disabled my LAN
    connection did the dialog windows appear instantly, as they had done before.  I have now restored the original configuration, but the "save as" dialog window continues to come up very slowly on the Win7 box.
    Any thoughts, clues or suggestions as to how to fix this non-critical but very irritating problem would be greatly appreciated...
    H.
    Hawgman

    I've hit a similar problem since (or at least exaserbated since) changing to a new ISP service (BT Total Broadband) which included a wifi router upgrade.  LAN has a stable Win XP SP3 fully updated, a W7 also fully updated (I love Office) and a previously
    stable Zyxel router.  Then this occasional problem:  File -> Save As from any application stops dead for up to a few minutes, no CPU burn so waiting on interupt or external event.  Patience, then it works. 
    So I'm guessing a confused IP table somewhere.  I'm off to play with using fixed IP addresses and lease expiries in the LAN part of the new router's config to see if that makes it easier for XP to handle closed connections. 
    And isn't there a "not persistent" option somewhere ... 
    But I don't networked drives, I use shortcuts with network addresses. 
    More anon after some exploration. 

  • How can save/convert a preview file into a Microsoft Word/.doc file?

    Basically, I've open some email attachments and they've opened in 'preview'
    I have tried to save them as a .doc file so that I can open them in Microsoft Word, but have been unable to do this.
    I have tried 'save as...' but it doesn't come up with a .doc option
    I have also tried the 'Open with' in the get info pop up, and have changed it to microsoft word but when I then try to open it, it comes up with a 'Convert File' box.
    I have tried some of the options available but none of them work
    Am I missing something? or am I going down the wrong route?
    Is it even possible to do?
    I'm not great at computers and so answers with obvious steps would be great!
    Thanks!

    Are these PDF files that you're attempting to save a .doc (or .docx) files. Preview won't do it. You can use a number of third-party application to accomplish what you want, but none of them are that inexpensive.
    The least expensive application may be PDFpen - you can save Word documents from PDF files with it, amongst other things.
    Good luck,
    Clinton

  • Steps to save a Query/Report as Excel file in Share folder

    Hi,
    I have a requirement where i need to schedule a BI report automatically on a daily basis and save it in a Sharepoint folder as a excel file.  I have gone through the Forums but didnt get a clear idea on how to proceed this with.  I read about RSCRM_BAPI transaction but i hope we need to do this manually to save the file each time.  Also, in Broadcaster there are options only to send Email & save in Portal. 
    So, if anybody have idea on saving a Query/Report as excel file in a Share folder automatically, kindly help me in suggesting the steps to do this activity.
    Regards,
    Murali

    Hi
    1. Create Three Floders in AL11 i.e. in Apllication Server. Eg Name it F1, F2 and F3.
    2. First dump the .csv files into F1. (Name xyz.csv).
    3. Then using UNIX/WINDOWS (depends on your OS) script , first check the file is there are not in F1, if yes then rename the file with date and time or date and transfer the files from F1 to F2 i.e xyz06032010.csv.
    4. Then Create a small ABAP program to check the file in F2, if it is there then Trigger the Event, and using that event you execute teh PC.
    5. Then using UNIX/WINDOWS (depends on your OS) script , transfer the files from F2 to F3 i.e xyz06032010.csv
    6. Next day morning F1 and F2 are empty and F3 is having the backup files.
    So use this method, I used the similar logic and it is working fine.
    Timinings are importent i.e what time you need to dump the fule in F1 and what time you need to run UNIX/WINDOWS (depends on your OS) script , transfer the files from F1 to F2 and what time UNIX/WINDOWS (depends on your OS) script , transfer the files from F2 to F3.
    OR
    1. Create Two Floders in AL11 i.e. in Apllication Server. Eg Name it F1 and F2
    2. First dump the .csv files into F1. (Name xyz.csv)
    3. Then load the data using InfoPackage, through PC.
    4. At the end of the load Attach a simple Program to Move the xyz.csv file from F1 to F2.
    5. So next day the file will come to F1 and the it will load and at the end it will move to F2.
    Else  you can use simple one or two lines of UNIX/WINDOWS (depends on your OS) script to move the file from F1 to F2 , once you load is over.
    While moving the file from F1 to F2 you can append the date at the end of the file and then move to F2, it is use full for future reference.
    See Blogs and Article, similar logic...
    https://wiki.sdn.sap.com/wiki/display/profile/Surendra+Reddy
    How to transfer the Data from SAP-System to Non-SAP system without additional Cost/License
    /people/surendrakumarreddy.koduru/blog/2009/03/11/how-to-transfer-the-data-from-sap-system-to-non-sap-system-without-additional-costlicense
    To Check the Files/Reports in Application Server and Trigger Mail Alerts.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/4096bf2d-bcea-2b10-4ab4-e0683830d9b2&overridelayout=true
    Thanks
    Reddy
    Edited by: Surendra Reddy on Mar 12, 2010 6:41 AM

  • OBIEE - export report in Excel format on daily basis into shared folder

    Hi all,
    We are in process of moving from SAP Business Objects to Oracle BI EE and now the question is:
    how do I set schedule to export specified report in Excel format into shared network folder?
    I can do it easily in SAP BO.
    Is it possible at all in OBIEE?

    Check this
    http://oraclebizint.wordpress.com/2007/12/17/oracle-bi-ee-101332-calling-java-scripts-and-java-classes-from-ibots/
    Use JavaScript part that is more simple and easiest one.

Maybe you are looking for

  • Merge Different Spools containing a Single PDF page into a Single PDF file.

    Greetings, I am developing a custom object where in i need to read PDF file from many different Spools(Range given on Input Screen), where each spool has a single PDF page in it. I need to combine all these PDF Pages into a single PDF file & either c

  • No content e-mails

    After setting up a new iPhone 5 with e-mail accounts I now have numerous e-mails showing "this message has no content".  All are dated 12/31/00 or 12/31/69.  Some show "(No Sender)".  I have not been unable to delete these messages and they do not sh

  • OraclePreparedStatement and dynamic where clause

    I am trying to figure out a better and more efficient way to construct a dynamic sql statement where the one or more parameters can be passed which would be included in the where clause. I know I can simply use a case or if statement to build the whe

  • I'm unable to get my emails, what is wrong with iCloud? Is Down?

    For the last 2 days I'm trying to download my emails and I'm unable to even see them in Icloud, what is wrong?? Please advice.

  • Fail installing perl modules in new sparc server

    Hi, I'm trying to install the perl modules needed by my applications in a sparc server SunFire V210 with solaris 9 64bit. All the attempts fail because the interpreter is compiled with forte, this is the explanation i got. I found a solution in CPAN