Hide the Save button in tool bar in pdf form

Hi All,
I need to hide the save button in the tool bar in pdf form out put. I need not hide the print button, hand tool and etc.
I have seen some forum threads,but i am not able to get the answer.
I have refered this links
http://help.sap.com/saphelp_nw04/helpdata/en/e1/fd9841e2ebb05fe10000000a1550b0/frameset.htm
How to hide tool bar from Adobe Form
The above link contains some scripts,The code id used for hide the hole tool bar not only save button.
I need to hide only save button in the tool bar.
How to hide the save button in the tool bar ?
Thanks and regards,
Boopathi M

Adobe Designer 7.1 uses XFA 2.4
If you can upgrade to Adobe desinger 8.2 to be abel to use XFA 2.8 you can code in the following way:
Write the following code in the preSave method
if (do_not_save_condition == 1) then
  xfa.event.cancelAction = 1
endif
Adobe Quote
cancelAction specifies whether to cancel a forthcoming action.
This property applies only to the following scripting events: prePrint, preSubmit, preExecute, preOpen, and preSign.
The user experience is determined by the scripting event that contains the cancelAction reference:
u2022  preOpen - The drop-down list does not expand to display the list of values. 
u2022  preSubmit - Form submission does not occur. 
u2022  preSign - The form is not digitally signed. 
u2022  prePrint - No print dialog boxappears, and the form is not printed. 
u2022  preSave The form is not saved. The user experience is that no action occurred. 
Edited by: Reema Shahbazkar on Sep 10, 2008 7:54 PM
Using this, the save button will still be visible but, you can prevent the form from being saved.

