Help me to apply this sapnote please!

I've never done it before.
So we would apply this note e 1025910 - HR-IT:
Our system is SAP R/3 Enterprise with  SAP_HR 470 0058
I undesterdtand the i have to download 470_132315_SYST.CAR and ALL_222454_CUST.CAR.
But then, what i have to do?
The note explain also that some table must be customized
Pls can you help me in this procedure?

Hello Sleep,
The OSS notes indeed are tricky.
Prerequisite notes for 1025910:
***989847 - HR-IT: Finanziaria 2007
Prerequisite notes for 989847
***964635
***1015793
So ideal note sequence must be:
#1 Apply note 964635
#2 Apply note 1015793
#3 Apply note 989847
#4 Apply note 1025910
*Notes are usually linked to support packages, check if the linked support package is applied. (Check if the correction instructions mentioned in the note have already been applied by the suport package)
*Please plan your steps before you execute.
*Make detail notes of all manual changes made to the system.
*Check if you have a recent successfull backup (incase of emergency)
*Export the data from tables before you make any changes (incase you need to revert back).
Regards,
Ammey Kesarkar
<i>'All the best'</i>

Similar Messages

  • HT1338 I have a macbook Pro i7 mid november 2010. I am wondering if i can exchange my notebook with the latest one. Can anyone help me out with this query please.

    I have a macbook Pro i7 mid november 2010. I am wondering if i can exchange my notebook with the latest one. Can anyone help me out with this query please.

    You can sell your existing computer using eBay, Craigslist or the venue of your choice. You could then use the proceeds to purchase a new computer.

  • I have the iPhone 4 recently became weak Wi-Fi where I can not use the Internet only when sitting Bejjani router, Can anyone help me in solving this problem please iPhone 4, iOS 7.0.3

    I have the iPhone 4 recently became weak Wi-Fi where I can not use the Internet only when sitting Bejjani router, Can anyone help me in solving this problem please
    iPhone 4, iOS 7.0.3

    There's a whole lot to read in your post, and frankly I have not read it all.
    Having said that, this troubleshooting guide should help:
    http://support.apple.com/kb/TS1538
    In particular, pay attention to the mobile device support sections near the bottom, assuming you have already done the items above it.

  • Help Me To Fix This Loading Please

    Dear All Users
    I really need your help on this, I have a loader in my edge animate that i picked up from http://www.gayadesign.com/diy/queryloader-preload-your-website-in-styl e/
    and this is the Only loader that works very well on Edge and Load anything Completely, loader had some bugs so i google it and find fixes for, and now i have this loader without any bug except One bug that loader has with Maxthon, IE, Chrome and Safari browsers, i'm going Crazy right Now and dont know what to do with this Bug, The bug is only at last seconds of loading, after load complete a symbol that created in the loading Script wont remove !!
    if you try this on any edge Project you will see after loading is complete you just see a 0% in a black screen but if you zoom out your Browser you will see your project is there...
    and the point is this is happen only with Maxthon, IE, Chrome and Safari, and works very well with FireFox ... !!!
    i really need this loading, Here is the Final Script and CSS file that Loader Needs :
    CSS File Link : http://www.mediafire.com/?kb11s474aipt39w
    Script :
    var QueryLoader = {
            overlay: "",
            loadBar: "",
            preloader: "",
            items: new Array(),
            doneStatus: 0,
            doneNow: 0,
            selectorPreload: "body",
            ieLoadFixTime: 2000,
            ieTimeout: "",
            init: function() {
                    if (navigator.userAgent.match(/MSIE (\d+(?:\.\d+)+(?:b\d*)?)/) == "MSIE 6.0,6.0") {
                            //break if IE6                
                            return false;
                    if (QueryLoader.selectorPreload == "body") {
                            QueryLoader.spawnLoader();
                            QueryLoader.getImages(QueryLoader.selectorPreload);
                            QueryLoader.createPreloading();
                    } else {
                            $(document).ready(function() {
                                    QueryLoader.spawnLoader();
                                    QueryLoader.getImages(QueryLoader.selectorPreload);
                                    QueryLoader.createPreloading();
                    //help IE drown if it is trying to die
                    QueryLoader.ieTimeout = setTimeout("QueryLoader.ieLoadFix()", QueryLoader.ieLoadFixTime);
            ieLoadFix: function() {
                    if(jQuery.browser.msie){
                            if ((100 / QueryLoader.doneStatus) * QueryLoader.doneNow < 100) {
                                    QueryLoader.imgCallback();
                                    QueryLoader.ieTimeout = setTimeout("QueryLoader.ieLoadFix()", QueryLoader.ieLoadFixTime);
            imgCallback: function() {
                    QueryLoader.doneNow ++;
                    QueryLoader.animateLoader();
            getImages: function(selector) {
                    var everything = $(selector).find("*:not(script)").each(function() {
                            var url = "";
                            if ($(this).css("background-image") != "none") {
                                    var url = $(this).css("background-image");
                            } else if (typeof($(this).attr("src")) != "undefined" && $(this).prop("tagName").toLowerCase() == "img") {
                                    var url = $(this).attr("src");
                            url = url.replace("url(\"", "");
                            url = url.replace("url(", "");
                            url = url.replace("\")", "");
                            url = url.replace(")", "");
                            if (url.length > 0) {
                                    QueryLoader.items.push(url);
            createPreloading: function() {
                    QueryLoader.preloader = $("<div></div>").appendTo(QueryLoader.selectorPreload);
                    $(QueryLoader.preloader).css({
                            height:         "0px",
                            width:          "0px",
                            overflow:       "hidden"
                    var length = QueryLoader.items.length;
                    QueryLoader.doneStatus = length;
                    for (var i = 0; i < length; i++) {
                            var imgLoad = $("<img></img>");
                            $(imgLoad).attr("src", QueryLoader.items[i]);
                            $(imgLoad).unbind("load");
                            $(imgLoad).one('load', function() {             //IE Cache Fix  
                              QueryLoader.imgCallback();
                            }).each(function() {
                              if(this.complete) $(this).load();
                            $(imgLoad).appendTo($(QueryLoader.preloader));
            spawnLoader: function() {
                    if (QueryLoader.selectorPreload == "body") {
                            var height = $(window).height();
                            var width = $(window).width();
                            var position = "fixed";
                    } else {
                            var height = $(QueryLoader.selectorPreload).outerHeight();
                            var width = $(QueryLoader.selectorPreload).outerWidth();
                            var position = "absolute";
                    var left = $(QueryLoader.selectorPreload).offset()['left'];
                    var top = $(QueryLoader.selectorPreload).offset()['top'];
                    QueryLoader.overlay = $("<div></div>").appendTo($(QueryLoader.selectorPreload));
                    $(QueryLoader.overlay).addClass("QOverlay");
                    $(QueryLoader.overlay).css({
                            position: position,
                            top: top,
                            left: left,
                            width: width + "px",
                            height: height + "px"
                    QueryLoader.loadBar = $("<div></div>").appendTo($(QueryLoader.overlay));
                    $(QueryLoader.loadBar).addClass("QLoader");
                    $(QueryLoader.loadBar).css({
                            position: "relative",
                            top: "50%",
                            width: "0%"
                    QueryLoader.loadAmt = $("<div>0%</div>").appendTo($(QueryLoader.overlay));
                    $(QueryLoader.loadAmt).addClass("QAmt");
                    $(QueryLoader.loadAmt).css({
                            position: "relative",
                            top: "50%",
                            left: "50%"
            animateLoader: function() {
                    var perc = (100 / QueryLoader.doneStatus) * QueryLoader.doneNow;
                    if (perc > 99) {
                            $(QueryLoader.loadAmt).html("100%");
                            $(QueryLoader.loadBar).stop().animate({
                                    width: perc + "%"
                            }, 500, "linear", function() {
                                    QueryLoader.doneLoad();
                    } else {
                            $(QueryLoader.loadBar).stop().animate({
                                    width: perc + "%"
                            }, 500, "linear", function() { });
                            $(QueryLoader.loadAmt).html(Math.floor(perc)+"%");
            doneLoad: function() {
                    //prevent IE from calling the fix
                    clearTimeout(QueryLoader.ieTimeout);
                    //determine the height of the preloader for the effect
                    if (QueryLoader.selectorPreload == "body") {
                            var height = $(window).height();
                    } else {
                            var height = $(QueryLoader.selectorPreload).outerHeight();
                    //The end animation, adjust to your likings
                    $(QueryLoader.loadAmt).hide();
                    $(QueryLoader.loadBar).animate({
                            height: height + "px",
                            top: 0
                    }, 500, "linear", function() {
                            $(QueryLoader.overlay).fadeOut(800);
                            $(QueryLoader.preloader).remove();
    yepnope({nope:[
                                                      'queryLoader.css',
                                                      ],complete: initialize});
    function initialize (){
                                                      QueryLoader.init();
    Note : when  you are in the Edge and hit ctrl+enter the project loads very well in IE, Chrome, and Safari without any problems !!  but when save and run HTML file the problem would appear !!
    but if you run that HTML file in Firefox everything works like a charm...
    i really don't know what can i do, i used all of my knowledge that i had in java Programming but no luck :'(
    Please Help Me...
    Note : you have to use this code inside of Preloader > Loading
    & place CSS file in the main folder of your Edge Project
    Zaxist

    Hello Zaxist,
    I must say this script is driving me nuts since the beginning.
    How hard can it be for a (simple) percentage preloader to use on our (Edge Animate) website?
    It was all so easy in Flash. A different story now.
    I can see when pasting the code below (or yours) in the Preloader "loading" event, the code gets triggered 3 times.
    So it seems it works (in Chrome) but 2 of the 3 loading overlays (+loadbar and text) won't remove like it should.
    I don't have a solution for this either, but maybe someone with much more javascript experience can help us out with this one?
    The nicest thing would be if the Adobe Edge Animate team provide us something simple we can put in the Preloader "loading" event like:
    sym.$("ldr_txt").html(e.loaded+"%");
    or maybe the use of (e.bytesloaded) and (e.bytestotal)?
    Wouldn't that be great? Maybe they are working on this?
    I really hope we finally can get a proper solution for this.
    An animated gif (as we have now) is simply not enough.
    Kind Regards,
    Lester.
    The below code is almost the same of yours, without the CSS.
    var QueryLoader = {
              overlay: "",
              loadBar: "",
              preloader: "",
              items: new Array(),
              doneStatus: 0,
              doneNow: 0,
              selectorPreload: "body",
              ieLoadFixTime: 10,
              ieTimeout: "",
              init: function() {
                                   if (navigator.userAgent.match(/MSIE (\d+(?:\.\d+)+(?:b\d*)?)/) == "MSIE 6.0,6.0") {
                                                                //break if IE6                
                                                                return false;
                                   QueryLoader.spawnLoader();
                                   QueryLoader.getImages(QueryLoader.selectorPreload);
                                   QueryLoader.createPreloading();
                                   //help IE drown if it is trying to die
                                   QueryLoader.ieTimeout = setTimeout("QueryLoader.ieLoadFix()", QueryLoader.ieLoadFixTime);
                                   console.log("INIT")
              ieLoadFix: function() {
                                   if(jQuery.browser.msie){
                                                                if ((100 / QueryLoader.doneStatus) * QueryLoader.doneNow < 100) {
                                                                                      QueryLoader.imgCallback();
                                                                                      QueryLoader.ieTimeout = setTimeout("QueryLoader.ieLoadFix()", QueryLoader.ieLoadFixTime);
              imgCallback: function() {
                                   QueryLoader.doneNow ++;
                                   QueryLoader.animateLoader();
              getImages: function(selector) {
                                   var everything = $(selector).find("*:not(script)").each(function() {
                                                                var url = "";
                                                                if ($(this).css("background-image") != "none") {
                                                                                      var url = $(this).css("background-image");
                                                                } else if (typeof($(this).attr("src")) != "undefined" && $(this).prop("tagName").toLowerCase() == "img") {
                                                                                      var url = $(this).attr("src");
                                                                url = url.replace("url(\"", "");
                                                                url = url.replace("url(", "");
                                                                url = url.replace("\")", "");
                                                                url = url.replace(")", "");
                                                                if (url.length > 0) {
                                                                                      QueryLoader.items.push(url);
              createPreloading: function() {
                                   QueryLoader.preloader = $("<div></div>").appendTo(QueryLoader.selectorPreload);
                                   $(QueryLoader.preloader).css({
                                                                height:         "0px",
                                                                width:          "0px",
                                                                overflow:       "hidden"
                                   var length = QueryLoader.items.length;
                                   QueryLoader.doneStatus = length;
                                   for (var i = 0; i < length; i++) {
                                            (function(i) {
                                                                var imgLoad = $("<img></img>");
                                                                $(imgLoad).attr("src", QueryLoader.items[i]);
                                                                $(imgLoad).unbind("load");
                                                                $(imgLoad).one('load', function() {             //IE Cache Fix  
                                                                  QueryLoader.imgCallback();
                                                                }).each(function() {
                                                                  if(this.complete) $(this).load();
                                                                $(imgLoad).appendTo($(QueryLoader.preloader));
                                                                  })(i);
              spawnLoader: function() {
                                   var height = $(window).height();
                                   var width = $(window).width();
                                   var position = "fixed";
                                   var left = $(QueryLoader.selectorPreload).offset()['left'];
                                   var top = $(QueryLoader.selectorPreload).offset()['top'];
                                   QueryLoader.overlay = $("<div></div>").appendTo($(QueryLoader.selectorPreload));
                                   $(QueryLoader.overlay).css({
                                                                "background-color":"#000",
                                                                "z-index":"9999",
                                                                position: position,
                                                                top: top,
                                                                left: left,
                                                                width: width + "px",
                                                                height: height + "px"
                                   QueryLoader.loadBar = $("<div></div>").appendTo($(QueryLoader.overlay));
                                   $(QueryLoader.loadBar).css({
                                                                "background-color":"#ccc",
                                                                height:"6px",
                                                                position: "relative",
                                                                top: "50%",
                                                                left: "0%",
                                                                width: "0%"
                                   QueryLoader.loadAmt = $("<div>0%</div>").appendTo($(QueryLoader.overlay));
                                   $(QueryLoader.loadAmt).css({
                                            color:"#666",
                                            "font-family":"'Trebuchet MS',Arial,Helvetica,sans-serif",
                                            "font-size":"24px",
                                            "font-weight":"700",
                                            "line-height":"50px",
                                            height:"50px",
                                            width:"100px",
                                            margin:"-60px 0 0 -50px",
                                                                position: "relative",
                                                                top: "50%",
                                                                left: "52%"
                                   //console.log("SPAWNLOADER")
              animateLoader: function() {
                                   var perc = (100 / QueryLoader.doneStatus) * QueryLoader.doneNow;
                                   if (perc > 99) {
                                                                $(QueryLoader.loadAmt).html("100%");
                                                                $(QueryLoader.loadBar).stop().animate({
                                                                                      width: perc + "%"
                                                                }, 500, "linear", function() {
                                                                                      QueryLoader.doneLoad();
                                   } else {
                                                                $(QueryLoader.loadBar).stop().animate({
                                                                                      width: perc + "%"
                                                                }, 500, "linear", function() { });
                                                                $(QueryLoader.loadAmt).html(Math.floor(perc)+"%");
              doneLoad: function() {
                                   //prevent IE from calling the fix
                                   clearTimeout(QueryLoader.ieTimeout);
                                   var height = $(window).height();
                                  //The end animation, adjust to your likings
                                   $(QueryLoader.loadAmt).hide();
                                   $(QueryLoader.loadBar).animate({
                                                                //height: height + "px",
                                                                //top: "0%"
                                   }, 500, "linear", function() {
                                                                $(QueryLoader.overlay).fadeOut(800);
                                                                $(QueryLoader.preloader).remove();
                                                                console.log("LOADED")                                         
    QueryLoader.init();

  • I need someone to help me out of this hole please for the love of God!

    About a month ago water was spilled onto my MacBook Pro 2.4GHz Intel Core Duo. This caused several keys on my keyboard to stick and several other keys to not function and all. To add insult to injury the DVD optical drive now works about one out of every 100 times. To drive the final nail through my brain I have been unable to locate my install disk one.
    The problems stems from this.....at some point my admin password was needing to be input which it was. However not noticing the key sticking problem right away the password was somehow reset to a random number of stuck key inputs and punctuation marks. I now no longer have Admin access to my own computer.
    The situation is getting desperate. Luckily I do not have to input the password on boot up but I can not add any new programs or upgrade any existing programs as I can not modify the applications folder....not being the admin and all.
    I solved the keyboard problem by way of the apple mini bluetooth keyboard and just yesterday I purchased a USB external optical drive. However I have had any luck booting to the install disk (I have since borrowed a friends)
    Last night I got close to resetting the password using target mode and another mac but it was sounding like I wasn't quite getting booted into single user mode as when I imput the standard seried of fsck -y and rm /-uaw and the rm /var/db/.AppleSetupDone I ended up getting a promt that said something to the effect of override -rw-------uw/0 var/db/.applesetupdone? at which point I was being prompted for a yes or no which I input "Y" for yes and then it just returned and said permission denied.
    Now I am back at the attempt again this morning and have another install disk. I can get to the Utilities meny and select any of the tools....."reset password" " or "system profiler" however pretty much every single utility tool I select "Quits unexpectedly" and I am asked to reset and relaunch but I can NOT get them to work.
    I refer to Console and I see some error messages saying cryptic things such as....
    11/24/09 8:37:57 AM [0x0-0x28028].Reset Password[261] Expected in: /usr/lib/libSystem.B.dylib
    11/24/09 8:37:57 AM [0x0-0x28028].Reset Password[261] dyld: Symbol not found: __commpagedsmos
    11/24/09 8:37:57 AM [0x0-0x28028].Reset Password[261] Referenced from: /Volumes/Mac OS X Install Disc 1/Applications/Utilities/Reset Password.app/Contents/MacOS/Reset Password
    11/24/09 8:46:57 AM [0x0-0x38038].System Profiler[320] dyld: lazy symbol binding failed: Symbol not found: __commpagedsmos
    I am really at a loss here and if there is anyone out there that can help me out I would be forever greatful.
    Thank you.

    Wow you guys are completely off base about how I am reacting, sorry....I mean now I'm a little upset because you have no idea how frustrating this is for me, I have said over and over how appreciative I am of everyone who has even replied. In reading and re-reading my last post I think it is pretty clear what my intent was with my comment, unless you practice at being a dick. All I was saying is that as the individual tidbits of information were streaming in, progress was being made but no resolution yet, which makes it appear like this is not going to be some easy fix, if all the advice coming in from people who have thousands and posts and obviously much more experience than I do and when that group is all out of ideas,,,,,,I am in deep doo doo. No I didn't mean it like I thought the entire forum was conspiring against me, just making an observation......sheesh lighten up. Just saying if guys were out of ideas I was probably out of luck, sorry to put quotations around the word "experts"....everyone on this board that has had any kind of an idea to try IS and EXPERT compared to me. I mean sorry pal but compared to how I actually feel and in reading my posts many times now, they are pretty complimentary. But again in re-reading these last two.....don't see a lot of advice in there. Anywhoooo..... I took it to the genius bar.....and VOILA they were able to reset my password.......my standard access password........standard as in now I can log in with a password but that is all I can do now I can't modify pretty much any folder. However I CAN now boot into single user mode as I was correct my thinking that the master password was preventing me from booting into single user mode....so I get the proper screen now when I boot to disk and I get the correct utility menu pulldown and run the reset password utility from there and now it doesn't keep quitting however when it should show the actual Hard Drive that I am wanting to apply the reset to....it never shows my hard drive OSX it only shows my Install DVD containing OSX. So anyway, sorry if the grinding of the teeth was beginning to leave dust in my posts I'll be careful not to recklessly "compliment" anymore

  • Help needed in understanding this question, please.

    Here is the question:
    What is the number displayed when the following program is compiled and run.
    class test {
        public static void main(String args[]) {
            test test1 = new test();
                System.out.println(test1.xyz(100));   
        public int xyz(int num) {
            if(num == 1) return 1;
            else return(xyz(num-1) + num);
    Answer= 5050.
    I'll be honest I am lost as to what happens in this code. Any help in explaining what happens in the code would be gratefully received, thanks, Dave.

    public int xyz(int num) {
    if(num == 1) return 1;
    else return(xyz(num-1) + num);
    it's called recursion, the method calls itself
    xyz(100) returns
    xyz(99)+100 which returns
    xyz(98)+99 which returns
    xyz(97)+98 which returns
    xyz(99)+100 which returns
    until you get to xyz(1) which returns 1
    so starting from the end of the recursion you get
    (for num = 2): 1+2
    (for num = 3): 3+3
    (for num = 4): 6+4
    (for num = 5): 10+5
    (for num = 100): 4950+100

  • TS1292 I have an older gift card that was not redeemed.  The number on the back is 602625819659 .  There is also a pin # that is covered.  I believe it is worth $15.75  Can you please help me apply this to my account?

    I have an older gift card that I would like to apply to my itunes account.  It has a card number and a pin number the ability to scratch off to reveal.  Can you help me apply this to my account?  The best I can tell is that the card still has $15.75 remaining on it.
    Thanks you

    We are all itunes users just like you.
    You should not leave your card number on a public forum

  • When starting Window XP on my laptop (which was connected, in the past, in a wi-fi network now no more available) appears immediatly this allert: "iTunes Helper was not installed correctly. Please reinstall iTunes. ERROR 7."  Reistallation impossible!

    When starting Window XP on my laptop (which was connected, in the past, in a wi-fi network now no more available) appears immediatly this allert: "iTunes Helper was not installed correctly. Please reinstall iTunes. ERROR 7."
    Reistallation of older or up to date  iTunes versions is impossible because: "Installation package iTunes.msi is located on a network resource not available" and because "It is impossible to remuove thew previous verson of iTunes. Impossible fto find the path."
    Someone can help me ???
    Thank,
    Gerald

    Take a look at iTunes for Windows: "Error 7" message when opening iTunes. Perhaps your .NET Framework needs a repair.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Good evening I would please help me, IGood evening I would please help me, I have problems with flash player when update on my computer Flash Player for windows 8, gives me error in the installation that is not apply on my computer. Please help. Thank You

    Good evening I would please help me, IGood evening I would please help me, I have problems with flash player when update on my computer Flash Player for windows 8, gives me error in the installation that is not apply on my computer. Please help. Thank You

    First, confirm that ActiveX Filtering is configured to allow Flash content:
    https://forums.adobe.com/thread/867968
    Internet Explorer 11 introduces a number of changes both to how the browser identifies itself to remote web servers, and to how it processes JavaScript intended to target behaviors specific to Internet Explorer. Unfortunately, this means that content on some sites will be broken until the content provider changes their site to conform to the new development approach required by modern versions of IE.
    You can try to work around these issues by using Compatibility View:
    http://windows.microsoft.com/en-us/internet-explorer/use-compatibility-view#ie=ie-11
    If that is too inconvenient, using Google Chrome may be a preferable alternative.

  • HT1338 i have mac osx 10.5.8 what can i do to get newer version? I tryid almost everything. I am not so god in this. Please help me:-(

    i have mac osx 10.5.8 what can i do to get newer version? I tryid almost everything. I am not so god in this. Please help me:-(

    The first thing is read:
    General Requirements
    OS X v10.6.8 or later
    2GB of memory
    8GB of available space
    Some features require an Apple ID; terms apply.
    Some features require a compatible Internet service provider; fees may apply.
    Supported
    Models
    iMac (Mid 2007 or newer)
    MacBook (Late 2008 Aluminum, or Early 2009 or newer)
    MacBook Pro (Mid/Late 2007 or newer)
    Xserve (Early 2009)
    MacBook Air (Late 2008 or newer)
    Mac mini (Early 2009 or newer)
    Mac Pro (Early 2008 or newer)

  • Please help me to run this CMP BEAN, I need help urgently, I am running out of time :(

    Hi,
    I am facing this problem, Please help me, I am attaching the source files
    also along with the mail. This is a small CMP EJB application, I am using
    IAS SP2 on NT server with Oracle 8. I highly appreciate if someone can send
    me the working copy of the same. I need these urgent. I am porting all my
    beans from bea weblogic to Iplanet. Please help me dudes.
    Err.........
    [06/Sep/2001 13:41:29:7] error: EBFP-marshal_internal: internal exception
    caught
    in kcp skeleton, exception = java.lang.NoSuchMethodError
    [06/Sep/2001 13:41:29:7] error: Exception Stack Trace:
    java.lang.NoSuchMethodError
    at
    com.se.sales.customer.ejb_kcp_skel_CompanyHome.create__com_se_sales_c
    ustomer_Company__java_lang_Integer__indir_wstr__215617959(ejb_kcp_skel_Compa
    nyHo
    me.java:205)
    at com.kivasoft.ebfp.FPRequest.invokenative(Native Method)
    at com.kivasoft.ebfp.FPRequest.invoke(Unknown Source)
    at
    com.se.sales.customer.ejb_kcp_stub_CompanyHome.create(ejb_kcp_stub_Co
    mpanyHome.java:297)
    at
    com.se.sales.customer.ejb_stub_CompanyHome.create(ejb_stub_CompanyHom
    e.java:89)
    at
    com.se.sales.customer.CompanyServlet.doGet(CompanyServlet.java:35)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unkno
    wn Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Caught an exception.
    java.rmi.RemoteException: SystemException: exid=UNKNOWN
    at com.kivasoft.eb.EBExceptionUtility.idToSystem(Unknown Source)
    at com.kivasoft.ebfp.FPUtility.replyToException(Unknown Source)
    at
    com.se.sales.customer.ejb_kcp_stub_CompanyHome.create(ejb_kcp_stub_Co
    mpanyHome.java:324)
    at
    com.se.sales.customer.ejb_stub_CompanyHome.create(ejb_stub_CompanyHom
    e.java:89)
    at
    com.se.sales.customer.CompanyServlet.doGet(CompanyServlet.java:35)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unkno
    wn Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Thanks in advance
    Shravan
    [Attachment iplanet_app.jar, see below]
    [Attachment iplanet_src.jar, see below]

    One reason that I sometimes get 'NoSuchMethodError' is when I make a change to a
    java class that is imported into another java class. When I go to run the
    importing class, it will throw a 'NoSuchMethodError' on any methods that I've
    changed in the imported class. The solution is to recompile the importing class
    with the changed classes in the classpath.
    shravan wrote:
    Hi,
    I am facing this problem, Please help me, I am attaching the source files
    also along with the mail. This is a small CMP EJB application, I am using
    IAS SP2 on NT server with Oracle 8. I highly appreciate if someone can send
    me the working copy of the same. I need these urgent. I am porting all my
    beans from bea weblogic to Iplanet. Please help me dudes.
    Err.........
    [06/Sep/2001 13:41:29:7] error: EBFP-marshal_internal: internal exception
    caught
    in kcp skeleton, exception = java.lang.NoSuchMethodError
    [06/Sep/2001 13:41:29:7] error: Exception Stack Trace:
    java.lang.NoSuchMethodError
    at
    com.se.sales.customer.ejb_kcp_skel_CompanyHome.create__com_se_sales_c
    ustomer_Company__java_lang_Integer__indir_wstr__215617959(ejb_kcp_skel_Compa
    nyHo
    me.java:205)
    at com.kivasoft.ebfp.FPRequest.invokenative(Native Method)
    at com.kivasoft.ebfp.FPRequest.invoke(Unknown Source)
    at
    com.se.sales.customer.ejb_kcp_stub_CompanyHome.create(ejb_kcp_stub_Co
    mpanyHome.java:297)
    at
    com.se.sales.customer.ejb_stub_CompanyHome.create(ejb_stub_CompanyHom
    e.java:89)
    at
    com.se.sales.customer.CompanyServlet.doGet(CompanyServlet.java:35)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unkno
    wn Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Caught an exception.
    java.rmi.RemoteException: SystemException: exid=UNKNOWN
    at com.kivasoft.eb.EBExceptionUtility.idToSystem(Unknown Source)
    at com.kivasoft.ebfp.FPUtility.replyToException(Unknown Source)
    at
    com.se.sales.customer.ejb_kcp_stub_CompanyHome.create(ejb_kcp_stub_Co
    mpanyHome.java:324)
    at
    com.se.sales.customer.ejb_stub_CompanyHome.create(ejb_stub_CompanyHom
    e.java:89)
    at
    com.se.sales.customer.CompanyServlet.doGet(CompanyServlet.java:35)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unkno
    wn Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Thanks in advance
    Shravan
    Name: iplanet_app.jar
    iplanet_app.jar Type: Java Archive (application/java-archive)
    Encoding: x-uuencode
    Name: iplanet_src.jar
    iplanet_src.jar Type: Java Archive (application/java-archive)
    Encoding: x-uuencode

  • My iPhone 6 ear speaker is not working properly I couldn't able to hear any thing from ear speaker to lissen I had to put on loud speaker or to use handsfree please help me out with this problem if some body have answer?

    My iPhone 6 ear speaker is not working properly I couldn't able to hear any thing from ear speaker to listen I had to put on loud speaker or to use hands free please help me out with this problem if some body have answer?

    Hi Venkata from NZ,
    If you are having an issue with the speaker on your iPhone, I would suggest that you troubleshoot using the steps in this article - 
    If you hear no sound or distorted sound from your iPhone, iPad, or iPod touch speaker - Apple Support
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • My itunes library is empty but i want to upgrade my ipod without losing my music. how can i do this? please someone HELP!!!

    i recently got a new laptop so my itunes library is empty but i want to upgrade my ipod without losing my music. how can i do this? please someone HELP!!!

    but i got music from my old laptop and my little brothers laptop so basically its no way i can take whats already on my ipod and put it on my computer and drag and drop it to my new itunes library

  • I have problem with account that i can't make update or buy from app store There is massage appear in my payment page that i must contact with i tunes support to complete this transaction Please help me to fixe this problem as soon possible Hany hassan 00

    I have problem with account that i can't make update or buy from app store
    There is massage appear in my payment page that i must contact with i tunes support to complete this transaction
    Please help me to fixe this problem as soon possible
    Hany hassan
    0096597617317
    0096596677186
    Thank you

    You need to Contact iTunes Support...
    Apple  Support  iTunes Store  Contact Us

  • I have unabled 5 fingure gesture now not able to perform any task,also my power button is not working,please help me in removing this gesture,using I phone 4

    I have unabled 5 fingure gesture now not able to perform any task,also my power button is not working,please help me in removing this gesture,using I phone 4

    I have unabled 5 fingure gesture now not able to perform any task,also my power button is not working,please help me in removing this gesture,using I phone 4

Maybe you are looking for

  • Why does my Macbook Air only have 64MB of dedicated video memory

    Hello, I created a windows partition on my Macbook Air and after going into my Display settings I see that it only has 64MB of dedicated video memory out of 1696MB. Please tell me how I can fix this problem as I should have much more Dedicated memory

  • Why iPod (with video 60G) is unrecognized?

    My iPod with video 60G is not recognized or charged by my laptop computer.... I have tried "reset my iPod" and changed it to "disk mode" but it still does not work. Could someone please help me? Thank you.   Windows XP  

  • Deleted calendar event alert

    Hi all,          I deleted a calendar event from my iPhone 4S after the event but it keeps popping up on my phone as an alert every single day. I might have set it to recurring which I dont remember but even if I did I deleted the event itself. I syn

  • Problems with PDF Forms

    I'm using Adobe Acrobat Version 9.4.6. I've created forms within a PDF to make it editable. I've then emailed the file to others, they fill it out and save it. When they send it back to me, it's blank. I can click individually on each text box and it

  • New tables in 12.1.3 not in 12.1.1 of Oracle Inventory module

    Hi All, I was analyzing 12.1.3. and found following as new tables in 12.1.3 compared to 12.1.1 MTL_CLIENT_PARAMETERS MTL_BILLING_RULE_HEADERS_B MTL_BILLING_RULE_HEADERS_TL MTL_BILLING_RULE_LINES MTL_TXNS_HISTORY Can any one tell whether these tables