U2018The next generation of SAP B1 add-onsu2019 - The power of mobility.

AbacusConsulting has come out with the next generation of SAP Business One add-ons. The SAP Business One Mobilizer!
Now the conventional boundaries have been broken down and limitless possibilities are within grasp with the introduction of the SBO Mobilizer. Dwelling on futuristic technology, the SBO Mobilizer allows you to have access to your SAP B1 database and its key functions around the clock, from anywhere in the world.
Extremely reliable, robust and secure, the SBO Mobilizer enables sales teams, distribution teams, management, field force employees, etc to post and view sales orders, delivery orders, invoices, returns and payments from remote locations, enabling them to make instant and well calculated decisions without any delay. It provides greater control over the whole operation process and securely centralizes data within minutes.
Working on both offline and online modes, the SBO Mobilizer not only saves time and money but itu2019s highly flexible design also enables limitless On-The-Fly form designing. A few clicks and new forms are ready to be published.
Language not being a barrier anymore, the product can be custom developed for any language intended and keeping a futuristic approach, the product is not limited to SAP but can be custom developed for any ERP system.
And the possibilities donu2019t end there. AbacusConsultingu2019s product will let you set your possibilities yourself. Itu2019s all in your hand. Amplifying the power of SAP B1 several folds, it is a product that I recommend you have a look at.
If you wish to discuss the possibilities in further detail, drop me an email at arqum.tashfeen@abacus-global. com or call me directly at +92 322 7171078.
Best Regards,
Arqum Tashfeen
Edited by: arqum.tashfeen on May 9, 2011 1:54 PM
Edited by: arqum.tashfeen on May 9, 2011 1:56 PM

