How to disable Edit in Multiselect Prompt

Hi ,
I've selected mutiselect prompt in my dashboard, Can any one let me know the scripts to disable the edit button in prompt.
Thanks,
Malli

Hi ,
Just try to remove the following code in
OracleBI\web\msgdb\messages\promptviewtemplates.xml
Under WebMessage name="kmsgGFPMultiSelectEditDialog" translate="no">
in that file remove the below code
sawm:setParam name="editor">
<textarea cols="40" rows="7" id="idGFPMultiSelectEditArea" class="EditTextArea" />
</sawm:setParam>
So that even if you click edit option it will allow you to edit.If you want to remove that completely just check the same xml file you may get some option.
I think this is helpful for you.
Thanks,
Ananth

Similar Messages

  • How to disable edit link in interactive report

    Hi,
    How to disable edit(e3.gif image) link interactive report.
    Thanks,
    nr

    Hi Jari,
    Apex Version:3.2
    I created on Interactive report on emp table I have created edit link on empno using Icon5 image.
    Report Attributes>Column Attributes>Column Link.
    I can Hide the Icon5 using following script but I need to disable only. I did not get any disable() method in Jquery.
    Region Id:R812581842900385833
    $(document).ready(function() {
    var viewOnly=document.getElementById('P1_ITEM1').value;
    if(viewOnly == "0")
    $("#R812581842900385833 img").hide();
    thanks,
    Nr
    Edited by: pnr on Mar 13, 2012 6:09 AM

  • How to Disable edit option in Logon pad

    Hi,
    How to disable edit option in logon pad
    thanks

    Actually if you are looking to disable the "Edit" option so end users cannot change or modify the existing  Logon Pad options systems, you can.
    What version are you using for SAP GUI?
    7.10 has icons to the right which allow changes. (New, edit, etc)
    7.20 has icons across the toolbar at the top. (pencil, paper, trashcan)
    For both versions, Navigate to C:\Program Files\SAP\FrontEnd\SAPgui (Default location)
    In there you will find 2 executeables:
    saplgpad.exe
    saplogon.exe
    If you run the saplogon.exe it will allow edit, delete and modify
    If you run the saplgpad.exe:
    On the 7.10 version the buttons are gone.
    On the 7.20 version, the buttons are grayed out.
    Hope this is what you are looking for.
    Regards,
    Zecher

  • How to disable edit.delete in oracle forms 11i?

    i was able to use APP_SPECIAL.ENABLE('EDIT.CLEAR',PROPERTY_OFF); to disable the clear button but also want to disable delete button,
    i added the APP_SPECIAL.ENABLE('EDIT.DELETE',PROPERTY_OFF); in the pre_block and pre_query trigger but not able to disable the delete item from edit menu.
    Am i doing sometjhng wrong?

    Hi;
    Please check
    How to disable delete button in a form
    How to disable delete button in a form
    Regard
    Helios

  • How to disable edit qury in Query Manager.

    Hi,
    We written query and normal user don't want to edit query only they have to execute the query. in authorization setup under Extension Tools  we have only Define Formatted Search and Manage User Fields and Execute Commands.how we can disable to edit query for particular users in SAP B1. we are using SAP B1 2005 PL43.
    Regds,
    Samapth Kumar.

    In Authorizations window > go to Reports > Query Wizard > No Authorization

  • How to disable "Edit in browser" button in office documents that open in browser

    guys,
    Environment:
    sharepoint 2010
    installed Office Web app
    i installed office word apps and integrated it with sharepoint 2010 and all the office documents now open in the browser. but this also give the qualified users access to the button "Edit in Browser" while viewing the document in the browser (and if the user
    selects to do this and saves then it creates an office 2010 document in the document library), is there any way to disabled the "edit in browser" option completely for all the users, i dont want any users to edit documents online.
    thanks
    sameer.

    Ok so i came up with hack to 'hide' the edit link ..
    You need to edit the css file here on your server
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\INC\1033\WordViewer\WordViewer.css
    and add this 
     div [title="Edit in Browser"]{display:none};
    And to hide the edit capabilties for Powerpoint app - add this jquery
    $('iframe[id*="MSOPageViewerWebPart"]').ready(function () {
            $('iframe[id*="MSOPageViewerWebPart"]').contents().find('.ms-cui-ctl-medium').each(function () {
                if ($(this).text() == "Edit in Browser")
                    $(this).hide();
    Obviously not great solutions, but works for now.

  • ALV: how to disable editable cell and F4 in certain rows only.

    I am building a table maintenance front-end with an ALV grid using OOP concept.  Certain fields are editable and also have customised search helps assigned to them in the ALV structure defined for the grid. What I want is where I have identified an entry in my database table as being locked by another user, I want to grey the line out on the ALV grid so that the entry cannot be edited and not have f4 input whilst this entry is locked by another user.
    I can grey the line out or disable F4 but not both at the same time.  If I disable the cells of the row concerned using MC_STYLE_DISABLED, the F4 is still active and will change the contents of the cell concerned via the data_changed event method in CL_GUI_ALV_GRID.
    I have used MC_STYLE_DISABLED where I have declared  a layout in my table similiar to this:
    DATA: BEGIN OF OUTPUT OCCURS 0,
    FIELD1,
    FIELD2,
    STYLE TYPE LVC_T_STYL,
    LOCK TYPE C.
    END OF OUTPUT.
    DATA: ls_celltab TYPE lvc_s_styl.
    * Where lock identified, field LOCK set to 'X'.
    LOOP AT OUTPUT where lock = 'X'.
    ls_celltab-fieldname = 'FIELD1'.
    ls_celltab-style = cl_gui_alv_grid=>mc_style_disabled.
    APPEND ls_celltab TO OUTPUT-STYLE.
    ls_celltab-fieldname = 'FIELD2'.
    ls_celltab-style = cl_gui_alv_grid=>mc_style_disabled.
    APPEND ls_celltab TO OUTPUT-STYLE.
    ENDIF.
    append OUTPUT.
    I have tried adding MC_STYLE_F4_NO to field LS_CELLTAB-STYLE2 but this does not do both actions atthe same time.
    Can anyone suggest what I might be doing wrong or an alternative way around this?
    Many thanks
    Regards
    Larissa

    As I have explained, I have fields that are editable AND are F4 enabled.  What I want is for certain rows of the ALV that I do not want any procesing to occur to make all fields in that row not available for input AND not f4 enabled.  I read a lock using a lock object.  If the entry in my ALV matches the key locked in the lock object, I want that line to be in display mode only in the ALV with no F4 help being able to be called.  It happens on the grid frontend when I press enter and have checked if any of my entries in my ALV are already locked by another user. The code is too long to post here. I can disbale the editable fields using MC_STYLE_DISABLED as described above but then the little drop down to enable F4 input is still visible against the field. 
    I have got round it by calling the f4 in event HANDLE_ON_F4 to not go via the search help and set er_event_data->m_event_handled = c_yes so that the F4 hit list does not appear, but I want to get rid of the drop down marker in that field in that instance.
    Hope this is a little clearer now.
    Larissa

  • How to disable editing Word doc created thru CFCONTENT

    I generate a lot of Word Docs from database queries using
    <CFONTENT> and need to disable ability edit displayed word
    doc while allowing printing, so that printed doc will always
    reflect content of database and cannot be edited. Any ideas?

    Sleinaddet wrote:
    > I generate a lot of Word Docs from database queries
    using <CFONTENT> and need
    > to disable ability edit displayed word doc while
    allowing printing, so that
    > printed doc will always reflect content of database and
    cannot be edited. Any
    > ideas?
    PDF.

  • How to disable the Time Machine prompt

    Even when Time Machine is turned off every time our students access firewire drives, they will be prompted by TM to backup. This will be confusing and inconvenient for everyone. Anyone have a solution?
    Thanks.

    This is a guess... I have not tested the following but seems like it should do the trick. Please post back to confirm:
    Open /System/Library/LaunchDaemons/com.apple.backupd-attach.plist in the Property List Editor. Expand the Root arrow and there is a property named 'StartOnMount'. Set this to No, Save and (probably) restart. The TM dialog should not pop up after this on a disk attach.

  • Disable EDIT in Maintenance View - How ?

    I coded this function in PBO.
    There are 2 screens.
    0100 - all records listing
    0200 - double click on the record in 0100 screen and then, go into specific record details.
    i allow modification in  this screen.
    MODULE disable_inputs OUTPUT.
    If SY-DYNNR eq '0100'.
       LOOP AT SCREEN.
          screen-input = '0'.
          screen-active = '0'.
        ENDIF.
       ENDLOOP.
       modify screen.
    endif.
    ENDMODULE.                 " disable_inputs  OUTPUT
    Can somebody enlighten me on how to disable edit in the first screen ?
    Thanks.

    Try to change this way
    MODULE disable_inputs OUTPUT.
    If SY-DYNNR eq '0100'.
    LOOP AT SCREEN.
    screen-input = '0'.
    screen-active = '0'.
    modify screen.   " <<<<
    ENDLOOP.
    endif.
    ENDMODULE.

  • How to disable "Open, Save and Save As" prompt

    I'm using IE 10.
    I'd like to disable the prompt "Open, Save or Save as". Each time I tried to any document (ex. DOC or PDF file), IE will popup the follow prompt: "What do you want to do with ..." 
    I saw there are some similar threads, but they are particular for SharePoint. 
    Thank you!
    Peter

    Each time I tried to any document (ex. DOC or PDF file), IE will popup the follow prompt: "What do you want to do with ..." 
    You might be able to add Open with... to a right-click menu.   But that will probably only help for files which are local, e.g. don't need to be downloaded.  I think the reason for the prompt is essentially to help route the download and notify
    users of the fact that if they just try to open it they will be opening a temporary file.  E.g. it typically always goes into the TIF first.  You could probably confirm and refine these ideas using ProcMon, e.g. looking for tests of registry
    values and writes of files.
    For example, I just did a BING search for  filetype:doc, did a right-click Open (as one of the other thread's responders had suggested) and still see the above prompt, because the file has not been downloaded yet.  That's IE's job so that's how
    it does it, with a prompt.  But then since there is a filetype association for the .doc extension when I choose Open no more intervention is required (although as the prompt notes "The file won't be saved automatically." so if a user tries to update it,
    e.g. a Word document or a spreadsheet, anything they do would only be preserved if they did a File Save As... or whatever those applications provide for that use case.)
    In fact, that warning is probably the main reason for the prompt when such an explicit Open command is given.  It would be interesting to see if IE could take advantage of some information left in the filetype that would indicate that it wouldn't matter
    if the file was temporary because it couldn't be reused anyway--for example, if the program associated with the open action could not update the file, examples being Acrobat Reader and WordViewer.   Again, I think the simplest way to find out would
    be to trace what happens and make changes to try to exploit the possibilities implied by the trace.
    On another tack you could see if there are any hints or tips given by using
    FileTypesMan  from NirSoft.  E.g. it might help you find some particular values to try for EditFlags and BrowserFlags  (some obscure registry values which are somewhat obsolete but may still have at least some of their original
    effect).
    FYI
    Robert Aldwinckle

  • How to disable the edit Permission after the task approval in project server 2010.

    Hi ,
    Can this be done.
    How to disable the edit Permission after the task approval in project server 2010.
    I mean How to Disable approve/Reject Permission Once task approved in project server 2010.
    Any Help Would be more than Welcome.

    Hi Rohan,
    Just talking about the tool capabilities, preventing a task approver (status manager) to approve/reject updates once he has already approved once is not possible out-of-the-box. You grant permissions to user: if you grant a user to approve task updates then
    he has the permission to approve updates, no matter if it is the 2nd or 3rd time the task is approved or rejected.
    Then of course you could do not custom development to do that.
    I'd say that in order to help you, we would need to understand a little bit more your business need. Why do you need to achieve such a goal? We can surely propose you workaround.
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • How to disable/enable the cells for editing column wise in JTable in java?

    Hi All,
    Can any one tell me how to disable the cells for editing by column wise in JTable?
    Here depending upon the radio button selected, I need 2 disable some columns for editing
    and enable some columns for editing?
    how can I do tat using JAVA?
    Any sample code is of great help to me.
    Thanks in Advance

    http://java.sun.com/docs/books/tutorial/uiswing/components/table.html
    ~

  • JTable- how can i disable editing

    hi
    could anyone please lemme know if there is any way to disable editing in a jtable. i tried disabling it, but ;) hehe, well that diables selecting a row also then. One more thing, is there any simpler method to add scroll bars to a panel or frame without having to place the panel itself into a jscrlolpane, 'cos im having too many other problems when i make a nested panel. if anyone has a solution , please do tell me
    thankyou

    u can do it when u use model for the table.
    use AbstractTable model and over ride isCellEditable method returning false..
    Check sun demo examples how to use AbstractTableModel...
    very simple right....hihihi..

  • How can I disable edit on a UITextField after editing once

    I have a UITextfield and I want to disable editing after the phrase is entered. Basically once I press done on the keyboard I want to disable editing this field again.
    Can anyone give me suggestions on how I can do this?
    thanks,
    Max

    UITextField_Name.enabled = FALSE;

Maybe you are looking for

  • 9.0.1 iTunes better than 8, BUT

    Basically, the same problems that existed with iTunes 8 exist with iTunes 9.0.1 with regards to 2nd gen Shuffle. However, it does work a little better, if you don't mind NEVER getting to pick what you put on the iPOD. The method for using iTunes 9.0.

  • What is needed on non-weblogic client to make soap request

    Hi, I am trying to make a soap request from a client that is not weblogic to a weblogic6.1 server. I was under the impression that all I needed was the client.jar created by wsgen. But when I try to access the service through the client I get the bel

  • Macbook air 13" require EFI reset why?

    how to reset Macbook air 13" require EFI password?

  • Simple Server/Client Applet example code ???

    Hi to all. I would like to ask if possible to someone to tell me some example code to do this simple thing: I want an applet showing only a TextField and a button. When the user writes something on the textfield and press the button, it should send t

  • Oracle9i - Apache HTTP Server

    I just installed Oracle9i database and everytime I reboot, the Apache HTTP Server trys to start. It gets and error and the error log fills up until my hard drive is full. here is the error log... [Sun Jan 18 08:41:53 2004] [warn] FastCGI: server "c:/