Runtime error in Applet only appears when running through IDE applet viewer

Java 5.0
Netbeans 4.1
Linux (Suse 9.3)
I only started getting this error when I set the data loading and initialization classes into a separate thread. (the data loading and init is currently just using dummy test data within the class, nothing is loaded from external files as of yet)
Exception in thread "J3D-MasterControl" java.lang.NullPointerException
        at javax.media.j3d.SoundScheduler.activate(SoundScheduler.java:714)
        at javax.media.j3d.MasterControl.viewActivate(MasterControl.java:2539)
        at javax.media.j3d.MasterControl.handlePendingRequest(MasterControl.java:3032)
        at javax.media.j3d.MasterControl.doWork(MasterControl.java:2956)
        at javax.media.j3d.MasterControlThread.run(MasterControlThread.java:28)This error only comes up about 50% of the time, and only when I run it within the IDE applet viewer. I've never gotten this error when I run it from a web browser (tested with IE, Firefox and Opera).
Is this an error I should be worried about, since it only comes up within the IDE?

Chana_R wrote:
Thanks for the reply. I am new to this topic area (though pretty good a programming in general...), so forgive me the query below is offbase.
The applet is unsigned. For what it is worth, the applet code and the database are stored on the same machine. However, I can see where a client running the applet is a remote user and so the system may view this as a different source of code (IP/DNS).User has nothing to do with it.
>
I am currently to the point I can run the applet on my own server's browser, but cannot access the applet via a remote browser. I get an java.lang.NullPointerException
     at JdbcTest.init(JdbcTest.java:40)
     at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
Would this be typical of the problem you describe?
No. You will get an exception for the problem I discussed. The problem you have suggests either something else is wrong or you are eating an exception and then attempting to continue.
And secondly, what is a reasonably safe (and yet free!) method to deal with this? Is there a way to handle through java.policy or should I sign the applet? I've never worked with signed applets...but I can certainly start reading up on the topic...Signing the applet is easier in terms of distribution. Policy change is quicker if you are just messing around or if you have a very limited distribution target.