Sorry,
I figured that out. I would rather inherit from <b>B1Menu</b>
    public class B1BrowserAdd: B1Menu {
        public B1BrowserAdd() {
            this.MenuUID = "1282";
        [B1Listener(BoEventTypes.et_MENU_CLICK, true)]
        public virtual bool OnBeforeMenuClick(MenuEvent pVal) {
            Console.WriteLine("1282 Menu Pressed");
            return true;

Similar Messages

  • Next-generation plug-in 1.6 : ClassNotFoundException and not caching JARs

    Hi,
    Since the introduction of the next-generation plug-in in Java 1.6.0_10, the applet I have used and developed for many years don't load anymore.
    The situation is this : the Jars of this applet are embedded in a Lotus Notes database as Java resources, in order to be used in a particular form in my application. Note that this application is accessed via a Web browser through a Domino server and that this application requires a user authentication. If I try to open the form containing the applet while using a plug-in 1.6.0_10 or newer, with default parameters (cache and next-generation plug-in activated), here is the exceptions I get (here with plug-in 1.6.0_20) :
    load : class mycompany/tools/Planner not found.
    java.lang.ClassNotFoundException: mycompany.tools.Planner
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed:http://www.mycompany.com:80/test/database.nsf/46277DA0EF2790B0C12574040052D714/$FILE/mycompany/tools/Planner.class
         at sun.plugin2.applet.Applet2ClassLoader.getBytes(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.access$000(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 7 more
    Exception : java.lang.ClassNotFoundException: mycompany.tools.PlannerBy reading a lot forums I found that a lot (really a lot) of people were experiencing the exact same issue, regardless of the type of server they used to host their applet. And unfortunately, only few answers were relevant to help me understand why I got this error...
    By looking deeper in the documentation, I have found this [Applet Developer's guide|http://download.oracle.com/javase/6/docs/technotes/guides/jweb/applet/applet_dev_guide.html]. Here, it is written that one of the enhancement of the next-generation plug-in is that : "+... The JVM running the applet is isolated from the web browser at the operating system level. If something should go wrong while running the applet, or if an uncooperative applet refuses to shut down, the new Java Plug-in detects and handles the error condition gracefully; the Web browser is unaffected+".
    I am not quite sure of what it really means, but I have started to think that my problem could be that, by running in a separate process than the one of the Web browser, loading the Jars will require an authentication on my server. To verify this hypothesis, I have changed the codebase of my applet, so the Jars are downloaded from another server where no user authentication is required. The good news is that my applet can now find the Jars and run as expected. The bad news is that none of the Jars are placed in the cache, which means that the Jars have to be downloaded each time I start a new session to work with my applet.
    I have also tried to disable the "Use the next-generation plug-in" option in the Java control panel. In this case, everything is fine, too, and even the Jars are stored in the cache. The interesting thing is that afterwards, by enabling the "Use the next-generation plug-in" option again, the applet will load and run like a charm... because the Jars are in the cache and the class loader can find them! (I suspect that this case has been experienced by several people, answering on forum posts that they cannot reproduce the issue.)
    Anyway, even if there is some workarounds to ensure it is possible to work with the latest versions of the plug-in, having to change the default options is not always easy or possible, depending of the environment. This applet that I am talking about is used by a lot of our customers and all have their internal policies and requirements regarding the Java configuration. If for some of them it will be possible to use a workaround, for others it will not. And this is a major problem to me.
    As I said, a lot of people have experienced this issue. I hope that someone having a better understanding on how this next-generation plug-in works, will have a solution, or at least, will be able to explain what is wrong in this approach and if my suggestion regarding an authentication issue for the class loader make sense.
    Any help will be greatly appreciated.
    Philippe

    Hi,
    I was wrong in my approach.
    My applet was implemented using the "<object>" tag and it seems that it was not the best way to address compatibility issues across all versions of the plug-in and all browsers.
    So, I have finally found what I was looking for in this "[Java Rich Internet Applications Development and Deployment|http://download.oracle.com/javase/6/docs/technotes/guides/jweb/index.html]" guide. In this guide, it is recommended to use the "[Deployment Toolkit|http://download.oracle.com/javase/6/docs/technotes/guides/jweb/deployment_advice.html#deplToolkit]", based on a Javascript library containing everything needed to deploy your application as an applet or a Java Web Start application.
    My application, deployed as an applet, now works like a charm.
    I hope pointing on this Deployment Toolkit will also help others...
    Philippe

  • Next Generation Jet Database?

    My company is already looking into the future beyond Exchange 2013 and we are interested in what storage engine\solution will be in place for the next generation of Exchange.  Some believe the Jet database needs to be seriously updated or another storage
    solution such as SQL be used.  Does anyone know for sure and what the timing might be?
    ML Anderson, Sr Exchange Engineer

    Andy is 100% correct, project Kodiak was the SQL initiative several years ago ( I think about the Exchange 2007 time frame if memory serves) and one of the major issues that came up was that SQL couldn't handle the rapid and sometimes massive change rate
    of folders etc so it was ditched because it could not keep up with JET 
    Jet (ESE) is still the most performant option available and as Andy says 2013 was a major and I mean MAJOR upgrade across the board with DB structure, resiliency and other features to make it more bullet proof if you will.    Also as Andy states
    anyone in the absolute know of any impending change couldn't say without violating their agreement with MS
    Search, Recover, & Extract Mailboxes, Folders, & Email Items from Offline Exchange Mailbox and Public Folder EDB's and Live Exchange Servers or Import/Migrate direct from Offline EDB to Any Production Exchange Server, even cross version i.e. 2003 -->
    2007 --> 2010 --> 2013 with Lucid8's
    DigiScope

  • Next-Generation Java 7 Plugin Performance on Windows 7 and IE 8

    Applet performance has historically been a black eye, to say the least, for Java Applets. Slow load times over today's networks are simply not tolerated by today's network standards. I'm currently supporting an Applet that is forced to move to the Java 7 Platform. As such, we are particularly sensitive to anything new that may further hinder applet performance. To that end, I've been doing quite a bit of benchmarking lately of Applet load times using various configurations with the Java 7 Plugin on Windows 7 using IE 8.
    To capture Java Applet load times, I've simply been marking the start time in Javascript from the HTML onLoad() event, and then calling out to a similar Javascript function to mark the end time from the bottom of the init() method in the Java Applet. I subtract the two times to get a general idea of how long it takes to load the applet.
    The best load times, so far, (when loading the JARs from the web server) occur when caching is employed (e.g., cache_option, cache_archive, cache_version). What I've noticed though, is that when everything else is the same, the performance is degraded by at least half when I check the 'Enable the next-generation Java Plug-in' in the Plugin Control Panel. Applet load times slow down by at least half when this option is enabled. When loading JAR files from the web server, with caching in effect, the applet load time performance is comparable to loading JAR files from the file system only when the next-generation plugin is not enabled. I assume this is because of the associated overhead of spinning-up this external JVM process, but I'm not certain.
    Does anyone know if this is a correct assumption? And if I'm correct, are there ways to speed up the loading of an applet when caching is used with the next-generation plugin? Is this another cold-start vs. warm-start issue for the JVM?
    My goal is to have applet load times for JARs loaded from the web server, using the next-generation plugin, as fast as when the JARs could be loaded from the local file system (which apparently is no longer possible using the next-generation plugin, sadly).
    Thanks!

    Thanks Igor.
    Web Browser: IE 8.0.76
    Java Plugin: 7u3 (1.7.0_03-b05)
    OS: Windows 7 Enterprise (32-bit)
    Server: Websphere 7
    Java Applet is in O&M phase and been around a while. Rich Internet Application with file system access requirements. Currently compiled with JDK 1.5. 10 JAR files total, 6 of which are third-party JARs. 4 JARs are custom and are signed.
    JAR1.jar -> 11077 bytes
    JAR2.jar -> 14207 bytes
    JAR3.jar -> 5093 bytes
    JAR4.jar -> 22233 bytes
    JAR5.jar -> 18722 bytes
    JAR6.jar -> 17578 bytes
    JAR7.jar -> 722237 bytes
    JAR8.jar -> 90688 bytes
    JAR9.jar -> 17521 bytes
    JAR10.jar -> 50686 bytes
    JSP Page is used to render the following HTML tags for loading the applet:
    <object classid="clsid:${UID}" name="preview" width="100%" height="300" id="poc">
    <PARAM name="java_code" value="com.loadfast.Applet.class"/>
    <param name="codebase" value="/www/applet"/>
    <PARAM name="cache_option" value="Plugin"/>
    <PARAM NAME="cache_archive" VALUE="
    JAR1.jar,
                        JAR2.jar,
                        JAR3.jar,
                        JAR4.jar,
                        JAR5.jar,
                        JAR6.jar,
                        JAR7.jar,
                        JAR8.jar,
                        JAR9.jar,
                        JAR10.jar
    "/>
    <PARAM NAME="cache_version" VALUE="
                        1.0.0.11,
                        1.0.0.11,
                        1.0.0.11,
                        1.0.0.11,
                        1.0.0.11,
                        1.0.0.11,
                        1.0.0.11,
                        1.0.0.11,
                        1.0.0.11,
                        1.0.0.11"/>
    <PARAM name="type" value="application/x-java-applet"/>
    </object>
    Here's a brief synopsis of my test methodology:
    Assuming caching is the fastest performance I'm going to get by putting JARs on web server, goal was to determine if browser plugin and next-gen plugin will offer the same performance in terms of time to load the Applet.
    To test, I unchecked the 'Enable Next-Gen' plugin option in the Java Plugin. I updated the cache_version values for all JARs. I 'touched' all JAR files in the WAR (I use cygwin) and redeployed the WAR. I have a cli script that launches IE and points it at my applet. When the applet loads, a Javascript Alert box displays showing the number of milliseconds it took to load the applet. I document the time, quit the browser, and re-execute my script. I do this 10 times for each test scenario and take the average.
    The two basic test scenarios are using the Browser Plugin (not next-gen) and using the Next-Gen Plugin. That is the only variable I change between test scenarios. Here is the raw data I collected for each test scenario:
    Not Using Next-Gen Plugin (milliseconds):
    run1 run2 run3 run4 run5 run6 run7 run8 run9 run10
    1761 474 535 495 500 505 502 267 693 513
    Avg: 625ms
    Using Next-Generation Plugin (milliseconds):
    run1 run2 run3 run4 run5 run6 run7 run8 run9 run10
    5382 1529 983 1545 1622 1575 1544 1544 1545 1529
    Avg: 1880ms
    The time it takes to load for each first run indicates caching is happening as subsequent runs are faster. I verified that the JVM is not making http requests for cached JAR files by proxying these requests with Tcpmon just to confirm this was the case.
    I'm basically just looking for a logical explanation to account for the significant time difference that occurs from this Plugin configuration change. It seems to make logical sense to me that this can be explained by JVM Process start up time, but I'm looking for corroboration on that or another explanation.
    Thanks for any advice, help, etc. I'll start looking into JNLP and JAR index as well.

  • Disable next-generation Java Plug-in-Is Applets load on same JVM guranteed?

    Dear all,
    I am working on a banking application that uses WinXP and JRE1.5, where the banking application is browser based and with a lot of applets. For inter-applet communcation, we use singleton, a Object called CommonFunctionUtility, which is a single instance so that all applets can share information.
    Recently, there is a direction to upgrade the JRE to 1.7. However, after upgrade, we find that applets are loaded to different JVMs so that they're not referring to the same instance of this CommonFunctionUtility, so applet hangs as they cannot retrieve correct information.
    As an interim solution to meet internal requirement to complete JRE1.7 rollout, it is suggested to disable the next-generation java plugin first, and amend the application later using other way to share data later. In view to this, may anyone have any idea that Oracle ever confirm that after disabling next-generation java plugin, it is guranteed that all applets in same browser will be loaded on same JVM?
    Regards,
    Francis

    By disabling the next generation plugin it should "work as before". That's about as much guarantee as you'll get, the business of providing guarantees lies on your shoulders (without an Oracle service agreement) through system integration tests.

  • Is there any way to ask Apple to add a certian TV Show (Star Trek : The Next Generation) to the iTunes store in Australia?

    Is there any way to ask Apple to add a certian TV Show (Star Trek : The Next Generation) to the iTunes store in Australia?

    You can try requesting it via this page : http://www.apple.com/feedback/itunes.html
    But utlimately it's the TV studios choice, they are the people who will have to grant Apple a license to have it in the Australian store.

  • Next generation SAP IS OIL version

    Hi,
    Can you tell me when next generation SAP IS OIL version is coming out? any links can you suggest.
    Rgds,

    SAP Oil & Gas 4.72

  • Need to disable next-generation Java plug-in for sccm deployment

    hey all,
    hope I have the right forum for this question.
    I'm deploying Java 7 update 55 to users in our company and have discovered that we need to disable the next generation plug-in.
    is there a way to deploy Java with the plug-in disabled?  preferably a command that I can add to a batch file.
    I've read about a registry hack (doesn't work based on feedback), but I'd prefer not to deploy a mass registry change company-wide.
    any help would be greatly appreciated.
    thanks for your time!

    I'm deploying Java 7 update 55 to users in our company and have discovered that we need to disable the next generation plug-in.
    is there a way to deploy Java with the plug-in disabled?  preferably a command that I can add to a batch file.
    I've read about a registry hack (doesn't work based on feedback), but I'd prefer not to deploy a mass registry change company-wide.
    any help would be greatly appreciated.
    Have you created the required deployment rule set?
    https://blogs.oracle.com/java-platform-group/entry/introducing_deployment_rule_sets?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+orana+(OraNA)
    This Symantec blog has several posts by JRE team members (they have 'Oracle' in their user id) about the issue and the above link is referenced from it:
    http://www.symantec.com/connect/forums/how-everyone-addressing-forced-java-dialog-java-update-needed-your-java-version-insecure
    This Symantec link discusses 'Updating Java through Managed Sjoftware Delivery Policy
    http://www.symantec.com/connect/articles/updating-java-through-managed-software-delivery-policy

  • MSI Next Generation Intel Platform Wish List of Features

    Hello,
    Please share your wish list of features which you would like to see in a next generation of MSI Intel Platform.
    Also what kind of BIOS options/features you wish to be included. (for example: OCing BIOS options, some other specific BIOS options)
    Thanks

    Quote from: AaronYuri on 10-January-08, 02:15:48
    Well the "performance level" memory setting would be a good addition. It isn't on any known mainboard to date. It's changed via MemSet however:
    It's available on an other brand engineering sample that I've recently benched with (cannot tell which one, sorry).  Anyway, I second your suggestion. PL is individually hard-coded for both memory channels (FED14249h for CH1 & FED14649h for CH2) and should be very easy to add in the bios. It can be individually available for each channel... 
    Another MCHBAR timing that could be nice to add is the one located at FED1403Fh. It was strap related on P965 chipset, but looks divider related on P35. This timing isn't available for tuning in anyway (bios or app.) but for instance can boost nicely the memory read bandwidth (by about 100MB/s) if sets to the proper value. ATM, the only way to change it, is by using a MCHBAR editor. (TMK this particular timing/setting isn't reported by any Intel datasheet)
    Following this way, adding a long list of options for setting timings should be very nice... I guess that's what the enthusiastic overclockers want a good board to have. It also speaks for the board's quality.
    A wide range of voltage settings would be great as well. Vcore, Vmch, Vfsb, Vpll, etc. With very high values availables (For instance, 1.65Vmch max on the P35D3 isn't enough...). A great reliability of voltage values (For instance, on my P35D3, 1.65Vmch equals 1.57v actual; 2.01Vcore equals 1.83v actual) and a particular care may be taken at reducing Vdroop.
    I'll post more ideas later. 

  • Next generation iPod nano idea

    The iPod nano before this generation had a camera for filming.
    Apple need to put a small but decent enough front facing camera back into the iPod nano.
    They also need to add wifi and FaceTime to it. This then means that people who wear the iPod nano as a watch have sate trek like communicator.
    Please Apple add these functions to the next generation iPod nano.

    Moosterish wrote:
    Please Apple add these functions to the next generation iPod nano.
    These are user-to-user forums where everyday folk post "technical" questions and offer answers to each other voluntarily.  No one here works for Apple nor does Apple get involved in responding.
    Go to the Product Feedback website to submit your suggestion.

  • So quite before the Next Generation Nokia Phone !!

    So quite before the Next Generation Nokia Phone !!

    pavilion_alex wrote:
    have you seen videos on YouTube about the Windows Phone 7?
    i find it beautiful.
    you do realize that some HTC phones have Windows installed, right?
    what's the point of going to Android if it only gets 2-3 updates only.
    taken from a site.
    As we count down the weeks till Gingerbread is released the majority of our audience has a phone with Android 2.1 or older and some of those devices will never see a software update again.
    will you be satisfied if your device will get only 2 updates?
    That's not correct.
    Some android devices have seen many updates, many far more than windows phones have seen in the year they've been on the market.
    My particular device (Xperia Arc) has seen several updates since March. It started on Gingerbread 2.3.2, it now has gingerbread 2.3.4 and is due to get 2.3.5 soon. But the most important part is those are just the updates to the core system, manufacturers can add/fix other things in updates that are unique to specific devices or brands.
    My device has seen updates to it's apps, new widgets/apps, new themes, new social integration, even a new lock screen. It's actually had that many significant changes it's made it exciting to get a new update.  All that whilst remaining on the same android version, gingerbread 2.3.x. 
    I'm extremely satisfied with my device that's seen three or four updates (two being major) in the last six to seven months.  Far more satisfied than when I was waiting as long for one major update for the N8!
    Just like some Nokia devices some android devices do get stuck on older versions and don't see core (or feature) updates but it's the manufacturer and hardware that dictate this. You can't judge an entire OS based on that because it doesn't happen to every device.  I suggest you do a little bit of personal research before trying to use it to prove a point.
    As for Nokia's windows phones i'm open to trying one since the mango update appeared. We'll find out just how good (or bad) those are next week when they are shown at Nokia World.  I look forward to personally trying one out on the 26th.

  • BrainShare: The next generation

    BrainShare has spanned decades and generations of IT professionals. Most attendees have been loyal Novell customers for a long time. Its part of what makes BrainShare (and Novell) so greatcreating stability that so many tech companies seek. But, how do you introduce the power of Novell to start building the next generation of fans?
    If you know someone under 30 that doesnt know about Novellor know enough about Novellinvite them to attend BrainShare 2014 with you. Or if youre not able to attend, encourage them to. Theyll be able to learn firsthand the value of the products your organization relies on and see products from our sister companies Attachmate and NetIQ, and theyll appreciate that nobodys using Jedi mind tricks on them. Itll be their first step into a larger world. The legacy can continue, and Novell can be the Force surrounding, penetrating and binding IT together.
    To celebrate the next generation of Novellers if youre attending BrainShare 2014 and would like to bring an additional employee under the age of 30 send your requests to [email protected] and you'll get a 40% discount on BrainShare 2014 attendance.

    Duckley,
    Any answer to your question would require violating the terms of use that are found on the right hand side and quoted below:
    "2. Submissions
    Search or browse for existing answers before you ask a question. Someone else may have asked your question — it may save you some time.
    Stay on topic. Apple's discussion forums are here to help people use Apple products and technologies more effectively. Unless otherwise noted, don't add Submissions about nontechnical topics, including:
    That Apple rumor you saw on another website.
    Discussions of Apple policies or procedures.
    Speculations/rumors about unannounced products.
    The status of your 1973 MG Midget restoration."
    What you are asking for can only be speculated.
    Sorry, but if you aren't happy with the graphics card on the MacBook, get an iMac, MacBook Pro, or MacPro, or even one of the older Macs with a better graphics card as listed on the spec database:
    http://www.info.apple.com/support/applespec.html
    from one of the used and refurbished links listed on my website:
    http://www.macmaps.com/usedrefurbished.html

  • The next generation

    With the next generation macbook pros shipping now, will it be a possibility for an actual graphics card in the next gen macbook? This the only thing that is holding me back from buying one now since I like intense 3d games and like the look and the price of the macbook

    Duckley,
    Any answer to your question would require violating the terms of use that are found on the right hand side and quoted below:
    "2. Submissions
    Search or browse for existing answers before you ask a question. Someone else may have asked your question — it may save you some time.
    Stay on topic. Apple's discussion forums are here to help people use Apple products and technologies more effectively. Unless otherwise noted, don't add Submissions about nontechnical topics, including:
    That Apple rumor you saw on another website.
    Discussions of Apple policies or procedures.
    Speculations/rumors about unannounced products.
    The status of your 1973 MG Midget restoration."
    What you are asking for can only be speculated.
    Sorry, but if you aren't happy with the graphics card on the MacBook, get an iMac, MacBook Pro, or MacPro, or even one of the older Macs with a better graphics card as listed on the spec database:
    http://www.info.apple.com/support/applespec.html
    from one of the used and refurbished links listed on my website:
    http://www.macmaps.com/usedrefurbished.html

  • Next-Generation Plug-In settings in the Enterprise

    I work in a company of 1000+ desktops and various user groups running various core systems. For background, we've been standardized on IE 6 for years, and we're trying to move to IE 8.
    I'm looking into an issue with one of our core systems. It's a 3rd party solution that relies on an applet that fails when the latest JRE is downloaded and the "Enable the next-generation Java Plug-in" is checked (which it is by default).
    I've been searching the web, and I know most of the work-arounds, including how to run ssvagent.exe -high -jpisetup -old from the JRE install folder. I'm almost ready to pass this information on to our desktop admins, but I have a few questions I know they are going to ask. I would deeply appreciate any help in answering these questions:
    What is the possible impact of disabling the next-generation Java Plug-in on other applets from other 3rd party vendors? Are we likely to run into some applets/plug-ins that fail when this option is disabled?
    The vendor of the app that's failing isn't being very helpful. Is there any info we can give them on how to recompile the applet so that it works under the default setting?
    What are other large enterprises doing to manage this?
    Thanks in advance for any answers. Until we have this resolved, we're unable to upgrade users to the current JRE.

    I tried the java_version param. It prompted me with a warning informing me that the app would run an earlier version of Java. I clicked run, and continued having the same issue. I captured this from the console:
    Java Plug-in 1.6.0_20
    Using JRE version 1.5.0_15-b04 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\kswans1.AMERICREDIT
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    java.lang.NoClassDefFoundError: sun/awt/DesktopBrowse
         at sun.plugin2.applet.Applet2Environment.initialize(Unknown Source)
         at sun.plugin2.main.client.PluginMain.handleMessageSetJVMID(Unknown Source)
         at sun.plugin2.main.client.PluginMain.mainLoop(Unknown Source)
         at sun.plugin2.main.client.PluginMain.run(Unknown Source)
         at sun.plugin2.main.client.PluginMain.main(Unknown Source)
    security: property package.access value sun.
    security: property package.access new value sun.,com.sun.javaws
    security: property package.access value sun.,com.sun.javaws
    security: property package.access new value sun.,com.sun.javaws,com.sun.deploy
    security: property package.access value sun.,com.sun.javaws,com.sun.deploy
    security: property package.access new value sun.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition value null
    security: property package.definition new value com.sun.javaws
    security: property package.definition value com.sun.javaws
    security: property package.definition new value com.sun.javaws,com.sun.deploy
    security: property package.definition value com.sun.javaws,com.sun.deploy
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access value sun.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access new value sun.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    security: property package.definition value com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    basic: setDeployURLClassPathCallbacks: no enhanced access
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@153f67e
    network: Cache entry found [url: http://drvmwebbnt02.americredit.com:9081/MyProvenir/MyProvenirZip.class, version: null] prevalidated=false/0
    network: Connecting http://drvmwebbnt02.americredit.com:9081/MyProvenir/MyProvenirZip.class with proxy=DIRECT
    network: Connecting http://drvmwebbnt02.americredit.com:9081/MyProvenir/MyProvenirZip.class with cookie "JSESSIONID=84C38F94C7BABF9B3318856D87B9736D; __utma=1.1067525869.1271360926.1278605523.1278684887.12; __utmz=1.1271360926.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)"
    network: ResponseCode for http://drvmwebbnt02.americredit.com:9081/MyProvenir/MyProvenirZip.class : 304
    network: Encoding for http://drvmwebbnt02.americredit.com:9081/MyProvenir/MyProvenirZip.class : null
    network: Disconnect connection to http://drvmwebbnt02.americredit.com:9081/MyProvenir/MyProvenirZip.class
    network: Cache entry not found [url: http://drvmwebbnt02.americredit.com:9081/MyProvenir/, version: null]
    basic: Applet loaded.
    basic: Applet resized and added to parent container
    basic: PERF: AppletExecutionRunnable - applet.init() BEGIN ; jvmLaunch dt 374612 us, pluginInit dt 666096 us, TotalTime: 1040708 us
    basic: Applet initialized
    basic: Removed progress listener: sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@153f67e
    basic: Applet made visible
    basic: Starting applet
    basic: completed perf rollup
    basic: Applet started
    basic: Told clients applet is started

  • Error while installing the SAP J2EE add-on for SAP NW XI installation

    Error while installing the SAP J2EE add-on for SAP NW XI installation  
    Posted: Jan 24, 2007 5:23 PM         Reply      E-mail this post 
    Hello,
    When I am installing the SAP SAP J2EE add-on for SAP NW XI installation I am getting the follwing error:
    CJS-00084 SQL statement or script failed. DIAGNOSIS: Error message: Executable /oracle/XID/920_64/bin/sqlplus returns 127.. SOLUTION: See ora_sql_results.log and the Oracle documentation for details
    Could some one help me to resolve this error and install the SAP J2EE add-on?
    Thanks,
    George

    Hi George,
    Kindly use the latest installation Masted in Service market place. That will possibly solve your problem.
    Regards
    Vivek

Maybe you are looking for