How to disable inbuilt icon on runtime

Dear sir,
I am new to forms 9i
Please help me how to disable inbuilt icons which are shown on the menu bar on top
like it has written on the top of icon
action edit query like
i want to disable this icons and not visibale
thanks in advance
regards
s k swain

This might be helpful,
Re: FRM-10221 Cannot read file menudef

Similar Messages

  • How to disable close button during runtime

    Hi everybody.,
    Please help me how to disable the close button at top of the window during runtime. I dont want the user to use that button to close. I have used button called Exit in that form but sometimes users closing by clicking that button.
    I am using Oracle form 10g R1.
    Thanks in Advance,

    Hi,
    Thanks Mr. Arif Khadas for your quick reply.
    While running the form, in window there will be two close button, one is in form and another one is in Internet Explorer. By making changes on the property what you said above this will hide only the form's close button. I want to hide the internet explorer close button also.
    Thanks in advance.

  • How can  disable 'delete_row' icon on configaration tab of tx code:SOLAR02?

    HI,
    Experts,
    How can we disable DELETE_ROW icon in configuration tab of
    tx : SOLAR02 if have tried a lot but couldn't succeeded please give me some inputs or clues or code to me.
    Thank u,
    Shabeer Ahmed.

    Hello,
    Jason.
    I want to disable delete icon in configuration tab of SOLAR02 transaction.
    Is it possible if so let me how to achieve that.
    Thank Q

  • 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);

  • How to disable UI element during runtime

    Hi!
    Can someone show me how to access the properties of ui elements during runtime?
    eg. in the method  WDDOINIT i want to enable/disable the GroupBox "Group"
    how to?
    thanks

    >
    Abhimanyu Lagishetti wrote:
    > ideal way is the one i specified,
    >
    > other way is you have to change it in WDDOMODIFYVIEW
    >
    > to get any UI element this is the code
    >
    > view->get_element( '<ID of the UI element>' ). which return the corresponding UI element reference
    >
    > the UI element classes start with CL_WD_*.
    >
    > for example: inputfield CL_WD_INPUT_FIELD
    > data: lr_input type ref to cl_wd_input_field.
    > lr_input ?= view->get_element( '<ID of the UI element>' ).
    > lr_input->set_enable( abap_true ).
    >
    > Abhi
    I would like to stress that this NOT the SAP recommended way of controlling the properties on UI elements - the first solution you were give would be the recommended approach.  The direct UI coding access should be used as a last resort when working with dynamically generated UI elements.  Otherwise you should always try and set the UI element properties via context binding. This makes your application more accessible to customizing/personalization, makes it easier to maintain over time and provides the best performance.

  • How to disable print icon in pdf file, which is created using servlet

    Hai,
    I have created one pdf file using HttpServletResponse.setContentType("application\pdf"). I want to disable the toolbars of the created pdf file. I want to disable the print, save and other icons in pdf file. Can anybody help me to resolve this problem.
    Thanks,

    I got the pdf into my workflow in a binary data and i passed this binary data to the function module so_document_attacthment_ap1.
    in that i am specifing that the file type is .pdf and i received mail with the pdf attachment too.

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

  • [SOLVED] Firefox/GTK - How to disable the icons on buttons?

    I'm running GNOME 2.30 with Firefox 3.6.3.
    I have set: gtk-button-images = 0 in .gtkrc-2.0 (although I think it might be deprecated), as well as setting buttons_have_icons to false in gconf under /apps/desktop/gnome/interface.
    All other programs have icon-free buttons, but Firefox insists:
    [img]redacted[/img]
    Is there something I'm missing?
    Last edited by jasonwryan (2013-03-17 23:23:30)

    I'm not so sure ... I've tried all of the ~25 GTK themes I have installed, and they all still have icons, but only in Firefox.  All (most?) other GTK apps I've tried removed the button icons.
    I'm in Xfce now, and the situation is the same.  Look at the "Close" buttons in both sceens:
    Icons on buttons ENABLED:
    Icons on buttons DISABLED:
    So maybe this is a Firefox issue?
    Last edited by MkFly (2010-05-29 02:52:12)

  • Satellite A660-156 - How to disable this icon?

    How can I disable THIS thing & what it is?! This appears in flash internet playets & else. Please help!
    Screenshot is below
    [http://www27.zippyshare.com/v/7862181/file.html]
    Thanks!

    Hi, vazovsky
    To be honest, i have never met such problem. As said Xardas, does it appear running with preinstalled Os settings?
    hi, Xardas
    > dont have any idea what it could be because its not English language. Maybe you can translate it, this would be useful.
    it sounds like, pressing this button you may play film on multimedia player connected to your network,, :)

  • How to disable the status icon in Skype 4 for Andr...

    Dear Skypers,
    How to disable the status icon in Skype 4 for Android phones?
    The guide on this following support page not working anymore: https://support.skype.com/en/faq/FA12359/how-do-i-enable-or-disable-the-status-icon-in-skype-4-for-a...
    Older version has the option to disable Skype Status and get rid of the Skype icon on Android status bar. But latest 4.4.0.31835 could not disable Skype Status in notifications settings. :/
    Device: Google Nexus 4
    Android: 4.3 JWR66Y
    Skype: 4.4.0.31835
    Please bring back the option to disable the Skype icon on Android status bar. This is the main reason I uninstall Skype. :/
    Kudos to the team, the apps is really smooth and fluid to use. Would be nice if you guys are following the Android Design Principles and using Google Cloud Messaging for push notification to improve User Experience and battery life.
    Kind regards,
    /chrone
    everytime i get ahead, i feel more dead.
    Solved!
    Go to Solution.
    Attachments:
    how to get rid of skype icon on android status bar.png ‏46 KB

    Long click on this notification a sub menu having field "App info" would appear goto App Info. You can goto there by "Manage Apps">"Skype" also. 
    Uncheck Option "Show Notifications" A dialog will open. Don't worry about notifications for now just click OK. Now the notification icon skype has also been removed. 
    Now simply check "Show notification again". After doing this you would get notifications but skype icon would not be shown in the status bar anymore.
    Issue: this is just a trick you need to repeat this every time sign out and sign in again. Mostly you don't do that so no need to worry.

  • How to disable the save icon in the Acroread plugin

    I am able to tweak some parameters related to printing using the following file on my LINUX box
        .adobe/Acrobat/9.0/Preferences/reader_prefs
    However, I cannot find any documentation about available settings/parameters for this file.
    So not sure how, if even possible, I can remove certain buttons/options from the plugin ...as I would like at a minimum to
    prevent users from saving files they are viewing to the system running the browser they are using.
    Can I disable the icon that allows for "Save a copy..."?

    Long click on this notification a sub menu having field "App info" would appear goto App Info. You can goto there by "Manage Apps">"Skype" also. 
    Uncheck Option "Show Notifications" A dialog will open. Don't worry about notifications for now just click OK. Now the notification icon skype has also been removed. 
    Now simply check "Show notification again". After doing this you would get notifications but skype icon would not be shown in the status bar anymore.
    Issue: this is just a trick you need to repeat this every time sign out and sign in again. Mostly you don't do that so no need to worry.

  • How to disable the print icon on check status screen of shopping cart inSRM

    Hi Experts,
    I have a requirment in which I need to disable print Icon on the status screen of the shopping cart.
    Can anybody please let me know how to achive this requirement.
    Thanks,
    Arun K Singarapu

    Hi Here you go some useful code for the requirement.
    wafunc = 'BWD'.
          APPEND wafunc TO functab.
          wafunc = 'FWD'.
          APPEND wafunc TO functab.
          wafunc = 'DIS'.
          APPEND wafunc TO functab.
          wafunc = 'COP'.
          APPEND wafunc TO functab.
          wafunc = 'IGN'.
          APPEND wafunc TO functab.
          wafunc = 'SAVE'.
          APPEND wafunc TO functab.
          wafunc = 'HIS'.
          APPEND wafunc TO functab.
          wafunc = 'CONTACT'.
          APPEND wafunc TO functab.
         SET PF-STATUS 'OBJECT_SEL' EXCLUDING functab.
    Bala.M

  • How to disable "Power optical drive" icon?

    Hi everyone,
    does anyone know how to disabling on the taskbar the "optical drive power" icon or how to deactivating at all the service? I cannot find it in Services, msconfig, not even in 3rd parties registry editors like Cc Cleaner or Jv16 PowerTools...
    Thanks a lot,
    Walter

    Ive tried several options but was not able to remove this symbol from the task bar.
    I dont know if this is the right one but when you open services there you will find option Toshiba optical disc drive service.
    Anyway, dont change anything. It runs in the background and doesnt disturb on any way, right?

  • Word program disabled. Icon still in place. How do I get it back?

    My Word app is disabled, but icon in place and not in Trash. How do I get it to function again?

    Message from app folder and dock icon are identical. "Microsoft Word cannot be opened because of a problem."
    App and system are compatible as all was well until two days ago. At that time I had a message to check Trash and found nothing relevant. Since then repeated messages as above. Should I reinstall Microsoft Office mac 2011? Both Excell and Power Point are opening as usual. I do not use either, am heavily invested in Word.
    Thanks for you help.

  • How to disable minimize button(icon) of jframe

    how to disable minimize button(icon) of jframe

    HELP!
    I need to do a similar thing. Along with a couple other things.
    I was able to control some windows thru a unix window manager like I would for Motif (the use the window name of AWTapp or AWTdialog are recognized when doing xwininfo) That is all I can seem to get. Nothing changes this.
    Does anyone know how?
    Anyway. mwmDecorations and mwmFunctions settings appear to allow setting of some of the windows. But I need control 100%of the time.
    I need to disable the CLOSE button in all java windows or find a way that the window manager event can get back to the java application. Currently it is not recognized.
    In some windows I need other items disabled such as SIZE & MAXIMIZE.

Maybe you are looking for

  • Ical-problem: since 10.8.3 i can't choose a calender which is in a folder

    before updating to 10.8.3 it was no problem to choose a calender which is organized in a folder for new or existing event.

  • Add Date Stamp

    Hi,   In a proxy to file(receiver file adapter) scenario, is there any way to append date in a specific format(ddmmyyyy) at the end of the file name. ex: sample23122009 Add time stamp adds the date in a different format. If if is possible thru Receiv

  • MS Excel automatically converts numeric fields to date format

    I have at least 2 different spreadsheets where this happens.  I maintain them for months, adding, changing, deleting data.  They contain lots of data elements (numeric, text, date, etc).   Some columns are all numeric, some all dates, etc.  Then sudd

  • Additional Fields in IWBK

    Hi Experts, My client is looking for two additional fields to be added in to standard report IWBK. I want to know whether it is possible to add below mentioned additional fields to IWBK. If yes how? Is there any user exit or BADI available for the sa

  • Skinning table. Change width of the table.

    I want to change width of all table so that sub-control-bar gets affected too. I've learned that there's no way to define it that way: af|table { width:60%; and if I write: af|table::content { width:60%; and then change width of sub-control-bar compo