How to disable "Selection Security" in a correct way?

hi experts!
how to disable "Selection Security" in a correct way?
!http://img689.imageshack.us/img689/2748/28668107.png!
thanks!

Hi...
Open "Catalog Manager" and
navigate to Shared -> "Shared Folder Name" (ex: Sample Sales) -> _Portal.
Here you find all dashboards. Open the dashboard that you already enabled selection. In that dashboard folder you find one more folder with name: _selections*
Delete the _selections* folder.
You will get Enable option again in front end.
All the best

Similar Messages

  • How to disable web security in firefox

    Please let us know how to disable web security in mozilla firefox .
    I tried re-setting the below :
    security.fileuri.strict_origin_policy;true
    network.http.referer.XOriginPolicy
    but its not working.
    Whereas in chrome we have the below option to set websecurity :
    chromium-browser --disable-web-security
    Please advice.

    Hi,
    I understand that you would like to know how to disable web security in Firefox and you have tried: security.fileuri.strict_origin_policy;true and network.http.referer.XOriginPolicy. These are cross domain single origin policy that refers to a specific header int HTTP.
    The chromium-browser --disable-web-security essentially does the same thing. (Ideally) It seems from a couple of sources that this does not actually disable Cors as well? Hence (https://bugzilla.mozilla.org/show_bug.cgi?id=1039678)
    Please do report back with what you find!
    EDit: It sounds like the feature you are looking for has not been implemented yet.

  • How set disable select matrix column header

    How set disable select matrix column header same Inventory-->Pick List Form
    Thanks Advance.

    Hi ,
    do u mean Price List Form Header...
    If Yes Means Try the Following,
    select case pVal.FormType
    case "155"
    Select Case pVal.Before_Action
    case True
    select case pval.ItemUid
    case "3"
    Select Case pVal.EventType
    Case SAPbouiCOM.BoEventTypes.et_CLICK
    if pval.row = 0  Then BubbleEvent = False : Exit Sub
    End Select
    End Select
    End Select
    Regards,
    Ganesh k

  • How to disable selection parameter for a particular radio button

    hi experts,
    How to disable selection parameter(bukrs) for a particular radio button 'radio1'.

    hi,
    Check This Code (copy paste and run it ).
    U have to use MODIF ID along with the parameter.
    *----------------Option
    *---Background
    *---Summary Report
    PARAMETERS       : p_backgd RADIOBUTTON GROUP rad1
                       USER-COMMAND radio DEFAULT 'X'.
    PARAMETERS       : p_sumrep RADIOBUTTON GROUP rad1 .
    *----------------File
    PARAMETERS       : p_sumfl TYPE char255 modif id ABC  .
    PARAMETERS       : p_detfl TYPE char255 modif id ABC.
    *---------------Activate & Deactivate Screen Fields--------------------*
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF p_sumrep = 'X'.
          IF screen-group1  = 'ABC'.
            screen-input  = '0'.
            MODIFY SCREEN.
          ENDIF.
        ENDIF.
      ENDLOOP.
    <b>Please Reward Points & Mark Helpful Answers</b>
    To mark Helpful Answers ;click radio Button next to the post.
    RadioButtons
    <b>o</b> Helpful Answer
    <b>o</b> Very helpful Answer
    <b>o</b> Problem Solved.
    Click any of the above button next to the post; as per the anwers
    <b>To close the thread; Click Probelm solved Radio Button next to the post ,
    which u feel is best possible answers</b>

  • How to disable the security code and use only the Touch ID

    how to disable the security code and use only the Touch ID

    You can't use Touch ID without a passcode.
    http://support.apple.com/kb/HT5883

  • How to disable non secure port on Sun Java System Directory Server 5.2

    Hi, can someone tell me how to disable the non secure port 389 on the SJS Directory Server 5.2? I only see two options for the directory server to listen on the non secure port or both secure and non secure ports. I see that someone mentioned to change the port the loopback ip address but the gui doesn't allow that.
    Any help is appreciated.
    Thanks,
    Mike

    Yep! You can add the loopback address to the listen host attr, directly to the dse.ldif (insntace stopped of course) or ldapmodify the config entry

  • SAP Fiori how to  disable-web-security using code

    Hi Guys
    I have made SAP Fiori Application.
    Its working on  google chrome browser after disable-web-security.
    i need to disable web security on each & every browser, Ipad, Phone  befor start the fiori Apps.
    Project on My Laptop Kepler Eclipse. I did not upload project on server.
    Please guide me How I  can  disable web security using code on  Fiori UI ...
    Tags edited by: Michael Appleby

    Hi pankaj,
    Hi,
    write this code in your app
    /supress the Same Origin Policy on IE8 & Chrome 
    var domainString = "document.domain"; 
    domainstring = "*.com" 
    'Access-Control-Allow-Origin: *.sap.com' 
    'Access-Control-Allow-Headers: X-KEY'
    Regards
    Umar

  • How to disable 'select display' on screen sharing?

    One improvement in Lion is Screen Sharings 'asking' of the current logged in user as to whether or not it is ok to share the screen.  While I understand the need for this in a multi-user environment, this is a unnecessary level of feature for most home users.  In fact, it's been a total pain and I'd like to know how to disable it.  Trying to remote support parents has become virtually impossible as they are unsure as to what it means to allow screen sharing when I attempt to connect.
    Anyone know how to disable this feaute and let Screen Sharing work as it did pre-lion?

    Apple menu > System Preferences > Sharing > Screen Sharing > Allow access for: account you want to log into
    Connect as that user.

  • How to disable selection of root node in JTree

    Hi all! Thanks for taking a minute to read my post!
    I am writing a really basic JTree for showing a list of items.
    Here is some of the code:
    /** Create a basic tree **/
    DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("Title");
    DefaultTreeModel treeModel = new DefaultTreeModel(rootNode);
    JTree tree = new JTree(treeModel);
    /** Method to return the string of the current highlighted selection **/
    public String getSelectionString()
    DefaultMutableTreeNode node =
    tree.getSelectionPath().getLastPathComponent();
    return (String)node.getUserObject();
    I would like to disable selection of the root node of my JTree.
    Thus, if I make a call to getSelectionString() above, it would return null instead of the string that represents the root label.
    I have read the following forum on disabling various TreePaths and TreeNodes in a JTree:
    http://forum.java.sun.com/thread.jsp?forum=57&thread=224691
    This forum suggests implementing the TreeSelectionListener interface and the TreeSelectionModel class and over-riding the addSelectedPath() methods. I tried this suggestion, and I was able to enable and disable the different children of the Jtree, but the root of the JTree would not disable.
    I suppose that I could just simply remove the visibility of the root node, but I really want to avoid that option if possible.
    Wait --- let me be clear ---- I want to disable the selection of the root node only - still allowing selection of all its children.
    Any suggestions?
    Am I missing something really simple here?
    Did I explain my problem clearly?
    Thanks in advance!
    jewels

    simply try this..
    in the
    public void valueChanged(javax.swing.event.TreeSelectionEvent event);
    method of TreeSelectionListener impelentation get the
    TreePath tp = event.getPath();
    from TreePath get the component and then remove the selection from the treePath if it is the node u were checking/root node in this case
    tree.getSelectionModel().removeSelectionPath(tp);
    Try out....

  • How to Charge Macbook pro unibody? correct way

    Hi there, I have a question. just bought my Macbook pro unibody last week.
    I want to know how to charge Macbook pro the correct way ?
    When im working. should I charge all the time ? I should wait until the battery drain 10% left ?
    When is the best time to charge the battery 75%,50% or less that 10% ?
    Should I turn off asap when the charger once the green light turn on ? should I leave overcharge ? normally I charged mac at night which more than 8 hour charge , is this good ?
    Thanks guys.
    E

    Here is apple's instructions in calibrating the battery KB Article
    As for leaving it plugged in, that's the normal process most people do, there is circuitry in the computer to ensure the battery does not get over charged. Aside from calibrating it, I'd avoid any deep cycles, that is draining it completely, you're better off plugging it in when you have the opportunity and not wait until the battery is nearly drained. Deep cycles can shorten the life span of the battery.

  • How to disable IE Security Warning on opening a "local" visio file with Visio Viewer ActiveX?

    Hello all,
    Everyone knows that Microsoft released ActiveX based Visio Viewer for free and allow the users to open Visio drawing and view/print via IE browser.
    The problem that I am facing is that some users are complaining about IE browser's security warning on "active content to run in files on My Computer".
    It means that opening .VSD files from the network, internet, intranet would be all OK but if the user wants to open .VSD files from the local hard drive (or open it as a mail attachment, which will extract it to a temp folder), it prompt the user to select "Allow Blocked Content" EVERYTIME they open them.
    I know that I can GLOBALLY disable this warning by going through Tools - Internet Options - Security section and enable "Allow active content to run in files on My Computer" but I hope that there is a way (or workaround) to allow them by file type or location, etc.
    Questions:
    1. Is there any way to disable those warning for all .VSD only while we still UNCHECK the option on Internet Options?
    2. Is there any 3rd party Win32 based viewer which wouldn't have those restriction?
    3. Is it safe assumption that McAfee VirusScan and Host IPS protection is sufficient enough to remove the IE's security warning feature?
    Thanks in advance?
    Young-

    Are you able to host/launch the VSD file via an HTM page? In that case you can format the HTM page as shown below. This will trick IE into thinking it is loading the file off of a website. Commonly called 'mark of the web'.
    <?xml version="1.0" encoding="utf-8" ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- saved from url=(0014)about:internet -->
    <html>
    </html>

  • Using Report Catergory and how to Disable 'Select Range button on screen'

    Hi All,
    I am using logical Database PNPCE and I have created my own report category and I would like to disable the 'Select Ranges'
    button that shows to the right of my field for Organization Unit as I would like them to be restricted to only one entry.
    thank you,
    KW

    I have tried this in my INITIALIZATION of my program but no luck... how is there a way to accomplish this? Remember I am trying to restrict the range selection on my report category that is attached to my LDB PNPCE.
    * Define the object to be passed to the RESTRICTION parameter
      DATA lv_restrict TYPE sscr_restrict.
    * Auxiliary objects for filling RESTRICT
      DATA lv_opt_list TYPE sscr_opt_list.
      DATA lv_***      TYPE sscr_***.
    * KIND = 'A': applies to all SELECT-OPTIONS
      MOVE: 'A'    TO lv_***-kind,
      '*'          TO lv_***-sg_main,
      'NOPATTERN'  TO lv_***-op_main,
      'NOINTERVLS' TO lv_***-op_addy.
      APPEND lv_*** TO lv_restrict-***_tab.
      CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'
        EXPORTING
       program                      = sy-repid
       restriction                  = lv_restrict
    *   DB                           = ' '
    * EXCEPTIONS
    *   TOO_LATE                     = 1
    *   REPEATED                     = 2
    *   SELOPT_WITHOUT_OPTIONS       = 3
    *   SELOPT_WITHOUT_SIGNS         = 4
    *   INVALID_SIGN                 = 5
    *   EMPTY_OPTION_LIST            = 6
    *   INVALID_KIND                 = 7
    *   REPEATED_KIND_A              = 8
    *   OTHERS                       = 9
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Edited by: Keith Warnock on Jan 13, 2011 8:30 PM

  • How to disable Java Security Warning

    Hello Friends
    I am running different versions of JRE on a machine due to specific application exigencies.
    However I noticed that when entering on the application using the lower JRE Version,the following warning message is being obtained.
    The application requires an earlier version of Java.Do you want to continue.
    I have searched on the net..and someone advised to disable next generation Java Plug in.Apparently it solves the issue.
    But I see several advantages we get by enabling this option.Can we disable it or any other way..I can avoid seeing this warning message.
    Regards
    Kam.

    Hi Stuart,
    in Security Warning is text "The certificate used to identify this application has expired". When selected "More Information" -> "View Certificate Details" an certificate for SAP America Inc is visible. Validity of certificate is:
    [From: Thu Sep 12 03:00:00 EEST 2013,
    To: Fri May 30 02:59:59 EEST 2014]
    When I open Router Maintenance in another SAP ME installation validity of certificate is:
    [From: Thu May 27 03:00:00 EEST 2010,
    To: Sun May 27 02:59:59 EEST 2012]
    Where this certificate is located in application server? Is it in code of SAP ME in application server?
    Is it not possible to renew certificate?`
    Regards,
    - Jukka

  • How to disable selective cells in a column of a table?

    Hi
    I have a Table UI element having 5 columns. 4 of this are non-editable and only one is editable i.e. having input field . The data is picked from the backend. The 5th column also gets default data from the backend, which the user can later on change.
    But there is a condition, that only the input fields from that row onwards should remain enabled whose month field matches the current month. Rest all should become disabled or invisible.
    I worte the code in the wdModifyView() which picks the current date, and then in a loop it checks all the rows for the condition. If it matches the condition, it comes out of the loop, else it sets the enable property of input field to false.
    But when i run this application, all the cells become disabled, not selective cells.
    Is there a way in which I can sort this problem, any API using which i can access each cell by its row number and column number and then disable it.
    If anybody could please help, it is urgent.
    Thanks & regards,
    Anupreet

    Anupreet,
    Create a subnode with cardinality 1..1 and boolean attribute IsEnabled right under your data node. Write a supply function for this subnode, and set boolean attribute value depending on month in parentElement (parameter of supply function). Then bind InputField "enabled" property to this boolean attribute.
    VS

  • How to disable selection of  End Date depending on start Date.

    Hello,
    I have  2 DatePicker controls
    1) Start Date
    2) End Date
    When I select a start date  in  date picker depending on that  it should disable the  selection of  dates less than  Start date in End date Date Picker.
    Could anyone please provide solution for it.
    Thanks & regards,
    Viswanath

    You can always check UI5 core files and extend it. FYI, most of UI5 calendars are based on "MobileScroll" UI library, e.g.
    DateTimeInput - Mobiscroll - Demos and Examples - Date &amp;amp; Time - Date with min and max
    DatePicker - Mobiscroll 2.15.1 Documentation - Calendar
    Below you can find few extension examples:
    sap.m.DateTimeInput extend- JS Bin - Collaborative JavaScript Debugging&lt;/title&gt;  &lt;link rel=&quot;alternate&quot; type=&quot;application/jso…
    sap.m.DatePicker extend -> JS Bin - Collaborative JavaScript Debugging&lt;/title&gt;  &lt;link rel=&quot;alternate&quot; type=&quot;application/jso…
    Regards,
    Vladimir

Maybe you are looking for

  • Load Balancing Server Error

    Hi Expert's           I am working on Netweaver BI integrated with EP. while creating JCo destinations for both  model and meta data, we have an option of selecting load balancing server and application server. the connection with application server

  • Sort and view contacts by company

    Our company would like to sort and view all contacts in our iPhones and iPads by company and not a person's first or last name.  From all my research it appears that iOS is not capable of doing this. We consider this very important and would like to

  • Date field patterns and barcodes

    I have a date field that is mapped to a barcode.  the date field has a pattern > Data of date {YYYYMMDD} because the target system requires it without the dashes. However when the barcode generates it always encodes YYYY-MM-DD (ie. WITH THE DASHES). 

  • When I drag in a photo it shows as a previous photo?

    I can't think of a good way to explain my problem so I made a very short video to show it. Can someone please help me? This project is important and I can't continue until I fix this. See the video here: http://www.youtube.com/watch?v=G8H6xhrIjVI

  • I GET AN ERROR X-86 WHEN INSTALLING A PROGRAM FROM AHIMA VIRTUAL LAB REGISTRATION

    In my class, I need to install Virtual lab through Ahima.org (https://cernaes.cernerworks.com/AHIMA/auth/login.aspx ). While installing, I get an error stating ... "The installer has insufficient privileges to access this directory: C:\Program Files