Workbook Refresh Sheet Protection

Hello Gurus.
I want to protect some cells in the sheet from the user, in order not to modified it, i'm using BEx 3.5 and the excel function of blocking cells and sheet protection, but when I save the workbook and then try to refresh it, it's saying me that this function is not available with excel protection, so I wonder of another way of protect my cells from user and also be able to refresh data in query.
Thanks in advance.

Hi,
there is a possibility to use the SAP Workbook protection.
Menu Business Explorer->Tools->SAP Protection. This prevents people from changing anything outside query area.
regards,
Raymond Baggen
Uphantis bv

Similar Messages

  • 2004s Workbook Sheet Protection

    I have been attempting to protect the results area of a sheet in a workbook.
    I have set the properties of the analysis grid to "Enable Cell Protection"
    I have made the following excel settings.
    The relevant results area cells have been set to locked.  Format > Cells > Protection = Locked.
    I have turned on Sheet Protection.  Tools > Protection > Protect Sheet.
    Saved my workbook.  At this point the results area is protected however if I close and open my workbook, the sheet is no longer protected.
    Can anyone comment on this issue.
    Thanks
    Ian

    I have just activated the "Protect Workbook" in workbook settings and the the enable cell protection is now working for the analysis grid.

  • Why is Refresh Sheet not showing me the parameters for report?

    I have a really large amount of data showing up in my report. It is taking forever (times out after 30 minutes) for my data to display. In the past, I have cancelled and then used the refresh sheet to constrict my report parameters and then rerun the report. However, today, after I select cancel, and then Refresh Sheet, the report just kicks off again and times out again without showing me my parameter list and without allowing me to specify my running parameters?
    Why is this happening and how can I get my Refresh Sheet to allow me to specify values for my execution parameters.
    Thanks,
    Cherie Machler

    Hi Cherie,
    Is this problem happening in Viewer?
    If yes, I had a SR open with oracle for this problem. It was recently closed without resolution. It is a problem that they are not willing to fix. My scenario is that I open a report with multiple worksheets that are long running and with multiple input parameters. I run the report with the default parameters. Realize I didn't input the correct thing, so I cancel the report. If I cancel at 3 seconds or less, my session hangs and I have to start a new internet session. If I cancel beyond 13 seconds, the cancel takes me back to the select worksheets screen but only allows me to run the report - no changing of parameters allowed.
    Message I received from Oracle:
    "I have received a response on Bug 5576575 - CANNOT CHANGE THE PARAMETER VALUES AFTER CANCELLING A
    REPORT IN VIEWER and internal enhancement request Bug 6007588 - NEED TO CHANGE THE PARAMETER
    VALUES AFTER CANCELLING A REPORT IN VIEWER.
    The bug applies to 10.1.2.54.25 also. Regarding allowing the parameters to be changed bug 6007588 the
    response " in order to fix this,it would need a change in architecture on how we capture and save state
    information. This is unlikely ".
    It will not be possible at this time to change the parameters when cancelling a query in Viewer."
    NOTE: If you read the bugs, they were logged against versions prior to 10.1.2.54 which means they should also apply to 10.1.2.50.
    Regards,
    Nancy

  • Here's an Odd one: Microsoft Excel 2010 Workbook "randomly" Becoming Protected

    Either there are gnomes in our servers, someone is lying, or some sort of glitch is causing this issue (and honestly I'm not even sure which is most likely), but here's my story:
    User is working on an excel workbook. This user accesses this file all the time with little to no problems. One day a week or two ago the user finds the workbook is password protected, but doesn't even know how to do this, much less remembers locking it.
    My boss restores a backup of said document that is not password protected. User is able to access file, edit it, save it, etc.
    The next day that same file (and only that file) is locked for the second time. We use a back door method and save a new copy with a new filename. User edits file, saves it, etc.
    The next day that same file (and yes, only that file) is locked for the third time.
    Am I crazy? Is someone lying to me? Do gnomes really go inside computers and wreak havoc to make me lose my sanity?
    Any thoughts would be greatly appreciated.
    I have the file and plan on saving an unlocked copy locally to see if the issue presents itself again.
    Windows 7 computer running Office 2010; Windows 2012 server

    Have you got over this odd issue yet?
    If this workbook is saved in a shared drive, maybe you need to track who uses the excel file.
    http://stackoverflow.com/questions/18319162/how-do-i-track-who-uses-my-excel-spreadsheet

  • Nightly scheduled workbook refresh: monitoring is any failed

    Is there a way to monitor if any workbook refreshes failed during the night batch window using SQL script or something like that?

    Hello Samuel/Raman,
    Is getting below error related to the same reason as mentioned in this thread - 
    Failure Correlation ID: 3e0e1f6a-cdfe-40ac-8d05-5e86f50052ef 
    Errors in the high-level relational engine. The following exception
    occurred while the managed IDataReader interface was being used: The operation has timed out.
    The query takes around 27 mins to execute.
    Thank You

  • Refresh sheet

    Hi,
    My workbook contains 3 sheets.Sheet 2 & sheet3 contains two different Queries.
    Sheet1 is teh summary of Sheet2 & sheet3.
    When I execute the workbook for the first time , all the data is populated correctly.for eg . sheet1 displayes 1000 rows.If i refresh the queries again with some selection criteria , & if only 100 records are extracted, then sheet1 displys first 100 rows corretcly & the remaining 900 rows are displayed as # , as sheet1 was not cleared after the query refresh
    I want to refresh sheet1 , which does not contain any queries .
    Reagrds,
    Anita
    Message was edited by:
            Anita Prasanna

    here is the VBA code we are using for the same .(defined in module).
    Take any VBA Programmer help.
    Public Sub clear_all()
        Clear_All_Query_Fields
    End Sub
    ' Function to Protect the Data_input sheet
    Public Sub Protect_cockpit_chart()
        data_input.Protect gc_password
    End Sub
    ' Function to Clear the content of a range
    Public Function ClearTargetArea(in_RangeAddress As String, in_worksheet As String)
        'Dim TargetArea As Range
        If in_worksheet <> vbNullString Then
            ActiveWorkbook.Worksheets(in_worksheet).Range(in_RangeAddress).Cells.Value = gc_xlsNoContent
        End If
    End Function
    ' Function to clear the data input table
    Public Function Clear_All_Query_Fields(Optional in_keyf As String = "ALL")
    ' ------------------------------+
    ' Clear headline in input sheet
        Call ClearTargetArea("D9:I9", gv_worksheet_input)
    ' Clear data in input sheet
        Call ClearTargetArea("C10:I28", gv_worksheet_input)
    ' ------------------------------+
    End Function
    Public Sub FormulaTransfer(SAPQueryResult As Range, _
                                BlattNamen As String, _
                                FromQueryColumn As Integer, _
                                FromQueryRow As Integer, _
                                ToSAPRow As Integer, _
                                ToSAPColumn As Integer)
        Dim mc As Range
        Set mc = SAPQueryResult.Cells(FromQueryRow, FromQueryColumn)
        data_input.Cells(ToSAPRow, ToSAPColumn).Value = mc.Value
    End Sub
    Assign points if its useful.

  • Workbook refresh

    Hi Gurus,
    I have a workbook in which there are 11 work sheets. I do not want to refresh the entire work book, When the user opens the work book only the first sheet must be refreshed and when the user navigate to another work sheet, only that work sheet must be refreshed. Is it posible to do this?
    Regards,
    Raghavendra.

    Hi,
    Refresh Workbook on Open--->If this indicator is selected, when you open a workbook from the server, the workbook is automatically refreshed with values from the server. If this indicator is not selected, you have to manually update the workbook after you open it to retrieve the most current results.On the Exits tab page, you can choose whether a macro can be called during the refresh. You can choose any macro name. Note that the macro is only called when the workbook is opened if the Refresh Workbook on Open indicator is set on the General tab page.
    Refer for Workbook Settings
    http://help.sap.com/saphelp_nw70/helpdata/EN/54/a493f7256b43698191a2623e5a0532/content.htm
    Regards
    CSM Reddy

  • Multiple Queries in Workbook - Refresh Screen Shows Up for Every Query

    We have multiple queries in a workbook.  All of these queries have the exact same selections for the variable selection screen.  When all the queries are refreshed once, the selection screen used to show up once and all the queries are refreshed with the same selections.  
    We were on BI 7.0 and SP10.  We recently moved to SP12.  Since the SP12 installation, the multiple query refresh pops-up the selection screen for every query.  It is nothing like "multiple query refresh" at once since the user has to click "execute" button for every single query.  It is interesting to note that the selection screen only contains hierarchy variables and hierarchy node variables.  The other variables of selection screen do not show up.  I couldn't find any OSS note on this topic.  Please let me know if anyone has any comments on this issue.  I will assign points to useful posts.

    hi Sameer,
    try to update front end patch to latest version ?
    Using the BI 7.x Add-On for SAP GUI 7.10 - Requirements
    hope this helps.

  • Workbook refresh displays key instead of text

    Hi,
    We are on NW2004S rampup. Our support pack level for Quality environment is 7. When we execute the workbook in management cockpit in transaction UMM_PRES, the calendar month is displayed as text. When we refresh workbooks, the calendar month changes from text to key., like from Jan 2006 - May 2006 to 01/2006 - 05/2006. This happens for every refresh. On the other hand when we log back and display, text is shown and with every subsequent refresh key is displayed. This does not happen in Quality system under 3.0b version. My search on OSS notes does not get any relevant  one. Anyone having similar experience?
    Thanks.
    Param

    Hi David,
    I am able to get the result as text only after each refresh. This is made possible as follows:
    In RSD1, I changed the following under BEX tab.
    Display  changed to Text
    Text type changed to medium type
    The Text type is  new one in 2004S as compared to 3.x.
    Tnx.
    Param

  • Scheduling Excel workbook refreshes (in indows)

    Hi.
    Has anyone ever set up a solution for scheduling the refresh of Excel workbooks containing BW queries that sit on local or network drives?
    e.g. either within the workbooks themselves using VB or in combination with a script in Windows running through directories and refreshing that way?
    Thanks.
    Mark

    Hi Mark,
    I'm facing the same need. I appreciate it if you can share with me your finding. of course, I will do the same.
    I hope some hints will be coming soon.
    regards,
    Laroussi

  • Date on workbook refresh

    Hi All,
    I created an workbook and inserted an query into the workbook, but upon refreshing the query in workbook it is not asking for a date to refresh,do you know the setting to ask for a date when i click refresh.
    Thanks,
    V.Singh.

    This will only work if you have a variable in the query that is related to a date.
    Lets say this query is on sales data, you would to restrict the query on a date (lets say created on date or maybe a fiscal period) and use a variable in this restriction. This variable needs to be set to manual input and you can chose to have it mandatory or not. You could even use one of SAP delivered variables. When you done this and you refresh the workbook the selection screen will pop up asking to input a value for the variable you used.
    Hope this helped, let me know if i misunderstood your issue
    C.

  • Not showing Variable screen in Workbook - Refresh

    Hi BW Experts,
    I am working on BI 7.0
    When I try to refresh Workbook in Analyzer it is refreshing the query giving current data, but it is not showing Variable screen.
    What should I do to open variable screen when I click on Refresh button in Workbooks.
    Kindly advise.
    Ram,

    You should click the 'refresh variable values' button.
    Also switch on the 'process variables on refresh' in the workbook properties.

  • Export workbook – One sheet needs to be run first before all sheets can be

    I have “Init” sheet in a workbook, which sets the entered parameter values in DB context. Other worksheets query data based on the DB context value.
    Now, I’m writing a DOS batch job to automatically export the workbook. The problem I’m facing is I can’t instruct Discoverer to run the “Init” sheet first.
    So far I tried the following commands
    c:\oracle\BIToolsHome_1\bin\dis51usr.exe /connect test#/dev@dec_db /opendb " Account.DIS" /Sheet Init,Test_1,Test_2 /parameter Acct_ID 0113 /parameter MV 40494801 /batch /export HTML "ELT_report_%today_date%.xls"
    c:\oracle\BIToolsHome_1\bin\dis51usr.exe /connect test#/dev@dec_db /opendb " Account.DIS" /Sheet Init /Sheet ALL /parameter Acct_ID 0113 /parameter MV 40494801 /batch /export HTML "ELT_report_%today_date%.xls"

    Deepakanu.
    1. I don't have the command in front of me, but you have to run each command separately for each worksheet if that's what you need to do.
    So, your first run would be something like:
    c:\oracle\BIToolsHome_1\bin\dis51usr.exe /connect test#/dev@dec_db /opendb "Account.DIS" /Sheet Init /parameter Acct_ID 0113 /parameter MV 40494801 /batch /export HTML "ELT_report_%today_date%.xls"
    while your second ... all runs would be to label each worksheet separately OR if you used the ALL, it would re-run Init again and may screw you up.
    Sounds like you'll have to specify each separately if you're dependent on the order.
    2. Alternatively, if you just used the ALL version and that's it (ie: put in /Sheet ALL by itself), then I thought that the first worksheet in a workbook (farthest left) would be the one to run first. If this is correct, then maybe this would work if you make sure of the worksheet ordering in the workbook.
    Russ

  • Bex Analyzer Workbook Refresh - How to prevent take over of desktop

    Hi there,
    I believe the answer to this queston will be use bex broadcaster but I will try and see if someone has any other experience.
    One of our upper mgmt directors is frustrated because when he refreshes the bex analyzer workbooks, the refresh takes over his desktop.
    He will kick off the refresh and then wants to go to another task - Like checking something on AS400 screen - or going to check his email - or working in word.
    The refresh of the workbook is long running and has several queries to refresh so it monopolizes his desktop.
    He will go to the other screens but bex refresh keeps popping up and taking over.
    I do not know any other way to have it run in the background unless bex broadcaster is used.  Unfortunately, we are in the process of getting that upgraded and it is not available at this time.
    Does anyone have any experience with having the excel refresh run in the background?
    Thank you,
    Lynda

    reporting agent will be helpful in caching the report...this article will explain you on the steps to do so
    http://www.tnsr.eu/fileadmin/user_upload/Documenten/PDF/How_To/How_To...Perform_Tuning_with_the_OLAP_Cache.pdf
    reporting agent has been replaced by information broadcasting in BI 7.0, you can try this out by going to rsa1old and caching the report.
    Hope this helps.
    rgds, Ghuru

  • Automate Workbook Refresh

    Hi All,
    Does anyone have a way to automatically refresh a workbook and save it to a file folder? We have a workbook that is highly formatted and has multiple queries on one worksheet so the reporting agent as I understand it won't help me, but let me know if I am wrong. Any ideas will be appreciated.
    Thanks in advance.

    Hi Soniya,
    I saw your original posting with this question.  I did not respond to that posting because this is really not something that can be done in VB.
    With VBA in Excel, you can schedule a routine to run (the command is Application.OnTime, then give the time for the subroutine to run and the name of the subroutine).  But, this has 2 problems for your application:
    1.  this allows only "time", not "date + time"
    2.  the schedule stays in Excel memory; which means it gets lost if Excel is closed.
    I would think that using scheduling within BW is the right way to do this.  But, I am not an expert on that subject.
    If the workbook is stored on a local or LAN drive vs. on the BW server, then the only other option that comes to mind is Windows scheduling (and set up the workbook so that your macro will kick off automatically when the workbook opens).
    Here is a link that gives instructions on how to use Windows scheduler:
    http://www.iopus.com/guides/winscheduler.htm
    Hope this helps.
    - Pete

Maybe you are looking for

  • Numeric or value error problem

    Hi, I created the following function on Oracle 8i: create or replace function get_pub_info(p_inbox in varchar2) return varchar2 deterministic is cursor c_pub(p_inb varchar2) is select a.pub_name, a.pub_code,      b.fprocess_id from pub a, fprocess b

  • Is it possible to know the computer name ?

    Hello, I have set some parameters depending on computer. I mean that we have some PC in different place, and I want set some parameters ( on report screen selection ) depending by the PC. Exemple: If I log me on PC N° 1, for report X I have p_param =

  • How do you set default transition length?

    Have dissolve as default, where do I go in order to tell what default transition length I want? Thanks.

  • Lost session, editing in developer mode as continue with old topic

    hi i have same problem as guy: lost session, ff wont load it, just home page, hothing else. i saved sessionstore.bak file renamed to .js, nothing happend then following this advice: to type into dev console eval("ss = "+document.body.innerHTML.replac

  • Time Machine--"Next backup: When Mac is plugged in"

    My wife and I have identical MacBook Airs (2011) with Mavericks.  For whatever reason my wife's  Time Machine will not back up until it is plugged in to an electrical outlet.  When I open Time Machine Preferences, it will say, "Next backup: <future t