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

Similar Messages

  • 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é

  • How to hide 'SAVE' button in adobe form layout

    Hi  Friends,
    I have a requirement to hide 'SAVE' button in adobe form layout .They dont want to save the form .
    Is there any way to achieve this .I have gone through scn ,but couldnt find the proper solution
    Thanks and Regards,
    Subeesh Kannottil

    Hi Subeesh,
    Are you talking about restricting the User from Saving the Adobe Form Output. 
    Regards,
    Sivanand Ala

  • How to disabling a button in the form?

    Hi All,
    Based on our requirement we need disabling a button in a form depends on the value of another item in same form itself. I was searched through forum but i didn't get the suitable answer for this. Please help me if anybody know the solution.
    Thanks in Advance...
    Regards,
    Neel

    Hi Neel,
    You could set the conditional display of the button based on a Plsql function returning a boolean.
    Something along the lines of:
    IF :P1_ITEM = 'Some Value' THEN
    RETURN TRUE;
    ELSE
    RETURN FALSE;
    END IF;
    This will not display the button at all unless the P1_ITEM is equal to the value that you want.
    This is the simplest form that will get you going. If you want to "grey out" the button to leave it visible but disabled then you would need to investigate this a little further. I have seen some other threads that would probably help you out here but am no exert on javascript so just have a poke around.
    Hope this helps,
    Mike C

  • Disable save button in adobe forms WD FOR ABAP

    Hi, i have some problem about how to disable button save in interactive forms. Can anybody help me please! I use WD for ABAP
    Another question, how i change security setting of pdf file. I want to disable 2 field of pdf. They are: 'content copying' and 'content copying for accessbility'.
    This is very importance for me, please help me if you can.
    Thanks you.

    Hi,
    In form-ready layout event, you can do that if it is by default to be hidden.
    Save.presence = "hidden";
    if save is the button name.
    Press save button and select the necessary event and choose language as Javascript and then write the above code.Here save is name of the button.

  • 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 delete button in a form

    HI
    can anyone show me the procedure to disable the delete button from oracle forms seeded and custom form oracle applications 11i. We are on form patch set level 18
    Regards

    Hi ,
    there are various ways of doing it..
    You can try as the previous post says or also you can try When new block instance trigger and disable the item
    using set_item_property , it all depends on when and how you want to diable that item.

  • 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

  • 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 disable a BUTTON on the form?

    Hello
    I am trying to disable my_button (regular) by usinf this.disabled = true by seeing in google, but, its not working!
    Pls. let me know how to either disabel a button or invisible/hide a button, syntax pls. with syntax errors pls.
    Thank you

    To disable a button try the below script.
    this.access = "readOnly";
    To make it hidden or invisible try the below script.
    this.presence = "invisible";
    this.presence = "hidden";
    Thanks,
    Aravind

  • 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

  • Disabling the button in a form

    Hi,
    May i know how to disabling the button in a form based on value of item in same itself. For eg: In a form an Select list item called 'Flag' which holds the values like Y and N. If Flag is N means the Button called 'Check' will be disable otherwise no need to disable the button 'Check'. It is our requirement, please help me if any one know the solution.
    Regards,
    Neel

    Hi Neel,
    You could set the conditional display of the button based on a Plsql function returning a boolean.
    Something along the lines of:
    IF :P1_ITEM = 'Some Value' THEN
    RETURN TRUE;
    ELSE
    RETURN FALSE;
    END IF;
    This will not display the button at all unless the P1_ITEM is equal to the value that you want.
    This is the simplest form that will get you going. If you want to "grey out" the button to leave it visible but disabled then you would need to investigate this a little further. I have seen some other threads that would probably help you out here but am no exert on javascript so just have a poke around.
    Hope this helps,
    Mike C

  • 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

  • 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 in toolbar in offline form

    Hi to all !
    I am facing a wierd problem in my  adobe interactive offline form.
    I have added a save button in my offline form . I have added  validation script on this button.
    Hence I want the user to use this button only.So I want to disable the save button  that comes in the adobe reader for every user of this particular form.
    i know that their is a similar functionality for wd adobe form but i am creating an offline form, and i do not know how to disable the button in this case.
    So please help me

    Hi Kuldip,
    if you're trying to hide the Save Button in the Adobe toolbar, then you can place the following code in the wdDoModifyView method to hide the whole toolbar.
    // Get interactibe form handler.
            IWDPDFDocumentInteractiveFormHandler iFormHandler = WDPDFDocumentFactory.getDocumentHandler(wdThis.wdGetAPI(), "<name of your form>");
    //     Get appearance setter. 
          IWDPDFDocumentAppearance appearance = iFormHandler.getDocumentContext().getAppearance();
         // Hide menu bar.
         appearance.hideMenuBar(true); 
         // Hide tool bars.
         appearance.hideToolBars(true);
    hope this helps,
    harman

Maybe you are looking for

  • U00BFIs it possible to print a .TIFF from SAP?

    I am developing CRM, and in the CRM Activities it is possible to attach files of different types (.TIFF, .XLS, .DOC, etc). The client wants the application to print directly the document without their having to open a new application. For example, th

  • MY HPOfficeje​t Pro 8600 plus does not print out any e mails. I have added the printer in e-print, an

    I am using an HP Officejet 8600 pro plus, I am running Windows 7 64 bit.  I get no error messages when I send the e mail, It just never arrives.  My email program (Century Link Mail ) indicates that the message was sent correctly.  This is a new prin

  • Upgrading samba on 10.4

    I am currently having issue with windows clients that have office 2007 installed. when users work directly for a shared drive save times are extremely slow. used a later version of samba on a Linux server and the problem went away. my goal is to upgr

  • Maya PLE and 10.4.6

    I had a problem last week with my Mac waking from sleep mode, and when I updated to 10.4.6, it seemed to fix it. Well now I find that it was not truly fixed and that Maya 7 PLE jams up on startup. It cannot find the renderer UI or some such scripting

  • Can't play games on 64 bit windows

    Can't play games on my new dell....whenever I open the application the dialog box says "unable to open the application correctly(0x000007b)Press OK to close the application.