Similar Messages

  • Form does not appear when run through Form Builder

    Hello,
    We are trying to get a new installation of Form Builder 10g to work. When we try to run the form, the Forms Service browser comes up, but the form does not. We are likely missing a setting in some config file. Can anyone help us?
    Thank you,

    Thanks for your efforts.
    I have searched the forum, but maybe have not hit the correct key words yet. If you can suggest better search parameters than I have used, I will try again.
    The popup blocker settings are the same as on other PCs that work correctly.
    Our tnsnames is also good, as we are connecting through Form Builder.
    I tried researching the error message that was requested, but the error code and message did not match up.
    I would appreciate any other suggestions.

  • Calculated Value in Infopath List Form only appears when editing.

    I have a InfoPath 2010 List Form running against SharePoint 2010 Enterprise. I've created a calculated value that returns data from a secondary list.  The returned value is correct but isn't being displayed in the display form.  It only appears
    when I click Edit.  Help!?!

    Hi dshupe,
    According to your description, my understanding is that you were using a Calculated Value control in InfoPath, and the contorl could not display in the list display form.
    I reproduced this issue, and it seem to be impossible to display the control in display form.
    For implementing your requirement, you can add a textbox control, and set default value using calculated  value(formula) for the textbox control, then set the control read-only. After that, the textbox control can not only work as well as a Calculated
    Value control, but also display in display form.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • "Errors occurred during the extraction" when run RSA3 of EBP datasource 0DO

    "Errors occurred during the extraction" when run RSA3 of EBP datasource 0DOC_NUMBER_ATTR.
    What would be the reason and how to resolve this problem?
    Thanks

    Hi Kevin,
    Generally the installed DS also comes under RSA5 nodes, not only in RSA6.
    Have you activated it earlier before extraction?
    If DS is already active, please try to follow all the steps once more, and check, and let us know if still the same error comes.
    Cheers!!!!!!!!!!!

  • IN I.E. 11 under manage-Addons Adobe reader only appears under Run Without permission not under currently loaded

    IN I.E. 11 under manage-Addons Adobe reader only appears under Run Without permission not under currently loaded
    Is this expected behavior. I have some sites that will not load adobe documents. The site in question is a School District application that we cannot open seating charts.
    This was installed using an MSI. Test sites I go to work fine.

    I believe with further investigation that this is normal and when a PDF document is open it then shows in currently loaded.

  • GUI components only appear when mouse passes over them???

    I have a frame that contains componentes but they only appear when my mouse passes over them or clicks on them. can any one help with this. i do only set vibible after i have added them but the problem seems the same as if i haddent.

    Sorry i couldn't make a SSCCE because it doesnt happen with small programs. my code is pretty long but here it is if any one can help.
       import java.io.*;
       import javax.swing.*;
       import java.awt.*;
       import java.awt.event.*;
       import java.awt.image.*;
       import jmfdemo.*;
       import java.util.*;
        public class LaserControll extends Frame implements ActionListener
          //Setings
          int vk[]=new int[9];
          int samplePlus=100;
          boolean vis=true;
          int rePaint=1000;
          int time=250;
          int numP=5;
            //End of Settings
          private BufferedImage image1;
          private FrameGrabber vision1;
          private int threshold = 200;
          private Color on = Color.white;
          private Color off = Color.black;
          int x,y;
          Rectangle r1,r2,r3,r4,r5,r6,r7,r8,r9;
          boolean found=false;
           public void paint(Graphics g) {
             if (image1 != null)
                g.drawImage(image1, 10, 30, this);
           public void load()
             try{
                File f=new File("Data");
                Scanner sk=new Scanner(f);
                for (int y=0;y<9;y++)
                {sk.nextInt();
                   sk.nextInt();
                   sk.nextInt();               
                   sk.nextInt();
                   vk[y]=sk.nextInt();
                vis=sk.nextBoolean();
                samplePlus=sk.nextInt();
                rePaint=sk.nextInt();
                time=sk.nextInt();
                numP=sk.nextInt();}
                 catch(Exception q)
                {System.out.println(q+"");
                   JOptionPane.showMessageDialog(null,"Error: Data File Cannot be Found","Error",JOptionPane.ERROR_MESSAGE);
                   System.exit(0);
           public void update(Graphics g) {
             paint(g);
           public void getRects()throws IOException
          {File f=new File("Data");
             Scanner sc=new Scanner(f);
             int x,y,w,h;
             x=sc.nextInt();
             y=sc.nextInt();
             w=sc.nextInt();
             h=sc.nextInt();
             sc.nextInt();
             r1=new Rectangle(x,y,w,h);
             x=sc.nextInt();
             y=sc.nextInt();
             w=sc.nextInt();
             h=sc.nextInt();
             sc.nextInt();
             r2=new Rectangle(x,y,w,h);
             x=sc.nextInt();
             y=sc.nextInt();
             w=sc.nextInt();
             h=sc.nextInt();
             sc.nextInt();
             r3=new Rectangle(x,y,w,h);
             x=sc.nextInt();
             y=sc.nextInt();
             w=sc.nextInt();
             h=sc.nextInt();
             sc.nextInt();
             r4=new Rectangle(x,y,w,h);
             x=sc.nextInt();
             y=sc.nextInt();
             w=sc.nextInt();
             h=sc.nextInt();
             sc.nextInt();
             r5=new Rectangle(x,y,w,h);
             x=sc.nextInt();
             y=sc.nextInt();
             w=sc.nextInt();
             h=sc.nextInt();
             sc.nextInt();
             r6=new Rectangle(x,y,w,h);
             x=sc.nextInt();
             y=sc.nextInt();
             w=sc.nextInt();
             h=sc.nextInt();
             sc.nextInt();
             r7=new Rectangle(x,y,w,h);
             x=sc.nextInt();
             y=sc.nextInt();
             w=sc.nextInt();
             h=sc.nextInt();
             sc.nextInt();
             r8=new Rectangle(x,y,w,h);
             x=sc.nextInt();
             y=sc.nextInt();
             w=sc.nextInt();
             h=sc.nextInt();
             sc.nextInt();
             r9=new Rectangle(x,y,w,h);
           public int sample()
          {int sample=image1.getRGB(x/2,y/2);
             int sr,sg,sb;
             Color sc=new Color(sample);
             sr=sc.getRed();
             sb=sc.getBlue();
             sg=sc.getGreen();
             sample=((299 * sr + 587 * sg + 114 * sb) / 1000);
             return sample;
           class WindowListener extends WindowAdapter {
              public void windowClosing(WindowEvent e) {
                System.exit(0);
           public LaserControll()throws Exception {
             Robot r =new Robot();
             load();
             addWindowListener(new WindowListener());
             setTitle("Laser Control");
             try {
                vision1 = new FrameGrabber();
                vision1.start();
                 catch(FrameGrabberException fge) {
                   System.out.println(fge.getMessage());
             image1 = vision1.getBufferedImage();
             setResizable(false);
             Color col = new Color(229,229,229);
             setBackground(col);
             x=image1.getWidth()-1;
             y=image1.getHeight()-1;
             for (int i=0;i<5000;i++)
                image1 = vision1.getBufferedImage();
                repaint();
             int sample=sample();       
             try{
                getRects();}
                 catch(Exception z)
             JButton hide=new JButton("Hide");
             hide.setBounds(35,183,100,20);
             hide.addActionListener(
                    new ActionListener() {
                       public void actionPerformed(ActionEvent e)
                         setAlwaysOnTop(true);
             JButton rc=new JButton("Recalibrate");
             rc.setBounds(35,160,100,20);
             rc.addActionListener(
                    new ActionListener() {
                       public void actionPerformed(ActionEvent e)
                      {int sam=sample();
                         JOptionPane.showMessageDialog(null,"New Threshold set to: "+sam+samplePlus,"Recalibrated",JOptionPane.INFORMATION_MESSAGE);
             JTextField status= new JTextField("");
             status.setBounds(146,184,20,19);
             status.setEditable(false);
             setLayout(null);
             add(status);
             add(hide);
             add(rc);
             setSize(image1.getWidth(this) + 20, image1.getHeight(this) + 95);
             setVisible(vis);     
          repaint();
             while(true) {
                image1 = vision1.getBufferedImage();
                repaint();
                try {
                   Thread.sleep(1);
                    catch(Exception e) {
                      System.out.println("Error");
                for (int i=0;i<x;i=i+numP)
                   for (int j=0;j<y;j=j+numP)
                      int v=image1.getRGB(i,j);
                      Color c =new Color(v);
                      int red=c.getRed();
                      int green=c.getGreen();
                      int blue=c.getBlue();
                      int b=(299 * red + 587 * green + 114 * blue) / 1000;
                      if (b>sample+samplePlus)
                         if (r1.contains(i,j))
                            r.keyPress(vk[0]);
                            r.keyRelease(vk[0]);
                            status.setText("1");
                            found=true;}
                         if (r2.contains(i,j))
                            r.keyPress(vk[1]);
                            r.keyRelease(vk[1]);
                            status.setText("2");
                            found=true;}
                         if (r3.contains(i,j))
                         { r.keyPress(vk[2]);
                            r.keyRelease(vk[2]);
                            status.setText("3");
                            found=true;}
                         if (r4.contains(i,j))
                         { r.keyPress(vk[3]);
                            r.keyRelease(vk[3]);
                            status.setText("4");
                            found=true;}
                         if (r5.contains(i,j))
                         { r.keyPress(vk[4]);
                            r.keyRelease(vk[4]);
                            status.setText("5");
                            found=true;}
                         if (r6.contains(i,j))
                         { r.keyPress(vk[5]);
                            r.keyRelease(vk[5]);
                            status.setText("6");
                            found=true;}
                         if (r7.contains(i,j))
                         { r.keyPress(vk[6]);
                            r.keyRelease(vk[6]);
                            status.setText("7");
                            found=true;}
                         if (r8.contains(i,j))
                         { r.keyPress(vk[7]);
                            r.keyRelease(vk[7]);
                            status.setText("8");
                            found=true;}
                         if (r9.contains(i,j))
                         { r.keyPress(vk[8]);
                            r.keyRelease(vk[8]);
                            status.setText("9");
                            found=true;}
                         if (found==true)
                            try
                               Thread.sleep(time);
                                catch(Exception e)
                                  System.out.println("Error!");
                            sample=sample();
                            for (int z=0;z<rePaint;z++)
                               image1 = vision1.getBufferedImage();
                               repaint();
                            found=false;
               setVisible(vis);
           public void actionPerformed (ActionEvent e)
           public static void main(String[] args)throws Exception {
             LaserControll a=new LaserControll();
       }

  • I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build.  The same call works fine when running on the device

    I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build. The same call works fine when running on the device (iPhone) using debug build. When running with a release build, the result handler is never called (nor is the fault handler called). Viewing the BlazeDS logs in debug mode, the call is received and send back with data. I've narrowed it down to what seems to be a data size issue.
    I have targeted one specific data call that returns in the String value a string length of 44kb, which fails in the release build (result or fault handler never called), but the result handler is called as expected in debug build. When I do not populate the String value (in server side Java code) on the object (just set it empty string), the result handler is then called, and the object is returned (release build).
    The custom object being returned in the call is a very a simple object, with getters/setters for simple types boolean, int, String, and one org.23c.dom.Document type. This same object type is used on other other RemoteObject calls (different data) and works fine (release and debug builds). I originally was returning as a Document, but, just to make sure this wasn't the problem, changed the value to be returned to a String, just to rule out XML/Dom issues in serialization.
    I don't understand 1) why the release build vs. debug build behavior is different for a RemoteObject call, 2) why the calls work in debug build when sending over a somewhat large (but, not unreasonable) amount of data in a String object, but not in release build.
    I have't tried to find out exactly where the failure point in size is, but, not sure that's even relevant, since 44kb isn't an unreasonable size to expect.
    By turning on the Debug mode in BlazeDS, I can see the object and it's attributes being serialized and everything looks good there. The calls are received and processed appropriately in BlazeDS for both debug and release build testing.
    Anyone have an idea on other things to try to debug/resolve this?
    Platform testing is BlazeDS 4, Flashbuilder 4.7, Websphere 8 server, iPhone (iOS 7.1.2). Tried using multiple Flex SDK's 4.12 to the latest 4.13, with no change in behavior.
    Thanks!

    After a week's worth of debugging, I found the issue.
    The Java type returned from the call was defined as ArrayList.  Changing it to List resolved the problem.
    I'm not sure why ArrayList isn't a valid return type, I've been looking at the Adobe docs, and still can't see why this isn't valid.  And, why it works in Debug mode and not in Release build is even stranger.  Maybe someone can shed some light on the logic here to me.

  • How do I delete my old Apple ID that only appears when I try to update my apps...my new I'd works fine with everything else

    How do i delete an delete delete an old Apple ID that only appears when I try to update my apps..a

    All of the purchase you made on the old AppleID are permanently connected to that AppleID. The only way you can get rid of it is to repurchase everything again with the new AppleID.

  • An unknown error has occurred message appears when i try to login to the app store

    an unknown error has occurred message appears when i try to login to the app store

    MacBook Pro (Mid/Late 2007 or newer) is required. You've not indicated which one you have. If yours is one of these, then http://www.apple.com/support/mac/app-store/contact/
    27" i7 iMac (Mid 2011) refurb, OS X Yo (10.10), Mavs, ML & SL, G4 450 MP w/10.5 & 9.2.2

  • Safari status bar disappears.  I have tried clicking on show status bar and it will only appear when I move the cursor to the top of the screen.  I can not minimize the open page only full screen or close the browser.  Any idea how the rectify this

    Safari status bar disappears. I have tried clicking on show status bar, under the View tab and it will only appear when I move the cursor to the top of the screen. I can not minimize the open page, only full screen or close the browser. Any idea how the rectify this issue?

    One enters and exits full-screen with control+command+F keys. This is on the View menu in Safari. Optionally, the green traffic light in your browser title bar, if you roll over it, has the full-screen control it it. While in full-screen mode with Safari, moving your mouse pointer virtually up, and off-screen reveals the Safari title bar again, and you can click the green traffic light to exit full-screen mode.
    You can hide/show the status bar by simply typing command+/. This too, is on the Safari View menu. and in 10.10.1 — it works reliably for me.

  • Search Bar : "Go button only appears when text in the bar"

    With the new update they have made it so that the "Search" button in the "Search bar" only appears when there is text on it.
    While probably a minor (in)convinence for most, it had become a browsing habit for me, to middle mouse click the search in an empty search to take me to "google.com" in a new tab (or whatever search engine was set).
    I would like to know if its possible to tweak something in order to bring back the search button so it stays there.
    I know there is easy workarounds for this (bookmark comes to mind), but having browsed like this for many years I would like to continue doing so if possible.
    Thanks

    Hmm, it takes a little doing, but I think so.
    When the bar is empty, the code that generates the little image of the arrow has a new attribute set, which is hidden="true". There is a corresponding style rule to suppress the arrow when hidden="true". You can use a custom style rule to override the built-in rules, and apply it to the interface using either:
    * Stylish extension ([https://addons.mozilla.org/firefox/addon/stylish/])
    * userChrome.css file ([http://kb.mozillazine.org/userChrome.css])
    This is a rule you could use:
    @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
    searchbar .search-go-button[hidden="true"] {
    display: -moz-box !important;
    I have attached an image of how this looks when you create a new blank rule in Stylish, paste that in, and click the Preview button.

  • SQR variable to repoint where sqrw when running through Proces Scheduler

    I recently zipped a PSHOME and unzipped in a new location. When running SQR the path to pssqr.exe is still the old PSHOME path. Does anyone know where this parameter is being picked up?
    SQR Command = d:\pt8.51\bin\sqr\ORA\binw\sqrw paramters

    When running locally this is defined in the configuration manager.
    When running through the process scheduler, this is de fined in the process scheduler configuration.

  • Getting following error when running eg. Applet + JMS. Why?

              Im trying to run the example Applet provided in the bea documentation in Weblogic
              8.1, but im getting the following error. Can someone shed some light on the matter.
              Thank you all for
              your time
              java.lang.ClassNotFoundException: weblogic.jndi.internal.ServerNamingNode_WLStub
              at sun.applet.AppletClassLoader.findClass(Unknown Source)      
              at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)      
              at java.lang.ClassLoader.loadClass(Unknown Source)      
              at sun.applet.AppletClassLoader.loadClass(Unknown Source)      
              at java.lang.ClassLoader.loadClass(Unknown Source)      
              at java.lang.ClassLoader.loadClassInternal(Unknown Source)      
              at java.lang.Class.forName0(Native Method)      
              at java.lang.Class.forName(Unknown Source)      
              at weblogic.jndi.WLInitialContextFactoryDelegate.newRootNamingNodeStub(WLInitialContextFactoryDelegate.java:476)
              at weblogic.jndi.WLInitialContextFactoryDelegate.newRemoteContext(WLInitialContextFactoryDelegate.java:449)
              at weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialContextFactoryDelegate.java:345)
              at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:308)
              at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:234)
              at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:135)
              at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)      
              at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)      
              at javax.naming.InitialContext.init(Unknown Source)      
              at javax.naming.InitialContext.<init>(Unknown Source)      
              at Applet1.initJMS(Applet1.java:110)      
              at Applet1.init(Applet1.java:40)
              

    This is a known issue and is fixed in SP1. Please contact support for a
              patch.
              Tom Barnes wrote:
              > Not sure. I suggest first posting to the "rmi-iiop" newsgroup
              > if you are using the 8.1 thin-client, as JMS is not involved
              > yet. You can also try the "rmi" and "jndi" newsgroups.
              >
              > Tom, BEA
              >
              > john mattucci wrote:
              >
              >> Im trying to run the example Applet provided in the bea documentation
              >> in Weblogic
              >> 8.1, but im getting the following error. Can someone shed some light
              >> on the matter.
              >> Thank you all for your time
              >>
              >> java.lang.ClassNotFoundException:
              >> weblogic.jndi.internal.ServerNamingNode_WLStub
              >>
              >> at sun.applet.AppletClassLoader.findClass(Unknown Source)
              >> at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
              >> at java.lang.ClassLoader.loadClass(Unknown Source)
              >> at sun.applet.AppletClassLoader.loadClass(Unknown Source)
              >> at java.lang.ClassLoader.loadClass(Unknown Source)
              >> at java.lang.ClassLoader.loadClassInternal(Unknown Source)
              >> at java.lang.Class.forName0(Native Method)
              >> at java.lang.Class.forName(Unknown Source)
              >> at
              >> weblogic.jndi.WLInitialContextFactoryDelegate.newRootNamingNodeStub(WLInitialContextFactoryDelegate.java:476)
              >>
              >>
              >> at
              >> weblogic.jndi.WLInitialContextFactoryDelegate.newRemoteContext(WLInitialContextFactoryDelegate.java:449)
              >>
              >>
              >> at
              >> weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialContextFactoryDelegate.java:345)
              >>
              >>
              >> at
              >> weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:308)
              >>
              >>
              >> at
              >> weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:234)
              >>
              >>
              >> at
              >> weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:135)
              >>
              >>
              >> at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
              >> at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
              >> at javax.naming.InitialContext.init(Unknown Source)
              >> at javax.naming.InitialContext.<init>(Unknown Source)
              >> at Applet1.initJMS(Applet1.java:110)
              >> at Applet1.init(Applet1.java:40)
              >
              >
              Rajesh Mirchandani
              Developer Relations Engineer
              BEA Support
              

  • When using FireFox I run into Microsoft Visual C++ RUNTIME ERROR an closes down firefox when it is opened like maybe 3 minutes. This is anoying, how can this be fixed I have restored my pc several times.

    Is there a solution to fixing the unexpected Microsoft Visual C++ RUNTIME ERROR'S I am getting

    These are Screen Shots of what is happening.

  • ABAP runtime error for 0CRM_OPPT_H and I while running RSA3

    hello Gurus,
         I'm having problems while running RSA3 transaction for these data sources.
    0CRM_OPPT_H
    0CRM_OPPT_I
    0CRM_SALES_ACT_1
    0CRM_SALES_ACT_I.
    I'm getting ABAP runtime error for these.
    This is the error:
    Runtime Error          CALL_FUNCTION_CONFLICT_TAB_TYP
    Exception              CX_SY_DYN_CALL_ILLEGAL_TYPE
    I tried finding OSS notes for these, but I didn’t succeed.
    I activated the data source from RSA5, and then I tried RSA3. That time I got “Errors occurred during extraction”.
    After that I activated delta at BWA5, then I started getting runtime error.
    Even though I activated at BWA5, I am not able to see the data sources at BWA7.
    Am I missing any thing…please guide me through this….
    Thanks
    RKR

    Thanks for your replay... All the DS and related tables are active..
    But wen I tried to re-generate the DS again... this is the warning I'm getting... Any idea why I'm getting this....
    The even-numbered length of the DEC field SAMPLE_QTY_ALLOW can lead to problems
    <b>Message no. R8569</b>
    <b>Diagnosis</b>
    You want to use the field SAMPLE_QTY_ALLOW in the extract structure for DataSource 0CRM_OPPT_I. This field has a field of type 'DEC' (or 'CURR' or 'QUAN') with an even number of characters.
    This can create problems since the length resulting from calculations in ABAP (for example, in extractors or Customer Exits for extraction) is too large to be inserted in the database later (PSA in BW), causing a short dump.
    <b>Procedure</b>
    This warning is only relevant when the maximum length of this field is exceeded during extraction, for example when the field is expanded in the Customer Exit through a calculation.
    More information and a remedy can be found in SAP Note 641744.
    When I search the OSS note, SAP suggesting to apply 883310 note.
    In my company we are using CRM 4.0 servie pak8. SAP suggsting to install service pak 11, but my client is not interested to upgrade to 11 as CRM people are working on service pak 8.
    By any chance we can use specific note which change the ABAP code to solve this problem... Please give me some suggetions...
    Thanks
    RKR

Maybe you are looking for

  • Applescript: If then else (I go crazy)

    Im using a script that will find a file (image) based from its curent path, and the place it into Quark. I got it to place in, but I cant seem to get it to work with an if statement. I'd like to get it to stop or display a dialog box saying it can't

  • A very strange issue with my Ipod Classic

    Hello everyone Well I have a Ipod Classic 160gb all this time I was using it and was so flawlessly, but 4 days ago, suddenly when I connect the Ipod into Itunes and listened some songs for a while, I go to the Ipod in the windows explorer, open it an

  • Can't connect to WPA protected wifi. Prompt says choose a certificate OR enter account name and password? Huh

    I cannot connect to wifi using my MacBook, my phone and Xbox work but there is no prompt for the WPA password and when I go to the diagnostics page it prompts me to choose a certificate or enter an account name and password? What account name are the

  • Lost recent info when restored from backup

    When I connected my phone, it automatically asked me if I wanted to restore from a previous backup. Without thinking, I clicked ok, and lost all my recent info - contacts, TM's, and songs, etc. Is there a way to get it back? I've undone restoring my

  • Problems compressing/Zipping a file

    Hi Guys, I'm having some issues Zipping up a file - I need to upload a file and the maximum capacity for the file to be uploaded is 200mb. Its part of an online course that I'm taking and all project submisions need to be in today - I can't figure ou