Which jar to use in order to write add-ons for IE

Hi,
I don't know whether I am asking the correct question but I want to know can I use any jar in order to create add-ons for Internet explorer and, if any, which one?
thanks

Hi Akshay,
I have used the FM "ISU_DB_EANL_UPDATE" in my project.
CONSTANTS lc_modify  TYPE c  VALUE 'U'.
  CALL FUNCTION 'ISU_DB_EANL_UPDATE'
    EXPORTING
      x_eanl          = xw_eanl
      x_eanl_old      = xw_eanl
      x_upd_mode      = lc_modify
    TABLES
      xt_eanlh_update = xt_eanlh_mod
      xt_eanlh_old    = xt_eanlh_old.
where eanl is the entry in EANL table.
OLD_EANLH contains the old entry line item of the Rate Category table and NEW_EANLH contains the new line item to be added. This is the crude way of doing this. But I didnt find any other FM useful.
But this works.
Hope this also resolves your query.
Regards,
Manish
Edited by: Manish  Bisht on Jun 29, 2009 3:43 PM

Similar Messages

  • In "Customize Toolbar", how do I know which icons are attached to specific extensions or add-ons?

    When I right-click on the main toolbar to customize it, the set of icons that are shown to me are numerous. I know this is due to the add-ons that I use. What I want to know is what icons go to which extensions? There are a lot of similar ones (like left and right arrows) that do quite different functions. Then there are others which aren't easily identifiable. Right now I do a trial-and-error process of adding an icon to the toolbar, testing it, deciding first, whether it did anything, and second whether I need it. But this is cumbersome. I didn't know if there was something on the back end or even another addon that would make this easier.
    Your help is much appreciated.
    Mick

    Deleting on one device does not affect another device.
    You can delete the App's on the iPhone and nothing will happen to the ones on the iPad.
    1.  You don't need to.
    2.  Settings->Cellular->"Use Cellular Data For" will show the data usage for each App since the last statistics reset
    3.  Settings->General->Background App Refresh Will show which Apps are allowed to get data in the background
    4.  It restricts it to Wifi.  If the App requires internet access and Data is turned off, it will have to wait until the device is connected to a wifi network.
    5.  Nope, You just use up battery since the BT radio will continuously look for nearby BT devices.
    6.  The Personal Hotspot uses your cellular internet connection from your phone or other cellular device; whether you consider that secure or not I cannot say.  It also depends on what you are doing while connected to the Hotel's wifi. I would not do online banking while on vacation though.

  • How do you completely disable the installation and use of add-ons for firefox 4? Is there a config setting/file that can be changed to completely disable add-ons?

    I want to completley disable the installation and/or use of add-ons in Firefox 4. I don't want anybody that logs onto either of my computers to be able to use add-ons and I can't find a way to disable it in the configuration files. I've found ways to lock down other options like updates etc. but I cannot find a way to completely disable add-ons.

    See:
    * http://kb.mozillazine.org/Locking_preferences
    You can use a mozilla.cfg file to lock prefs or specify default values.<br />
    You can place a file local-settings.js in the defaults\pref folder to specify using mozilla.cfg.
    You can use these functions in mozilla.cfg:
    defaultPref(); // set new default value
    pref(); // set pref, but allow changes
    lockPref(); // lock pref, disallow changes
    To prevent users from installing software use:
    <pre><nowiki> //
    lockPref("xpinstall.enabled" ,false);
    </nowiki></pre>

  • Can I use the same add-ons for the Android version?

    I was considering buying a tablet to use with my job - but I use a lot of add-ons and extensions - I was wondering if the extensions I'm used to using with my windows Firefox version would work with Android Firefox as well?

    hello maxwell_smart007, addons for firefox on android are a separate category - extensions must be ported over by their developers to work on the mobile version of firefox. here's the listing of extensions for firefox on android that are hosted at the official mozilla page: https://addons.mozilla.org/android

  • I am currently using Firefox 4.0 as it says with the "About Firefox". But when I'm trying to install certain add-ons for FF4, it still says that I'm using Firefox 3.6.8 :|

    To be more particular, I'm trying to install the "Shine Bright Skin" theme which is for Firefox 4, but it says that it is not compatible with my current version, it says I'm using FF3.6.8 but I'm really using FF4.
    [http://i53.tinypic.com/29dxpqu.jpg Shine Bright Skin]

    According to the "More system details..." you have a preference set called '''general.useragent.override''' which sounds like the most likely culprit. Use the about:config preference editor to clear that preference.
    (1) Type or paste '''about:config''' into the location bar and press Enter. Click the button promising to be careful if it appears.
    (2) Type '''agent''' into the filter box and wait for the list to be filtered.
    (3) Right-click '''general.useragent.override''' and choose Reset to return that preference to its default value.
    Any luck?
    By the way, this override might have been set by an add-on to improve compatibility with something else... good luck tracking it down.

  • Firefox opens a dialog box when I use the browser, "Checking add-ons for compatibility..." then open the Firefox start page along with my homepage. I do not want the Firefox page when I open the browser. how do I stop this?

    Since Firefox updated it checks add-ons every time I open Firefox. The Firefox homepage then opens along with my home page, two tabs. I want the checking to stop. This has not happened before--only with this update.

    This question was reposted and replied to here: <br>
    https://support.mozilla.com/en-US/questions/878953
    ... so I'll lock this thread.

  • Save my Firefox Plug-Ins & Add-Ons for future use

    I want to save my installed Firefox Plug-Ins & Add-Ons so I can install them directly on my second PC. I mean directly, so I don't have to search for them 1 by 1 .
    Is there some sort of Export for these?
    Thx

    https://addons.mozilla.org/en-US/firefox/addon/febe/

  • What is the proper program used to open files like add-ons etc?

    I think I messed something up in Firefox.I was in the process of backing up some files like bookmarks.I had done the following-clicked on Firefox,troubleshooting and show folder.I found and back up bookmarks but had trouble when it came to trying to do places etc. and now some of the files are showing Acrobat to open them. What is the default for these files and how do I switch back?
    Thanks

    If you want to change the application that opens .pdf files, change that in Options > Applications and look for Portable Document Format.

  • How to know which class is being loaded from which jar file & path location

    Hi,
    I have some Java code using several jar files.
    I want to remove those jar files which are not being used by the code.
    So , I want the JVM to output which class is being loaded from which jar .
    Using "java -verbose" option doesnt solve the problem because the required info is printed only for the classes/jars native to the J2SE package .
    Can anyone provide a solution which does not require me to modify the code?
    Thanks,
    Danish

    Classpath Helper

  • Workflow API which can be used to avoid sending notification to user

    Hi Folks,
    We want Workflow API which can be used to avoid sending notification to user for particular type of error.
    Say we are using following API which are used to send notification to mailbox as soon as program run into error.
    wf_core.context(c_v_package_name
    ,c_v_func_name2
    ,p_event.getEventName()
    ,c_v_task_id_prompt||l_n_task_id
    ,l_v_msg_data);
    wf_event.seterrorinfo(p_event, c_v_result_error);
    Now we want to restrict certain type of error to send as a notification however we want to keep this record in wf_notifications table for further investigation.
    Thanks and Regards,
    Javed Khan

    Matt,
    It looks like another person had a similar question before, see the following thread:
    https://supportforums.cisco.com/discussion/9697836/can-use-axl-or-other-api-get-calls-progress
    Also, according to the comments seen on that post, I was able to find the JTAPI developers guide, see more information below:
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cucm/jtapi_dev/8_6_1/jtapidevguide/overview.html
    If this still does not satisfy your question then, the best you can do is post this inquiry on the Cisco Developer Network on the following link:
    https://developer.cisco.com/site/devnet/home/index.gsp
    Hope this information helps,
    Marco Rojas.

  • Extended vs joined network - which should I use

    I have a Time Capsule connected to my iMac and in the living room I have an airport express that I stream music to. Which should I use. Extended or joined netowrk. I find that if it is extended my MacBook Air, iPad and iPhone run a lot slower than if it is a joined network. If it is an extended network all my portable devices are sitting on the Airport Express. If it is a joined network they are sitting on the time capsule where I get the better performance.
    In terms of the streaming of my music though it doesn't matter whether it's joined or extended.

    I have a Time Capsule connected to my iMac and in the living room I have an airport express that I stream music to. Which should I use. Extended or joined netowrk.
    For the purpose of streaming only, you will want to configure the AirPort Express to "join" the wireless network provided by the Time Capsule. The Express will, in turn, perform simply as another wireless client on the network and not introduce the bandwidth overhead of an extended network.
    In terms of the streaming of my music though it doesn't matter whether it's joined or extended.
    That is correct.

  • Using Sales Order Approval in B1 does not Synch Orders

    Hello everyone,
    I have a customer who uses Sales Order Approvals within Business One for Over Credit Limit.  Those that go through this process, never get sent to WebTools and then later cause the error that in the Synch Manager that you Can not synch the Delivery Document#xxxx because the order does not exist, or something to that effect.  Then I simply add the Order to the Transaction Queue and all goes through fine.  Has anyone seen this occur in their environment and if so, what was the resolution?
    Thanks so much for your help!
    Kristen

    Kristen,
    Ironically after my last post I have just hit this in a live situation with 65,000 deliveries not synching.
    Have you a resolution to this and have you needed to deal with a large number of transactions, if so how?
    I am wondering what the implications of unticking Delivery Documents in the synch manager settings has on this issue and also the impact on the loss of functionality in Webtools for the user
    Geoff

  • Has Adobe sold me a product which I cannot use for my purpose?

    Hi! I bought my copy of Adobe Acrobat XI a couple of months ago mainly to work with FormsCentral and I was very suprised to hear that FormsCentral was going to shut down. Has Adobe sold me a product which I cannot use and how will I be compensated for this? /M

    Many educational CDs have not been upgraded due to lack of funds in the educational market to pay for the such updates.
    This situation is due primarily to the fact that one of the major political parties in this country favors tax cuts to the rich while cutting federal educational support funding (or eliminating the federal Department of Education altogether).
    However, you can restore Rosetta and run your educational CD if you install Snow Leopard Server ($20) into Parallels (up to $79) for use in Lion/Mt. Lion/Mavericks:
                                  [click on image to enlarge]
    More information here:
    http://forums.macrumors.com/showthread.php?t=1365439

  • I have printers at home and work. i need help programing my macbook print utility so computer knows which printer to use depending on where i am. thanks

    i have printers at home and work. i need help programing my macbook print utility so computer knows which printer to use depending on where i am. thanks

    Look for cloud solutions such as DropBox, OneDrive, SugarSync or others. They are all cloud based services that sync documents between computers via the cloud. Of course another solution is simply a flash drive formatted in exFat so that Macs and Windows computers can read it.

  • Newest version of firefox downloaded, i need an older version so that my adobe acrobat X pro 10.0 and Norton can be used as add ons. Which one please?

    I need a different version of firefox to work with my adobe and norton. can someone please help me. I have tried the 32, 30, 29 and 22, they all say the add ons for those 2 plus one more add on i have say not compatible. I need firefox for work. Any info on how to make any of those work or which to try to work would be greatly appreciated. Thanks in advance.

    Norton updates frequently, so that should not be a big problem. If you run LiveUpdate several times, you likely can get a compatible toolbar. http://community.norton.com/blogs/product-update-announcements/firefox-32-support-norton-toolbar
    The Adobe "Create PDF" extension is a more complicated issue. If you are stuck with version 1.2 (perhaps the last update available with Acrobat X?), this thread might be relevant: [https://support.mozilla.org/questions/999499 Firefox 29 broke Adobe Acrobat - Create PDF 1.2]. However, for security reasons, it would be better to try to figure out how to get it to work with Firefox 32.

Maybe you are looking for

  • How can I move location my Download Backups folder permanently?

    Hey everyone, I'm having a small issue with my Backup system in Lightroom. The laptop I am editing from has a 256GB SSD but I have situated my catalogue on a much larger external drive. My trouble is that in my Pictures folder under Lightroom I have

  • Data load from DSO to cube fails

    Hi Gurus, The data loads have failed last night and when I try to dig inside the process chains I find out that the cube which should be loaded from DSO is not getting loaded. The DSO has been loaded without errors from ECC. Error Message say u201DTh

  • Getting error while displaying a cell as a button in ALV

    Hello All, I am trying to display a cell in ALV output as pushbutton. The following is the code I am using. DATA  BEGIN OF gt_list OCCURS 0.         INCLUDE STRUCTURE sflight. DATA  rowcolor(4) TYPE c. DATA  cellcolors TYPE lvc_t_scol. DATA  carrid_h

  • A Question About SDK 7.0.5 Plug-in

    Here is my question I have installed Acrobat sdk7.0.5 ,acrobat pro7.0 in windows xp pro. Now i use vs.net2008 for develop. I have a mfc project that i wanna to open and edit .pdf document. I need to add a new toolbar in app,but only use pro 7.0 typel

  • Adobe reader XI crash and hangs when open the pdf file

    After update the adobe reader xi 11.0.10, the reader always crashes and hangs when open the pdf file. Please help me how to do.