How to save a report in server

...so it can be accessed by all.
In BEX, I create a query, save it to a role and everybody can access the query. How does this work in BPC? What are the keywords for this?
Thanks in advance!
Rgds,
Christian

I'm sorry, I am a bit a confused about these all Open / Save menu items.
Okay, by now I created a report with User 1 and saved this by eTools->Save Dynamic Template (this saves the current report locally.) With eTools -> Open Dynamic Template I could open this template again (but only for User 1).
I start AdminClient and change the version of the Application Set, as well as I hit "Refresh Client-side dimension files".
Then I start the OffcieClient and logon with User 2.
Which menu must I open, to see the report which was originally created by user 1? I can't find it anywhere.
Any help is appreciated!
Rgds,
fischmir

Similar Messages

  • How to save the report file in network drive

    Hi experts,
    Can any one of you pls tell me how can  save the report file in network drive.
    My requirement:
    by running a report i wll get daily data into a list.SO, i want to keep this in a common drive (network drive:Z) where every one can acces the txt file.
    I want the code in SAP to design this.
    Awaiting for an early reply.

    Is the Z drive in the application or presentation server ?
    make sure the server has write access to the required folder
    for presentation server
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        filename              = 'c:\test_xls.xls'
        filetype              = 'ASC'
        write_field_separator = 'X'
      TABLES
        data_tab              = itab.
    for the application server, use
    data: outfile(120).
      OPEN DATASET outfile FOR APPENDING IN TEXT MODE ENCODING DEFAULT.

  • How to save XL Reporter query

    Hi all,
    Can any one tell me how to save XL Reporter query in SBO.
    regards,
    kumar

    Hello Kumar,
    In the Report Organiser save or move the Report Definition to one of the
    grey folder (e.g. Financials). In order to immediately access the report
    though the 'Modules > Reports' menu, you additionally need to choose
    the option 'File > Update Business One Main Menu'.
    Please let me know if I misunderstood your question.
    Regards,
    Wilma Wang
    SAP Business One Forums Team

  • How to save webi report created using InfoView into my local PC

    Hi Experts,
    I am creating a Web Intelligence document using infoview and once the report is ready, i want to save it in my local PC for later refresh.  How can i save that using Infoview ? I don't want to save the report in the server(repository).
    Regards,
    Suresh

    After saving WebI reports to Local PC also, one can't see them COZ of .wid extension, to view them again we need WebI installed.
    You can Save them to Excel or PDF or CSV to your local PC and Schedule them to get latest data as well.
    Thank You!!

  • How to save BI report into normal excel sheet in Bex Analyzer

    Hi Experts,
    version of  Bex Analyzer:
    Bi addon 7.x
    support package 7,patch 1
    version 7004.4.0.5
    excel-2003
    when i am trying to save the report into excel in Bex Analyzer as below:
    file-save as->Microsoft excel work.
    when I open excel I am getting pop up windowu201Dthis file contains macros  with an expired or revoked signature.Since your running under  high security level,these macros will be disabled.u201D
    when I click ok I am getting one more pop upwindow as u201Cmacros  are diabled because the security level is set to high and a digitally signed trusted certificate is not attached to macros.to run the macros,change the security level to a lower setting(not recommended),or request the macros signed by the author  using a certificate  issued by a certificate authority.
    what are these macros? why i am getting this pop up windows
    When i opened  the excel report is not looks like general excel report.how can I generate general excel report .I should not want to get excel report as in bex analyzer.I donu2019t want to have author ,status of data,chart,filter,information in excel report.
    what settings I have to made to save the report in general excel format.
    As i am new to Bi please correct me if i am wrong.
    Anything is appreciable.
    regards,
    naresh.

    Macros in general are nothing but piece of code in excel.
    To allow unsigned macros to run, the Trust all installed add-ins and templates check box must be selected on the Trusted Publishers tab of the Security dialog box. This option is selected by default. If it is not selected (recommended), Excel allows you to run only macros that have trusted digital signatures.
    1. On the Tools menu, point to Macro, and then click Security.
    2. On the Trusted Publishers tab, select the Trust all installed add-ins and templates check box.

  • How to connect Crystal Report 2008 server with SAP BI/BW server

    Hi ,
    I have downloaded the 60 Days trial version of  "Crystal Report 2008 Server' from sap site to my machine. Now i would like to connect this Crystal server with SAP BI and want to use the data of BI Bex queries and Infoproviders.
    Can you please guide me how to connect them?
    Aslo how can i get the free trial version of Intergration kit ..here please provide me the entire full path of site(to download the Integration Kit).....
    Any inputs would be appreciated!!
    Regards,
    Naween

    Hi Michelle,
    Older versions of CR would allow you to run CR from a network share point but you still had to have a license for each user. Current versions of CR do not allow you to do this any more, possibly using a Citrix or Terminal Server would allow this but you still need a license for each user. Older versions had a Network install option.
    And as suggested exporting to PDF or some other format is fine for end users viewing your output. They are not using CR but Adobe Reader or Word etc. to view the reports, they just can't use the Designer to view the reports.
    Hope this is clear now?
    Thank you
    Don

  • How to save an image on server through JWS

    Hi!
    I've created an application using Java Web Start that controls a camrecorder.
    This app can take a picture and must save this one on server.
    How can i save this picture on server without using servlet?
    Thanks a lot!!

    See this sample code. There are numerous other examples available there.
    http://javaalmanac.com/egs/javax.imageio/Graphic2File.html

  • How automatically save excel report?

    Dear sir,
    I am generated excel report using labview,
    Present my doubt is how to Save Automatically that report in specified directory....?
    Please Inform me,
    Thank you...
    Solved!
    Go to Solution.

    Please replay this question
    How to export wave form data in excel with specified location,
    i.e.. Specified column,
    How it is possible?
    Thank you.

  • How to save classical report as pdf file

    hi all,
    i have created a classical report and now the requirement is to save that report as a pdf .
    is there any FM or any other method to do so?
    regards
    vijay

    Hi Vijay,
    Here is what I did for the same requirement:
    Calling for the PDF File name and path to save the file
      CALL METHOD cl_gui_frontend_services=>file_save_dialog
        EXPORTING
          window_title         = 'Quote Bom PDF File'
          default_file_name    = l_file_name
          initial_directory    = l_fullpath
          prompt_on_overwrite  = 'X'
        CHANGING
          filename             = l_file
          path                 = l_path
          fullpath             = g_path
          user_action          = l_user
        EXCEPTIONS
          cntl_error           = 1
          error_no_gui         = 2
          not_supported_by_gui = 3
          OTHERS               = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      IF l_user = 0.
    Please follow the following order for the subroutines which is creating the Spool Number, writing the* 
    statements on to the screen and then create the PDF file*
        PERFORM get_spool_created.
        PERFORM write_lines.
        NEW-PAGE PRINT OFF.
        g_spool_no = sy-spono.
        PERFORM download_as_pdf.
    Spool Number is getting created in this routine*
    FORM get_spool_created .
      DATA: pripar TYPE pri_params,
              arcpar TYPE arc_params,
              lay    TYPE pri_params-paart,
              lines  TYPE pri_params-linct,
              rows   TYPE pri_params-linsz.
      DATA: val(1), val1(1).
      DATA: dest TYPE pri_params-pdest VALUE 'LP01'.
      DATA: name TYPE pri_params-plist VALUE 'Testing'.
      DATA: i_pdf TYPE STANDARD TABLE OF tline.
      DATA: spono TYPE tsp01-rqident.
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          destination              = dest
          no_dialog                = 'X'
          immediately              = ' '
        IMPORTING
          out_archive_parameters   = arcpar
          out_parameters           = pripar
          valid                    = val
          valid_for_spool_creation = val1
        EXCEPTIONS
          archive_info_not_found   = 1
          invalid_print_params     = 2
          invalid_archive_params   = 3
          OTHERS                   = 4.
      IF sy-subrc NE 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      pripar-linsz = '132'.
      pripar-paart = 'X_65_132'.
      pripar-prdsn = 'LP01'.
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          in_archive_parameters    = arcpar
          in_parameters            = pripar
          no_dialog                = 'X'
          list_name                = name
        IMPORTING
          out_archive_parameters   = arcpar
          out_parameters           = pripar
          valid                    = val
          valid_for_spool_creation = val1
        EXCEPTIONS
          archive_info_not_found   = 1
          invalid_print_params     = 2
          invalid_archive_params   = 3
          OTHERS                   = 4.
      IF sy-subrc EQ 0.
        NEW-PAGE NO-TITLE NO-HEADING PRINT ON
        NEW-SECTION
        PARAMETERS pripar
        ARCHIVE PARAMETERS arcpar
        NO DIALOG.
      ELSE.
        WRITE:/ 'Unable to create spool'.
        EXIT.
      ENDIF.
    ENDFORM.                    " GET_SPOOL_CREATED
    Write all your statements in this routine*
    *&      Form  WRITE_LINES
          text
    -->  p1        text
    <--  p2        text
    FORM write_lines .
    CALL THE ROUTINE WHICH WRITES ALL LINES TO THE SCREEN
    ENDFORM.                    " WRITE_LINES
    *Download the file as PDF
    *&      Form  DOWNLOAD_AS_PDF
          text
    -->  p1        text
    <--  p2        text
    FORM download_as_pdf .
      DATA:
              l_no_of_bytes TYPE i,
              l_pdf_spoolid LIKE tsp01-rqident,
              l_jobname     LIKE tbtcjob-jobname,
              l_jobcount    LIKE tbtcjob-jobcount,
              i_pdf         TYPE TABLE OF tline,
              i_cpdf        TYPE TABLE OF tline,
              l_spono       TYPE tsp01_sp0r-rqid_char,
              l_fullpath    TYPE string.
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          src_spoolid              = g_spool_no
          no_dialog                = ' '
        IMPORTING
          pdf_bytecount            = l_no_of_bytes
          pdf_spoolid              = l_pdf_spoolid
          btc_jobname              = l_jobname
          btc_jobcount             = l_jobcount
        TABLES
          pdf                      = i_pdf
        EXCEPTIONS
          err_no_abap_spooljob     = 1
          err_no_spooljob          = 2
          err_no_permission        = 3
          err_conv_not_possible    = 4
          err_bad_destdevice       = 5
          user_cancelled           = 6
          err_spoolerror           = 7
          err_temseerror           = 8
          err_btcjob_open_failed   = 9
          err_btcjob_submit_failed = 10
          err_btcjob_close_failed  = 11
          OTHERS                   = 12.
      l_spono = g_spool_no.
      CALL FUNCTION 'RSPO_R_RDELETE_SPOOLREQ'
        EXPORTING
          spoolid = l_spono.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          bin_filesize            = l_no_of_bytes
          filename                = g_path
          filetype                = 'BIN'
        TABLES
          data_tab                = i_pdf
        EXCEPTIONS
          file_write_error        = 1
          no_batch                = 2
          gui_refuse_filetransfer = 3
          invalid_type            = 4
          no_authority            = 5
          unknown_error           = 6.
    ENDFORM.                    " DOWNLOAD_AS_PDF
    Thanks.
    Respond if you need any more help.

  • How to export and save a report at server or a remote machine?

    Hi,
    We have our BOE server XI R2 installed in Solaris SPARC machine. I would like to export the report to Word and then save it in a remote/another machine. Presently our application is showing a save as dialog to client. Instead we want it to be saved in a specific machine.
    Thanks

    Hi   Bhave  ,
    Thanks for taking sometime to clear our doubt.
    We were trying the solution your solution but still we had been thrown the save as dialog.
    Let me clearly state the problem which we are facing.
    Presently we are able to redirect user to BO server which in turn shows  a save as dialog in client's machine. What we are trying to do is to run report at specific time---> exporting to word -
    > saving it on a particular machine and mail the users location or a url which authenticates and redirects user to the file.
    FYI We have a Business Objects Enterprise(server) XI Release 2 server installed on Solaris.
    Thanks
    Hi Bhave ,
    We tried the code you have specified. There was some problem with Business Objects server. On solving the same your code works well.
    We are able to save file in RTF format. But when we were trying to convert to PDF and save. RAS server goes down. We dont know the reason.
    And where we will be able to find what are the  responsibilities of all the servers running in BO XI R2.
    Thanks
    Edited by: lnarayanan86 on Aug 13, 2009 11:04 PM

  • How to save WEBI report in CSV format on file system

    Hi
    I am trying to save a WEBI report from BO server in CSV format through java / BO SDK. Iam able to save report in html , pdf and xls format. Please provide a code snippet if available.
    I know for pdf and xls we directly use doc, binary view and for html there is HTMLVIEW. But iam not able to save it using CSV OutputFormatType
    thanks

    Hi,
    Just in case, I think that Shawn wanted to send the following link showing the different formats:
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/RE_SDK/resdk_dg_doc/doc/resdk_java_CustoWebI_dg/ewucw_053.html#1037054
    Cheers

  • How to save excel report as CSV file with ActiveX

    Hi,
    I'm trying to save my excel test report as a CSV file using ActiveX and I'm having difficulty getting started.  I can't find an invoke node method that enables CSV file conversion. 
    Can anyone shed light on this?  See attached screenshot.
    Thanks
     

    As long as you are using the Report Generation Toolkit, there is no need to use ActiveX for the purpose of saving the Excel file -- Save Report will do that for you.  You can then export (as text) all of the Excel data and use the Write Spreadsheet File to make the .CSV file.  Here is how I would rewrite the final bits of your code --
    I cleaned up the wires around Excel Easy Table a bit.  You'll see I made a VI Icon for Replace Filename, which does (I think) a nicer job of self-documenting than showing its Label.  To make the filename, add the correct extension (.xlsx for Excel, .csv for CSV), use Build Path to combine Folder and Filename, and wire to Save Report.
    The next two functions add the Extract Everything and Write to Spreadsheet, using a Comma as a separator, which makes a CSV copy for you.
    Bob Schor

  • How to save files on the server?

    I want to save a log on the server, how can I do this using Oracle?
    In SQL Server I used the "bcp" command.
    Thanks.

    as forbrich suggested you can use the UTL_FILE built-in package. here is an example code to read and write to a file.
    CREATE OR REPLACE PROCEDURE Read_Write_File (pvInFile Varchar2,
                                                 pOutFile Varchar2) IS
    vInFile   utl_file.file_type;
    vOutFile  utl_file.file_type;
    vNewLine  VARCHAR2(4000);
    x         PLS_INTEGER;
    vFlag  BOOLEAN := TRUE;
    BEGIN
      -- assuming Your_Directory is $HOME/myTxtFiles in a Unix Platform
      -- to check if definition is existing Select Directory_Name, Directory_Path From All_Directories;
      vInFile := utl_file.fopen('Your_Directory',pInFile,'r');
      vOutFile := utl_file.fopen('Your_Directory',pOutFile, 'w');
      IF utl_file.is_open(vInFile) THEN
        LOOP
          BEGIN
            utl_file.get_line(vInFile, vNewLine);
            x := utl_file.fgetpos(vInFile);
            dbms_output.put_line(TO_CHAR(x));
            utl_file.put_line(vOutFile, vNewLine, FALSE);
            utl_file.fflush(vOutFile);
            IF vFlag = TRUE THEN
              utl_file.fseek(vInFile, NULL, -30);
              vFlag := FALSE;
            END IF;
          EXCEPTION
            WHEN NO_DATA_FOUND THEN
              EXIT;
          END;
        END LOOP;
        COMMIT;
      END IF;
      utl_file.fclose(vInFile);
      utl_file.fclose(vOutFile);
    EXCEPTION
      WHEN others THEN
        RAISE_APPLICATION_ERROR (-20099, 'Unknown UTL_FILE Error');
    END;
    /

  • How to save v10 report to older v8.5

    Post Author: Joke
    CA Forum: General
    How do you save a v10 report so that someone with a v8.5 can open it?

    Macros in general are nothing but piece of code in excel.
    To allow unsigned macros to run, the Trust all installed add-ins and templates check box must be selected on the Trusted Publishers tab of the Security dialog box. This option is selected by default. If it is not selected (recommended), Excel allows you to run only macros that have trusted digital signatures.
    1. On the Tools menu, point to Macro, and then click Security.
    2. On the Trusted Publishers tab, select the Trust all installed add-ins and templates check box.

  • WEBI - how to save a report with a dynamic name

    I would like to create a report (pdf) and save it with a specific name :
         Example :      « Report_Name_YEAR_MONTH.pdf »
                   « Report_Name_object.pdf » where object came from the report WEBI.
    BO Xi propose the %SI_STARTTIME% variable on "date + time" format.
    1 - Can I use an other variable in order to have a date with this format : Year + Month ?
    2- Can I use an object create on the report WEBI ?

    Hello,
      I tried to save the variant of DEMO_PROGRAM_GET with dynamic selection field (Connection Number) filled. It gets saved without any problem. Just click 'SAVE' and enter the variant name and description.
    Thanks,
    Venu