Similar Messages

  • How to inactive the push button on tool bar of alv report

    hi masters,
    i m working on the ALV interactive report, in this report i have to do 2 different operation on 2 screen.
    eg.- on first screen i have the push button for 'data' and on second screen i will have the push button for 'upload'.
    in this i don't want to give the 'upload' button on first screen and same i don't want to give the 'data' button on 2nd screen.
    i tried with using the 2 different gui status and 2 different PF-STATUS but its not working.
    anyone can tell me how i can deactivate the 'upload' button on first screen and how i can do same for 'get' buttton on 2nd screen.
    regards,
    vicky

    HI Vicky ,
                      if u want an interactive ALV report , there are lot of forums already having the solution for that , but let me give u the solution anyway.
    In the function module "REUSE_ALV_GRID_DISPLAY" , import parameters
         I_CALLBACK_PF_STATUS_SET          = 'FLIGHT'
         I_CALLBACK_USER_COMMAND           = 'BUTTON_CLICK'
    has to be supplied to this function module . The PF status is where u hav created the two buttons , that PF status has to be given here .If the user clicks on the button then it is handled by the form routines . Inside the sub-routine based on the button the user has selected u could perform the action.
    FORM FLIGHT    USING RT_EXTAB TYPE SLIS_T_EXTAB.
      SET PF-STATUS 'FLIGHT' EXCLUDING RT_EXTAB.
    ENDFORM.
    Here the "Flight" is the PF_status .
    FORM BUTTON_CLICK USING UCOMM type SY-UCOMM
                           SELFIELD type SLIS_SELFIELD.
      CASE UCOMM.
        WHEN 'BUTTON!' .
    write ur code for button 1.
      WHEN "BUTTON"
      *Write ur code for button2 .
    end case.
    endform.
    for any queries reply back.
    regards

  • How to hide either the File menu or the Save button.

    Hello.  Recently we upgraded Adobe Reader from 8.0 to 9.0 on our kiosks and we are having a problem.  We used to be able to hide the save button when viewing a PDF file on a web page through a javascript inside the javascripts folder.  However, while most other buttons seem to be hidden, the 'Save' button next to the Print button on the tool bar is not responding to our script.  I think I should mention that you can not right click or press CTRL on our kiosks.
    Here's what we have tried:
    app.hideToolbarButton("Download");
    app.hideToolbar("FileToolbar");
    app.hideToolbarButton("Save");
    app.hideToolbarButton("SaveFileAs");
    app.hideToolbarButton("SaveTo")
    app.hideToolbarButton("File")
    app.hideMenuItem("SaveTo")
    app.hideMenuItem("FileToolbar")
    app.hideMenuItem("Toolbars");
    app.hideMenuItem("File");
    app.hideMenuItem("Print");
    app.hideMenuItem("Save");
    If possible, we would like to just disabled the 'File' section that can be dragged around altogether, however since this save button is the only remaining button on that section just the code to disable it will work too.
    Also, I'm not asking to disable it, just simply hide it as if you were to right click on it, go into show/hide toolbars, and click 'File'.  We have many kiosks and doing this manually would be...  Well I got a life to live.
    Thank you!

    P.S: I forgot to mention.  If I open Adobe Reader standalone, the button is gone.  If I open it through IE the button is present. It might be because the file is already on the computer but.. I don't know.  Thank you!

  • Is it possible to hide the save function and only use the save as function in teststand

    Hi,
    When i'm done building a sequence i want to prevent other engineers to save the sequence with the same filename (or version number).
    Is it somehow possible to "hide" the save button and only use the save as function?
    Or is there another possiblity to solve my problem.
    The idea is to have a sequence called Sequence_V1.0.seq which i have build. When installing this in a factory enviroment I would like whenever there is a change needed in the sequence that the version number increases (manual action) (becomes Sequence_V1.1.seq). So from the moment you want to save i would like to only have the function save as. In this way you are obligated to fill in a new sequence name (original sequence will be read-only)
    What would even be great if there could be a log of what the changes were
    Thx!!! 

    1) You could mark the file as read-only, by default you would then not be able to save over it. The user could make it not read-only though if they know what they are doing.
    2) Another possibility is to lock the sequence file for editing (this is a teststand feature). Go to the Sequence File Property dialog, on the advanced tab, where it says Password Protection, set it to Not Editable and give it a good password. This doesn't however keep someone from saving another file to the same name as the locked one, but they at least won't be able to saved the locked file again without your password, nor will they be able to edit it.
    Hope this helps,
    -Doug

  • Hide Adobe save button

    Hi,
    Does anyone know how to hide the save button on an Adobe form?
    The reason that I am asking is that we have a save button on a Web Dynpro that saves the document to a content server, we want to disable the save button in Adobe to stop users from saving to the local machine.
    I have looked at the javascript hideToolbarButton command but it seems that this needs to go into the config.js file.  This is not a solution as the save button is then not available to pdf documents opened outside of SAP.
    Any help much appreciated.
    Thanks,
    Ian

    Hi Chintan,
    Thanks for your reply. 
    I have read through the link but unfortunately it talks about hiding the toolbar, unfortunately this would not be a solution as we require the print option.
    The link also suggests using the app.hideToolBarButton but this is not possible as this setting is stored on an ini file on the users PC and would disable the Save button for all PDF documents (i.e. when the users opens a PDF form outside of SAP the save button will not be available).
    I am not sure if it is possible but I would like to just hide/disable the Save button?
    Many thanks for your help.
    Ian

  • How to Enable the SAVE button in the Menu Bar of the Invoice Document.

    Hi.
    How to Enable the SAVE button in the Menu Bar of the Invoice Document as it is disabled for me.
    I would like to save the Invoice document in PDF  format.
    Regards
    Irfan

    Hi,
    Normally, for the archiving or generation of the invoice document in PDF format is handled by maintaining the output records through VV31/VV32 with the relevant printer, storage mode ( 3- print and archive or 2- archive only ), no. of messages ( means no of copies ) in the communication method.
    Then when you click the print button through VF03 in the print options pop-up you get a print at the physical printer and at the same time an archived copy ( PDF copy ) attached with the document.
    So, please make sure the output records are fine to allow a PDF copy generated and then try to print and check in VF03 by entering into the billing document.
    Hope this helps you.
    However, from the print preview you normally would not be allowed to save or print.
    Regards,
    Ram
    Edited by: Ramakrishna Peri on Apr 3, 2009 9:16 AM

  • Hiding the save button in transactions

    Hi all,
    Can anyone please tell me how I can hide the post button button in transactions FB60, FB65, FV60, FV65, FB70, FB75, FV70 & FV75.
    My client would want all transactions to be parked and authorised via workflow.
    Thanks for your help in advance

    Once you're in transaction SHD0, you should get to a point where there is a pop up box titled "Confirm Screen Entries".  Select Basic Data and then click the button for Menu Functions.  Open the Menu Bar and then Document.  You will see the SAVE command in here.  Click once on the SAVE and then select the Deactivate button next to the green checkmark.  That line will turn yellow, select the green checkmark or hit the enter key to return to the "Confirm Screen Entries" pop up box.  If this is the only change you would like to make, you can select the Exit and Save button.  Don't forget to Activate it as your Standard Variant.
    I hope this helps!

  • How can you remove the Save button on a survey?

    What options are there to remove the SAVE button from a SharePoint survey?
    I need to remove this if possible, I was hoping it would be as simple as editing a form in the Survey list... but that is apparently not the case.
    I need to supress the SAVE button as it confuses end users and we don't want any half completed surveys. Either it gets finished or not at all.
    Can someone hopefully provide me with an nice simple solution?  Or any solution at all :)
    Thanks!

    Hi,
    Save button on the surveys with multiple question or with branching logic enabled is an out of the box feature and it is by design.
    If you want to remove the “save” button in a survey, I think you can use JavaScript to hide this button:
    1. Open your site in SharePoint Designer.
    2. Open your survey list newform.aspx page, in the code view, find this code “<asp:Content ContentPlaceHolderId="PlaceHolderMain" runat="server"> <table>……. </table> “add the JavaScript” </asp:Content>”, add JavaScript before the “</asp:Content>” tag:
    <script>
    var x=document.getElementsByTagName("input");
    for (var i=0;i<x.length;i++)
    if (x.item(i).type=="button"&&x.item(i).value=="Save")
    {x.item(i).style.display = "none"};
    </script>
    After this, you will not see the “Save” button when create new survey response. You can also add this JavaScript in the editform.aspx page.
    Hope it can help you.
    Xue-Mei Chang

  • After installing Mavericks I can no longer save a new word document or pdf by typing the name of the destination folder in the Finder window.  The save button greys out.  Solutions anyone?

    After installing Mavericks I can no longer save a new word document or pdf by typing the name of the destination folder in the Finder window.  The save button greys out.  Solutions anyone?

    Please follow these directions to delete the Mail "sandbox" folders. In OS X 10.9 there are two sandboxes, while in 10.8 there is only one. If you're running a version older than 10.8, this comment isn't applicable.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
              Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder—not just its contents—to the Desktop. Leave the Finder window open for now.
    Log out and log back in. Launch Mail and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window.
    This action will delete any custom Mail stationery that you have created. If you want to preserve it, ask for instructions.
    If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Repeat with this line:
    ~/Library/Containers/com.apple.MailServiceAgent
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Hide the Save As dialog in the digital signature process

    Hi!
    I'm searching for a way to hide the Save As dialog when digitally signing a pdf document (embedded in a website) and instead transmit the signed document back to the website without saving it locally.
    (The reason for doing this is, that I can not be sure whether the user is capable of storing the signed document locally, recover it and send it back to the server.)
    In the "Adobe Acrobat SDK - Developing Plug-ins and Application" documentation under "Digital signature extended API", "Understanding the process" is stated that the digital signature plug-in displays the Save As dialog box. But it's not clear to me whether there is a way to suppress it and instead call some custom code to send the document to a webservice or something like that. (btw: I'm new to the acrobat sdk api)
    Could someone be a bit more specific about this?
    Are there other ways to achieve my aims?
    (To use submit buttons inside the document is not an option.)
    Thanks and kind regards
    Marcel

    Hi Leonard
    I'll try to explain in more detail what I'd like to do. :)
    Preconditions:
    - I have no controle over the forms.
    - I need to build a website hosting PDF documents for clients.
    - The client needs to be able to access these docs and digitally sign them.
    - When the client signs them, they should be stored on the website (overwrite the unsigned ones).
    Problem:
    The whole process should be as simple as possible for the client. Therefore he should not have to manually download the docs, sign them and manually upload them to the website.
    Possible solution:
    The client selects a document to sign which is then opened inside the website (aspx / custom control) by the Adobe Reader browser plug-in.
    Now, when the client signs the document I would like to catch the "Save as" dialog and instead call some custom routine to send the signed document back to the website (webservice).
    As I see it:
    We would have to write a Reader plug-in that would be started when the browser-plugin is called and could be passed the address of the webservice (to send the signed PDF). Maybe the address passing could be done by javascript, but the handling of the "Save as" dialog would probably have to be handled by a custom plug-in.
    My question:
    Is there any way to accomplish the above (if yes, how?), or are these things that are just not possible (why? ;)?
    I hope this helps to clear up things a little...
    Thanks for any help!
    Marcel

  • How to hide the Save Results Layout checkbox on the Create Saved Search pop

    I need to hide the Save Results Layout checkbox on the Create Saved Search popup. Can anyone tell me how to do it?
    This popup is used when the user is on a query (rendered by the af:query component) and they select click the "Save..." button. The have three options, Set as Default, Run Automatically, and Save Results Layout. I have an implementation that supports everything except saving the layout. So I need to hide that checkbox.
    Thanks,
    Mike

    For anybody else who needs to do this, here is how I did it.
    Add this to your css
    /* This hides the Save Results Layout checkbox on the Create Saved Search screen */
    span[id$='saveLayout'] {
    visibility: hidden;
    }

  • How to disable the Save button For a pdf?

    Hi,
    I have a requirement that when you open the livecycle developed pdf, the Save option available in the toolbar (Save As icon) and File menu of the Reader should be disabled. A button will be provided in the form separately to provide the Save functionality. Can anybody help me reg. this? Is there any setting available for this in Adobe Pro or any other tool?
    Regards,
    Maria

    It's not really difficult to disable the save button. But it depends on the context from where you want to delete it. even if you disable the save button the user has the option to print screen and create a fresh pdf. So your question has some philosophical aspects to deal with. Please mail me at [email protected] incase of further quries. I've understood your problem and have got a solution but it's not somewhat legitimate to do. I can share it with you through email.

  • HOW TO MAKE THE SAVE BUTTON IN GREY MODE IN QA32 INTIAL SCREEN

    Dear friends,
    How to make the save button , in the tcode QA32  intial screen in GREY MODE.
    As  i don't want the screen variant created by me should not be seen by the user.

    Hi
    There is one option ,You can protect yor varient but not hide it.
    To protect>QA32>Mydefault>Varient Attibute>click on protect varient.
    If you select the field Protect variant, the variant can only be changed by the person who created it or last changed it.
    I hope this can be one of the solution
    Regards
    Sujit

  • Help!!! How to implement a special useful button in tool bar?

    How to implement a special useful button in tool bar, when the button is clicked, then a menu shows under the button, just like the Internet Explorer's back button and forward button, there is a black arrow at the two buttons right, when click the black arrow, a menu shows under the back button or forward button, how to implement this in java?
    Please help!!!
    Thanks!!!

    Like an enhanced JComboBox?
    ;o)
    V.V.

  • Hide/Disable Save Button in VF04

    Hi Experts,
    Is there any way to hide or disable the save button in the transaction VF04?
    I just talk to the ABAP team and they say that it is possible by changing the standard program. This is something we would like to avoid and I wonder if there is any other way to do it.
    Any help would be greatly appreciated.
    Regards,
    Erick Acosta

    Hi Murali,
    Actually I did something very similar to your proposed solution. Using tx SHD0 It's very easy to create transaction variants, there you can customize the standar menu or buttons and then activate it.
    I did so in our DEV system, I created a transport request for the transaction variant and then imported to QAS and PRD systems.
    I really appreciate your help.
    Best regards,
    Erick Acosta

