Disable delete icon in the Materials requirement form

hi
can anyone tell me how to disable the delete icon in the materials requirements form, using form personalization...
reply
thanks & regards
anandc

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

Similar Messages

  • Disable Delete icon in Material Requirements from

    hi
    can anyone tell me how to disable the "Delete" icon and the "Delete option" in the "Edit menu" in the Material requirements form in WIP.
    is it possible through form personalization??
    is yes, please tell me the method...
    reply
    thanks
    anandc

    Hi,
    check the program name for the transaction and create a screen exit for the same.
    Also u can go for copying the code in customer namespace and then add ur own functionality to dactivate or remove the delete function.
    Pls reward points for the answer.
    Regards,
    Ameet

  • Disable delete icon in attachment table row in OAF

    Hi,
    I want to disable the Delete Icon in the attachments table in OAF Standard page. If the value in Title of that attachment row is "Requisition" the Delete Icon of that row should be disabled.
    It the Title is anything else then the Delete Icon should be enabled. Please let me know how to achieve this.
    Basically, if the Title is "Requisition", users should not be able to delete that attachment.
    Thanks,
    Srikanth

    Hi,
    check the program name for the transaction and create a screen exit for the same.
    Also u can go for copying the code in customer namespace and then add ur own functionality to dactivate or remove the delete function.
    Pls reward points for the answer.
    Regards,
    Ameet

  • How to disable delete option in the receipt work bench thorugh formpersonal

    Hi Team,
    Please let me know, how to disable delete option in the receipt work bench through form personalization

    Hi.
    Condition
    Trigger Event: WHEN-NEW-ITEM-INSTANCE
    Trigger Object: RGW_FOLDER.M_PAYMENT_METHOD_DSP
    Actions
    Type: Property
    Object Type: Block
    Target Object: RGW_FOLDER
    Property Name: DELETE_ALLOWED
    Value: FALSE
    Note: The button will remain visible and if the user presses it, the system will ask if he/she want to delete the receipt. However, if the OK button is pressed the receipt will not be deleted and a message will be shown ("You cannot cannot delete this record")
    Hope this helps.
    Octavio

  • I had made a copy of the main revel file on my mac, and then i put it in my google drive folder for safety. I accidentally deleted one of the two libraries form my iPhone. I opened it up and panicked and thankfully I guess I had a backup of the other libr

    I had made a copy of the main revel file on my mac, and then i put it in my google drive folder for safety. I accidentally deleted one of the two libraries form my iPhone. I opened it up and panicked and thankfully I guess I had a backup of the other library in my spouses phone... but mine is still gone. I don't have them saved to my computer... the pictures are important and I really really need them back.  Is there a way for me to get the pictures back from what I believed at the time was a smart way to backup when i made a duplicate of that main mac file to my google drive? The best way to let me know is my email... [email protected]  I am really relying on you guys if there is a way?

    Hi meghage,
    From your code, it is a WebForm project.
    This forum is to discuss problems of Windows Forms. Your question is not related to the topic of this forum.
    You can consider posting it in asp.net forum for supports . Thanks.
    ASP.NET: http://forums.asp.net
    Regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • The delete icon at the bottom of the email page has disappeared

    The delete icon at the bottom of the email page has disappeared.  How can I find it?

    Restart iPhone: Hold down the Sleep/Wake button and the home button together until the apple logo appears (ignore the ON/OFF slider) then let both buttons go and wait for phone to restart (no data will be lost).

  • I am trying to delete icons from the desktop but they do not delete

    I have tried to delete icons from the desk top but they do not remove.  I am not sure what to do.

    BarbaraAlaska wrote:
    I click on the desktop icon,( it is an old file I no longer use), I push command and delete,  then I put in password.  Then it sounds like the icon is deleted but the icon is still there.
    Sounds like its permissions have been changed.
    Right-click (or ctrl-click) the file and choose 'get info' from the drop-down.
    Read the permissions at the bottom of the Info window.
    If you don't have read & write access, what does?

  • How can I delete icons from the desktop? every time I open a application (e.g. skype) the icon goes to the desktop

    how can I delete icons from the desktop? every time I open a application (e.g. skype) the icon goes to the desktop

    to remove the HD icon
    In Finder's Preferences pane, in the General tab, uncheck "Hard disks" under "Show these items on the Desktop" to clear away the icon.

  • Need to disable delete icon in over view screen (table maintainance)

    In the overview screen (transaction se 54 -> generated object -> overview screen) in table maintainance i need to disable the delete icon.
    Anyone can please help me in it.

    Hi,
    check the program name for the transaction and create a screen exit for the same.
    Also u can go for copying the code in customer namespace and then add ur own functionality to dactivate or remove the delete function.
    Pls reward points for the answer.
    Regards,
    Ameet

  • How to disable attachment icon in the below code

    Session session = null;
              Properties props = new Properties();
              props.put("mail.smtp.host", mailHost);
              session = Session.getDefaultInstance(props, null);
              log.info("STEP 1");
              try {
                   Calendar currentDate = Calendar.getInstance();
                   currentDate.add(Calendar.DATE, 0);
                   log.info("STEP 2");
                   MimeMessage mesg = new MimeMessage(session);
                   log.info("STEP 3");
                   String mailBody = "RSS Feed link as of"
                             + (currentDate.get(Calendar.MONTH) + 1) + File.separator
                             + currentDate.get(Calendar.DATE) + File.separator
                             + currentDate.get(Calendar.YEAR) + messageText;
                   log.info("THE MAIL BODY IS :" + mailBody);
                   try {
                        mesg.setFrom(new InternetAddress(fromAddress));
                        InternetAddress toAddress = new InternetAddress(destAddr);
                        mesg.addRecipient(Message.RecipientType.TO, toAddress);
                   } catch (Exception x) {
                   mesg.setSubject("Cybermedia Dice Job Portal RSS Feed information link");
                   MimeBodyPart messageBodyPart = new MimeBodyPart();
                   messageBodyPart.setText(mailBody, "us-ascii");
                   Multipart multipart = new MimeMultipart();
                   multipart.addBodyPart(messageBodyPart);
                   mesg.setContent(multipart);
                   Transport.send(mesg);
                   * MimeBodyPart attachmentBodyPart = new MimeBodyPart(); DataSource
                   * source = new FileDataSource(outputFileName);
                   * attachmentBodyPart.setDataHandler(new DataHandler(source));
                   * attachmentBodyPart.setFileName(outputFileName);
                   * multipart.addBodyPart(attachmentBodyPart);
                   log.info("STOP HERE..");
              } catch (Exception ex) {
                   StringWriter writer = new StringWriter();
                   ex.printStackTrace(new PrintWriter(writer));
                   String trace = writer.toString();
                   log.error(trace);
    Can any one help what should be modified so that the attachment icon is disabled in mail
    Presently it shows attachment icon using the above code

    Hi naga,
    1. one option is to retrive the source code of the requried program,
       into internal table using the syntax READ REPORT (just see f1 help on it)
    READ REPORT prog INTO itab [MAXIMUM WIDTH INTO wid].
    2. Then we can loop / search the internal table for the required term.
    regards,
    amit m.

  • Fnd:ApplicationsTable disable delete icon

    Hi,
    I have a question specific to the Applications Table icons (Delete, Edit). I need to conditionally disable 'delete' and 'Edit' Icons when a row is clicked within the table, based on the status of a record. How do I go about doing that?
    I tried to implementing somethings similar to this blog: It doesn't work since in my case, it is not a button. Any help is appreciated!
    http://andrejusb.blogspot.com/2007/04/create-edit-and-delete-operations-in.html
    Thanks,

    User, please tell us your jdev version!
    I guess you are using fusion applications, in which case you are posting in the wrong forum.
    Timo

  • Disable Save Button in the Interactive PDF form

    Hi Experts,
        I have created an interactive form using NWDS and I am able to show it as Collable Object. Now the requirement is that I have to disable the save button from the PDF.
    Can you please let me know how to disable the Save Button for the interactive form?
    Thanks in Advance
    Regards,
    Kuldeep Verma

    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

  • When clicked on an icon in the infopath form, it will open another infopath form from another file. How do?

    When clicked on an icon in the infopath 2013 form, it will open another infopath 2013 form from another
    file. How do?

    Hello Eugene Astafiev!
    I need the following scenario: 
    I have a Sharepoint library with items created by Infopath (form A). 
    I developed another form (form B) that will query items created by form A. 
    The form B will be in a static "webpart" page navigation (Sharepoint). One of these fields returned by the query library that manages the items created is the URL responsible to load the item data . I would like to parameterize the URL into form B.
    So that when the user clicks on it, the form A with their respective data in a modal is returned (which may be a native modal Sharepoint)

  • How to disable save Icon?

    We have a legal requirement in our bank that in our intranet site whatever document we show it should have save icon disabled? [thought there are lot if ways we can capture the contents of it even with save icon disabled]
    Is there any way of implementing the save icon disabled...I spent almost three hours with no result.... My coding will look like this
    int permissions = ~(PdfWriter.AllowPrinting | PdfWriter.AllowCopy | PdfWriter.AllowModifyAnnotations | PdfWriter.AllowFillIn | PdfWriter.AllowAssembly | PdfWriter.AllowModifyContents | PdfWriter.AllowScreenReaders);
    PdfEncryptor.encrypt(reader,fos,true,"","",permissions);

    I have pasted my code below
    We are creating a new pdf and applying permissions for that....
    I searched for more than two hours and couldn't find a way to disable save icon in the API we use
    com.lowagie.text.pdf.PdfEncryptor;
    com.lowagie.text.pdf.PdfReader;
    com.lowagie.text.pdf.PdfWriter; [you can paste this in google which will explain this API]
    I thought this as a constraint with this API, hence searching for other API's which has this feature...in most of the forums I saw implementing this as not possible....hence thought of checking in Adobe forum where people might suggest some other API...Please let me know whether this feature [if it is really a programmable feature] is available in API's you have used...Thanks Aandi Inston!
    byte[] documentBytes = document.getContentBytes(); //which will get the content of a pdf
    File newFile = File.createTempFile("tempPdfFile", ".tmp");
    FileOutputStream fos = new FileOutputStream(newFile);
    reader = new PdfReader(documentBytes);
    int permissions = ~(PdfWriter.AllowPrinting | PdfWriter.AllowCopy | PdfWriter.AllowModifyAnnotations | PdfWriter.AllowFillIn | PdfWriter.AllowAssembly | PdfWriter.AllowModifyContents | PdfWriter.AllowScreenReaders);
    PdfEncryptor.encrypt(reader,fos,true,"","",permissions);

  • Disable delete option from Monitor shopping cart role

    Hi,
    Currently when we check the SC details using the Monitor shopping cart option, the delete button is also activated. The person using monitor shopping cart can delete any SC with this option. Can we disable this Delete icon from the montior SC, we need to have that in display mode. Is it possible to acheive with the help of authorisation or how can we get this working.
    Regards
    GGL

    Hi
    can you do shoppping with that user? since you get that message?
    run this report bbp_chec_consistency for that user for sc.
    check what is the result red or green
    br
    muthu

Maybe you are looking for