Maybe you are looking for

  • How to apply Date condition for each month in 12 month period to my SQL query

    I am trying to retrieve all Outstanding Problem tickets in my Trendline SSRS report. I need to pull the OpenDate <= Last day of last month And CloseDate >= 1st day of current month for each month in the Last 12 months. How do I accomplish this in my

  • Error in Account Clear using the T Code F-03

    Dear Friends, The users are trying to clear the open items in one of the GL Accounts with multiple currencies, using the T Code F-03. However, while clearing the matching items, the system gives the error - "Exchange Rate Diff Accts are incomplete fo

  • Connection drops, iPod touch won't connect

    Hey guys, I've got two problems right now, and I'm assuming they're related to each other. I'm not 100% sure this is an issue with my AirPort Extreme, but I'm not sure what else it could be. For the past few weeks, my internet connection has been dro

  • Advice on best way to handle post-prod export

    I have just completed a project for a friend. The project container in Aperture contains numerous sub-folders, smart albums, and all containing various versions, stacks, crops etc. etc. I'm looking for the simplest way to take all of the originals (i

  • Why does email sent from one Thunderbird inbox end up in another's sent file

    My husband and I each have Thunderbird emails. Occasionally, when he sends a message out of his inbox, it ends up in my "sent" file, and labeled from me. But, when there is a reply from the recipient (or a bounce back), it comes into his inbox. So, w