How to disable SAVE button(in menu and tool bar)

Hi all
i have to disable the save button in menu and tool bar...
Thanks
raj

Hi,
I have an issue to disable special menu in the menu list for production supervisor responsiblity.
I am using release 12 application. I want to achieve this using custom.pll
I have used the following code in the custom.pll
     if (event_name='WHEN-NEW-BLOCK-INSTANCE') THEN
          if (form_name='GMEBDTED') then
          app_menu2.set_prop('Transact Material',ENABLED,PROPERTY_OFF);
     end if;
     end if;
But when i complied this code and reopen the form still the Transact Material in the menu list enabled.
please give ur advice
Regards
Prabu

Similar Messages

  • How to disable 'Save' button when OAF and XML Publisher integrated...URGENT

    Hi,
    I am new to the OA Framework and XML publisher. I have been working on a requirement where I am designing a new page in Manager Self Service with few fields and a submit button. Also designed a RTF template in XML publisher to display the output in PDF format.
    When the details are entered on the page and click on 'Submit' button, the PDF will Open with the data populated. This is working perfectly... thanks to the forum.
    But my issue is: When the submit button is clicked, it displayes a dialog box with Open/Save/Cancel options and if I click the 'Open', the PDF will be opened. But my client is a retail client and they don't want store managers to save this PDF so either I have to skip this dialog box and directly open the PDF or I have to disable the 'Save' on the dialog box.
    Gurus -- Please help me how to achieve this. This is very urgent
    Below is the piece of code I am using in the controller to generate the PDF.
    TemplateHelper.processTemplate(
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getAppsContext(),
    APP_NAME,
    TEMPLATE_CODE,
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage(),
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getCountry(),
    inputStream,
    TemplateHelper.OUTPUT_TYPE_PDF,
    null,
    pdfFile);
    Thanks in Advance,
    Naren

    Frank, thanks for the update.
    But do you want me to try ControllerContext.getInstance().getCurrentViewPort().isDataDirty(); in button disable property?
    I have written one method in my am like
    public boolean isTransactionDirty(){
    return getDBTransaction.isDity();
    and exposed that method to client side and i try to use this method in my button disable property as
    disable#{bindings.isTransactionDirty.execute} but this is not working.
    Thanks

  • How to disable save button on selection screen (1000) run from other report

    Hi Experts,
    Can any one let me know how to disable save button on selection screen (1000) run from other report.
    Say I am running from report R1 which submits report R2, but the save button should be disabled on
    report R2(selection screen 100).
    Thanks in advance.
    Regards
    RP.

    Hi RPReddy16 ,
    Try this:
    DATA :BEGIN OF t_extab occurs 0,
                     fcode like rsmpe-func,
                 END OF t_extab.
    REFRESH T_EXTAB.
    MOVE 'SAVE' TO T_EXTAB-FCODE.
    APPEND T_EXTAB.
    CLEAR T_EXTAB.
    SET PF-STATUS 'STATUS' EXCLUDING T_EXTAB.
    Regards,
    José

  • Indesign cs6 menu and tool bar disappear between windows using mission control in mountain lion

    heres 2  screen grabs before and after. while navigating between 'spaces' using mission control in mountain lion. issue -  the menu and tools bars disappear - not all of them just parts of them. to get back i hit 'tab' button twice which hides and shows tools. very annoying - does anyone know of a fix or is this another bug which i have to live with. im using a macpro june 2012/running 10.8.4 and 2 screens - left for artboard - right for all tool windows.

    thanks steve - yes that works as does using the tab key - all well....until i move to another 'space' and then come back again.
    for example: my setup is like this - no2 space has indesign project. no3 space has photoshop. so im working on a page within indesign and i need to edit an image- i double click the pic and it opens in photoshop on the other 'space' save the file and go back to indesign to update pic and find menu/tools all over the place - so hit tab twice back to normal -  until i 'move' out of that space into another - photoshop/ mail/ whatever - as i toggle between spaces the indesign menu will always be 'corrupt' for a better word. hope that makes sense.

  • Size of menu and tool bars?

    The menu and tool bar items are nearly micrscopic in size.  How can I resize them so they are readable to me?

    In general, you can't.
    If you're referring to the Organizer, you can try Edit...Preferences...General and select "Use System Fonts".
    If you set your Windows Display Preferences to 115%, it might help, but also can cause problems with menus, dialog boxes, etc., not displaying correctly.
    Ken

  • Application Builder removing the menu and tool bar

    In Labview 8 we can use the application builder to disable the tool bar on the VI when during the build. Under Labview 8.2, the source file setting no longer affects the menu and tool bar of the top level VI. In my particuliar case, I want to remove the ability of a user to abort the VI from running after the application build, but I want the abort ability during the debugging phase.
    Under Labview 8.2, you have to alter the custom window for the VI. In the previous version, you can do it on the build module.

    Have you tried to set the properties of the Main VI being built?  It should default to these settings but you can still change them.  See attached picture from 8.20
    Matthew Fitzsimons
    Certified LabVIEW Architect
    LabVIEW 6.1 ... 2013, LVOOP, GOOP, TestStand, DAQ, and Vison
    Attachments:
    AppBuilder8_20.JPG ‏51 KB

  • Menu and tool bar text font sizes?

    Is there any way to change the menu and tool bar text font sizes?

    If you are talking with refernce to photoshop elements then let me tell  you there is no option in PSE to change "Menu and tool bar text font " sizes. This option exists in Photoshop in  Edit>Preferences>Interface."
    Thanks,
    27Prac

  • How to Disable Save Button in interactive form via sfp

    Dear,experts
    My requirement is that Disable Save Button in interactive form via sfp .Is there any options to do this or write Javascript/Formcalc.Please help!
    Thanks
    Vince.

    I found a adobe documentation that says that If you want to disable some toolbar buttons, you will have to use application-level Javascript. Looks like it is not possible from ADLC
    Place the following Javascript code inside a .js file in
    %ProgramFiles%\Adobe\Reader 9.0\Reader\JavaScripts   to disable the toolbar buttons:
    // [File - Create Adobe PDF Using Acrobat.com], plus toolbar button
    app.hideMenuItem("WebServices:CreatePDF");
    app.hideToolbarButton("Weblink:CreatePDF");
    // [File - Collaborate], plus toolbar button
    app.hideMenuItem("Annots:FileCollaboration");
    app.hideToolbarButton("Annots:CollabToolButton");
    app.hideToolbarButton("CommentTask");
    app.hideToolbarButton("SigTaskButton");
    app.hideToolbarButton("SaveFileAs");
    app.hideToolbarButton("Save");
    Regards
    Sandy

  • HOW to Disable a button in ALV on application bar

    Hi,
        I have a button in ALV program and i want to disable that button which is on application bar is there any way plz tel me
    Regards,
    Saleha

    hi ,
    Copy the STANDARD status of the function group SALV into the application program
    i.e  in ur prg....
    see below ex....
    data:
      t_spfli like standard table of spfli.
    DATA:
      w_program LIKE sy-repid.
    SELECT *
      INTO CORRESPONDING FIELDS OF TABLE t_spfli
      FROM spfli.
    MOVE sy-repid TO w_program.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
       i_callback_program             = w_program
       i_callback_pf_status_set       = 'STATUS'
       i_structure_name               = 'SPFLI'
    TABLES
        t_outtab                       = t_spfli
    EXCEPTIONS
       program_error                  = 1
       OTHERS                         = 2
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *&      Form  status
          text
         -->P_T_EXTAB  text
    FORM status USING p_t_extab TYPE slis_t_extab.
      SET PF-STATUS 'DEMO' EXCLUDING '&ODN'.
    ENDFORM.                    "status
    <b></b><b></b><i></i>
    regards ,
    Naresh.

  • How can i disable a button in the application tool bar of a standard trans?

    Hi Experts,
       I want to disable the create button in the application tool bar of the standard transaction cv03n. Is there any method?

    Hi,
    In the include 'LCV110F19', the GUI is being called for the screen.
    This is the actual code being called.
    WHEN c_dms_create.
          SET PF-STATUS 'D100CREATE'.
          SET TITLEBAR  'D100CREATE'.
    You can try to code something like below.
    DATA: itab TYPE TABLE OF sy-ucomm.
    APPEND 'CREATE' TO itab.
    SET PF-STATUS 'D100CREATE' EXCLUDING itab.
    Kindly reward points by clikcing the star on the left of reply,if it helps.

  • How To Disable Save Button in a PDF

    I have Creating One Application in Oracle Forms 6 and Run in Web
    In that I have Showing a Pdf Fie using a WEB.SHOW_DCOUMENT.
    But I have to Disable a Save and print Button in Display pdf file in a IE.
    It’s Possible then help
    thx

    The best way to find out something about it is to type in www.google.com these key words: disable save adobe
    Then you can read more about it on this links:
    http://www.adobeforums.com/cgi-bin/webx/.3bb65a55
    http://www.adobeforums.com/cgi-bin/webx/.3bc076e4
    http://www.acrobatusers.com/forums/ask_an_expert/questions/view/1222/
    It's interesting question and very important but looks like unsolved...

  • How to disable "Save" button in FileDownload Element??

    Dear All,
    I have an urgent case which <b>requires not to show the "Save" button in FileDownload element box</b>.  I only want "Open" and "Close" button shown.  How to achieve this?
    thanks,
    Zita Liao

    Thanks all,
    But I use this piece of the code....and only the pdf file is opened directly.
    Other types such as .doc or .ppt, the system still pops out the "SAVE" window though.  How to deal with other types and let them open directly??
    try{
                               IWDCachedWebResource pdfResource=WDWebResource.getWebResource
                           (out.toByteArray(),binaryType.getMimeType());
                           wdComponentAPI.getWindowManager().createExternalWindow(
                             pdfResource.getURL(),"Report View",true).open();
                          catch(Exception e)
                           wdComponentAPI.getMessageManager().reportException(
                           e.getLocalizedMessage(),
                           true);
    thanks,
    Zita

  • How to create print button in the Application tool bar in the Std.SAPscreen

    Hi,
        I want to create a print button in Production order display:header screen in  CO03 transaction.In that after Viewer button(i.e. in application tool bar) ,I have to create this print button. Can anyone suggest me How do i need to proceed further?

    hi,
    Use this code..
    REPORT  Z_TEST999                               .
    DATA itab TYPE TABLE OF sy-ucomm.
    PARAMETERS test(10) TYPE c.
    AT SELECTION-SCREEN OUTPUT.
      APPEND: 'E' TO itab.
      CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
           EXPORTING
                p_status  = sy-pfkey
           TABLES
                p_exclude = itab.
    Regards,
    Sailaja.

  • Disable save button in vl01n

    hi
         can you everybody tell me how will disable save button in vl01n
        please reply me
    Thanks
    with regards vijay

    hi,
    i could not understand ur query? pl. put it in a right way, then only it would be possible for us to give you the prompt reply.
    regards
    KR

  • Disable 'SAVE' button on 'FILE' menu on some forms using personalization

    Hi there,
    I need to disable 'SAVE' button on 'FILE' menu on some forms using personalization. Please let me know if you know how to do this. Currently we have done this through custom.pll and we are trying to phase out custom.pll. Any help is appreciated.
    thanks
    Sudeep

    whether i know u cannot disable SAVE toolbar through Personalization. You do it with custom.pll.
    CHECK FOLLOWING LINK
    Disable Save item from Contrl Menu
    Pradhyumn Sharma

Maybe you are looking for