Maybe you are looking for

  • URGENT! Alive PDF - export PDF file ("my computer" prompt to save the file, not create in browser)

    Hi - I'm having issues with my code and I'm not an ActionScript coder by any means. I'm using Flash Builder 4. I've been able to figure out how to export to PNG and to XLS but PDF is really killing me. Below is my code and it's not causing errors whe

  • How can I Recover From Damaged Drive?

    Hi, I've had an internal HD corrupt in my new Mac Pro, and I'm wondering what I can do to recover the data.  I've looked at this several posts including this one listing 3 data recovery software apps: https://discussions.apple.com/message/15249262#15

  • Error when saving custom Datasource on R/3

    Hi, I'm creating a transaction datasource using Extraction by Function Module. I've created & activated the required extract struct (using Tcode: SE11) and the function module. However after populating these 2 fields in the datasource screen, when i

  • ITunes Repairer Freezing

    my iPod nano is being read by my pc but not by iTunes. I followed the instructions and I am trying to repair it instead of uninstalling and it is frozen on "Publishing product information" please help.

  • Navigation buttons are not working in Jdev 11.1.2.2

    Hi All, I am new to ADF and I am trying to create navigation buttons but it is not working. I created the taskflow and the pages and I set the actions to the buttons but it only refresh the page Best Regards