Help me ! "can not open local data port"

I have successfully ended the previous transmit,but wen I began a new transmit,it failed. It printed "can't open local data port ",why?
Is it telling that the port is still in use???
And how can I solve this problem?
Anyone help me?
Thanks very much,
yyc

Hi,
this problem occurs when You try to open the same port twice time, You can solve it by opening other port.

Similar Messages

  • Cannot create the RTP Session: Can't open local data port

    Hi,
    I'm trying to connect to two webcams simultaneously in the order:
    MediaLocator inputLocator1 = new MediaLocator("rtp://hostname1:8000/video");
    MediaLocator inputLocator2 = new MediaLocator("rtp://hostname2:8000/video");
    But I get this during the second connection:
    Cannot create the RTP Session: Can't open local data port: 8000
    And I can't see the video from hostname2.
    I did a check via netstat, and it seems that both mycomputer is receiving the video from both hostname1 & hostname2:
    TCP mycomputer:3236 hostname1:8000 ESTABLISHED
    TCP mycomputer:3264 hostname2:8000 ESTABLISHED
    TCP connections to both host were established!! But why can't I see the video of hostname2???? I've thought of 2 possible reasons why I cannot see the video of hostname2:
    1. Is this set of local data port maintained by Java? i.e It's not the same as the TCP port 8000 that I see in mycomputer's netstat. If yes, Java has assigned its local data port 8000 to hostname1, so it fails to reassign that port 8000 to hostname2 while hostname1 is still connected. Any other way to fix this apart from changing the portnumber of hostname2?
    2. It has to do with the custom.jar? I've read in an article somewhere in the forum that the custom.jar has to be customized (using JFMCustomizer) to receive video from two hosts with the same portnumber. Can someone elaborate the necessary boxes to check in the JFMCustomizer?
    Thanks much,
    Rach

    After all this while, I finally figured out the problem. In my code, I use MediaLocator to code the receiver and the transmitter. E.g.:
    MediaLocator inputLocator1 = new MediaLocator("rtp://hostname1:8000/video");
    player1 = Manager.createPlayer(inputLocator1)
    MediaLocator inputLocator2 = new MediaLocator("rtp://hostname2:8000/video");
    player2 = Manager.createPlayer(inputLocator2)
    Manager would complain "Cannot create the RTP Session: Can't open local data port: 8000" because port 8000 is already used up by player1, i.e.:
    mycomputer:8000 maps to hostname1:8000
    mycomputer:8000 cannot re-map to hostname2:8000
    To work around this, I'll need to use SessionAddress. SessionAddress provides the flexibility to do an independent local port mapping, e.g.:
    mycomputer:5000 maps to hostname1:8000
    mycomputer:5002 maps to hostname2:8000
    Rach

  • Error : Can't open local data port

    Hello:
    I�d like present this problem to yours:
    I am executing two files Client/Server into my own PC, using two DOS console different, this one to Client an another to Server.
    I got this error:
    Output of the CLient (DOS Console of the client)
    C:\RUN\EX14>java AVReceive2 1.1.9.147/45300
    - Open RTP session for: addr: 1.1.9.147 port: 45300 ttl: 1
    - Waiting for RTP data to arrive...
    - Waiting for RTP data to arrive...
    - A new participant had just joined: mpalacios@mpv
    - Waiting for RTP data to arrive...
    - Waiting for RTP data to arrive...
    Output of the Server (DOS Console of the Server)
    C:\RUN\EX14>java AVTransmit2 file:/c:/run/format/au/drip.au 1.1.9.147 45300
    Track 0 is set to transmit as:
    ULAW/rtp, 8000.0 Hz, 8-bit, Mono, FrameSize=8 bits
    Error : Can't open local data port: 45300
    Well, 1.1.9.147 is the IP address of my PC.
    So, What�s the problem?
    If you need of the rest of code, please say me.
    Thanks.
    Angel.

    Well, I am agree with you, but I have this code in the Transmit File (Server):
    * Use the RTPManager API to create sessions for each media track of the processor.
    private String createTransmitter() {
         // Cheated. Should have checked the type.
         PushBufferDataSource pbds = (PushBufferDataSource)dataOutput;
         PushBufferStream pbss[] = pbds.getStreams();
         rtpMgrs = new RTPManager[pbss.length];
         SessionAddress localAddr, destAddr;
         InetAddress ipAddr;
         SendStream sendStream;
         int port;
         SourceDescription srcDesList[];
         for (int i = 0; i < pbss.length; i++) {
         try {
              rtpMgrs[i] = RTPManager.newInstance();     
    //The local session address will be created on the
    // same port as the the target port. This is necessary
    // if you use AVTransmit2 in conjunction with JMStudio.
    // JMStudio assumes - in a unicast session - that the
    // transmitter transmits from the same port it is receiving
    // on and sends RTCP Receiver Reports back to this port of
    // the transmitting host.
              port = portBase + 2*i;
              ipAddr = InetAddress.getByName(ipAddress);
              localAddr = new SessionAddress( InetAddress.getLocalHost(),
                                       port);
              destAddr = new SessionAddress( ipAddr,
                                  port);
              rtpMgrs.initialize( localAddr);
              rtpMgrs[i].addTarget( destAddr);
              System.err.println( "Created RTP session: " + ipAddress + " " + port);
              sendStream = rtpMgrs[i].createSendStream(dataOutput, i);          
              sendStream.start();
         } catch (Exception e) {
              return e.getMessage();
         return null;
    When I use this Files (Client/Server), between diffrent PCs into LAN, eg, Client (One PC) and Server (Another PC), but I used:
    This One PC: (IP Address PC = 1.1.9.150)
    C:\run\ex14\java AVTransmit2 file:/c:/run/format/audrip.au 1.1.9.147 45300
    Another PC:(IP Address PC = 1.1.9.147)
    C:\run\ex14\java AVReceive2 1.1.9.147/45300
    That�s work right!
    So, what�s happen?

  • RTP Cannot open local data port

    Hello,
    I'm about to learn JMF. So I tried the example code from the sun JMF documentation(example10-1; code is appended).
    The code compiles without errors but when I run it, I alway get the following error:
    streams is [Lcom.sun.media.multiplexer.RawBufferMux$RawBufferSourceStream;@b9b538 : 1
    sink: setOutputLocator rtp://192.168.0.6:49150/audio/1
    java.io.IOException: Can't open local data port: 4800
            at com.sun.media.datasink.rtp.Handler.open(Handler.java:139)
            at Send.<init>(Send.java:60)
            at Send.main(Send.java:71)
    What does that mean and what causes that kind of exception?
    Thanks in advance.
    MfG
    Michael
    ****Code starts here****
    class Send {
       public Send() {
          AudioFormat format = new AudioFormat(AudioFormat.LINEAR, 8000, 16, 1);
          Vector devices = CaptureDeviceManager.getDeviceList(null);
          System.out.println("DEBUG: CaptureDeviceManager returned "  + devices.size() + " devices");
          CaptureDeviceInfo di = null;
          Processor p = null;
          if(devices.size() > 0)
          di = (CaptureDeviceInfo) devices.elementAt(0);
          else
          System.exit(-1);
          System.out.println("Found: " + di.toString());
          try {
          p = Manager.createProcessor(di.getLocator());
          } catch(Exception e) {
         e.printStackTrace();
         System.exit(-1);
    p.configure();
    TrackControl tracks[] = p.getTrackControls();
    p.setContentDescriptor(new ContentDescriptor(ContentDescriptor.RAW));
    boolean encodingOk=false;
    for(int i=0; i < tracks.length; i++) {
         if(!encodingOk && tracks[i] instanceof FormatControl) {
         if( ( (FormatControl)tracks[i] ).setFormat(new AudioFormat(AudioFormat.GSM_RTP, 8000, 16, 1))==null )
         tracks.setEnabled(false);
         encodingOk = true;
         else
         tracks[i].setEnabled(false);
    } //for
    if(encodingOk) {
         p.realize();
         DataSource source = null;
         try { Thread.sleep(1000); } catch(InterruptedException e){}
         try {
         source = p.getDataOutput();
         } catch(NotRealizedError e) {
         System.out.println("*** ERROR: Cannot realize");
         //System.exit(-1);
         try {
         String url = "rtp://192.168.0.6:49150/audio/1";
         System.out.println(url);
         MediaLocator m = new MediaLocator(url);
         DataSink sink = Manager.createDataSink(source, m);
         sink.open();
         sink.start();
         } catch(Exception e) {
         System.out.println("*** ERROR: ");
         e.printStackTrace();
         System.exit(-1);
    } // if
    public static void main(String[] args) {
    new Send();

    Hello,
    I tried to change the port number to 22222, 66666 and 49150. With the same effekt. I found out that when I run the program for the first time after a reboot I get these errors:
    javax.media.NotConfiguredError: getTrackControls cannot be called before configured
    at com.sun.media.ProcessEngine.getTrackControls(ProcessEngine.java:285)
    at com.sun.media.MediaProcessor.getTrackControls(MediaProcessor.java:107)
    at Send.<init>(Send.java:29)
    at Send.main(Send.java:71)
    Exception in thread "main" javax.media.NotConfiguredError: getTrackControls cannot be called before configured
    at com.sun.media.ProcessEngine.getTrackControls(ProcessEngine.java:285)
    at com.sun.media.MediaProcessor.getTrackControls(MediaProcessor.java:107)
    at Send.<init>(Send.java:29)
    at Send.main(Send.java:71)
    I have to quit the program with Ctrl-c. The next time I run it I get the IOException as described above :( .
    MfG
    Michael

  • Can not open winmail.dat PDF file attachments

    clients send pdf attachments usually electrical drawings for bid and a winmail.dat pdf file shows in attachment. I click on and error message says can not open this type file. I have adobe reader Why?

    If you can't open the attachment, have your client/ customer or whatever fix their defective copy of Outlook and send real mail attachments not TNEF encoded rubbish. They are spewing defective email every time they click send on a mail with an attachment.
    See https://support.mozilla.org/en-US/kb/what-winmaildat-attachment

  • Help,I can not open files

    I have windows 7 and I can not open certain files,I am not very computer literate so please bare with me.
    I recieved a document which is file type DOC FILE (.doc),when I try to open it I get a message saying adobe reader is unable to open as it is not a supported file or is corrupted.
    I can open files if they are pictures sent as an attachment but not Doc format files.
    I tried removing adobe reader and and reinstalling it but no joy.
    any ideas
    Thank you in advance

    I'll guess that you are trying to open your .doc files by double clicking on  their icons, which in this case would indicate a file association  problem. Right click on the icon of one of your documents, select in the Open With box whatever  program you use for text files, and check on Apply to  All. Wording may be sligthly different because i am on a Mac right now  and in any case my OSs are in Spanish.

  • Help! can not open zen x-fi2 user guide

    it seems that microsoft xp sp2 has a security issue that keeps me from opening the user's guide. i have searched the internet but all of the solutions have a method that involves going into the registry and i am not techie enough to trust my self doing that. one suggestion was try saving it to my computer and right clicking the file and click on proprieties and the clicking on the unblock button, of course don't you know that the unblock button was not available either. i have been working on this for several hours on my own and now i give up. would someone please e-mail a copy of the open? zen x-fi2 user guide if this is possible.
    many thanks in advance for your help.
    larry

    You are trying to open the wrong thing. If you want to open the User Guide do not choose the Help file. Just open the User Guide. Was this User Guide a part of when you installed the software.
    If so then you can open it thru by going to Start>All Programs>Creative>X-Fi2>User Guide.

  • Please help, I can not open the word document after I have exported from a PDF

    Please help, I have bought this programme to convert PDF documents to word documents. All I find at the moment is that the document is not being converted and will not open once I have saved. It asks which programme I would like to select to open the saved file, and them does not work.
    Please let me know where I am going wrong?
    Ko

    Good day Ko,
    It sounds like the file extension may have been dropped when you saved the file to your computer.
    Does your converted file have the .docx or .xlsx extension on the end?  If it doesn't, try renaming the file and appending the  file extension.  You should be able to open your saved document in Word or Excel then.
    Kind regards,
    David

  • Help i can not open any pdf's

    How can I make adobe reader 11 work, it will not open and I can't open PDF's?

    If you are in Windows (which we don't know), you can try using Windows Explorer to navigate to C:\Program Files (x86)\Adobe\Reader 11.0\Reader, then double-click on Eula.exe and accept the license agreement

  • Three times I have asked for help, I can not open my attachments. I have tried safe mode, no change. Help!

    I had seen someone else ask a similar question. I tried safe mode, with no luck. I get an attachment with a PDF or PPS or HML. none can be opened. Hit the attachment, says it is scanning, then save to my computer, then no further action. Where does it go, and why can't I open it????

    Not the most tech guy, so I was unable to open windows in safe mode. Tried safe mode with Firefox. I can not see anywhere where the anti virus software, is blocking. I was able to get on Internet Explorer. and when I hit the attachment, it said the same thing: scanning document, but I then got a pop up...would you like to open, answer yes. It did open that way. Why not the same thing on Firefox.

  • HELP, I can not open App World.

    Hello. 
    I get my BlackBerry recently (BlackBerry Curve 9360), and since I turned on it, I couln't and can't open the App World. When I click to open it, it says "You haven't got sufficient wireless coverage or your wireless network connection is disabled." Why? I use my BB with Wi-Fi.Is this the problem?  How can I solve the problem? Please, help me.

    Try this:
    1. Close all apps in the Task Bar. Double-click the Home button and hold apps down for a second or two. Tap the minus sign to close app.
    2. Hold the Sleep/Wake and Home button down until you see the Apple Logo.

  • Can not open database - data file missing

    I connected to the database as sysdba and issued STARTUP OPEN command.
    How can I restore the datafile?
    ORA-01157: cannot identify/lock data file 32 - see DBWR trace file
    ORA-01110: data file 32: 'F:\ORACLE\DATABASE\M23.DAT'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.

    Thank you for your advice.
    To Issue ALTER TABLESPACE M23 OFFLINE IMMEDIATE, the database should be in OPEN mode.
    I couldn't open the database.
    What shall I do put it in OPEN MODE?
    Thank you in advance.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Randall Roberts ([email protected]):
    You have to STARTUP MOUNT and take the tablespace that M23.DAT belongs to offline... probably OFFLINE IMMEDIATE.
    Once you do that you may ALTER DATABASE OPEN. Then you can replace your data file with a backup and use the recover command to recover the tablespace IF you are in archive log mode. If you are not in archive log mode, you'll have to drop the tablespace, recreate it and hopefully you have an export file of its contents you can import.
    Best!
    Randall<HR></BLOCKQUOTE>
    null

  • I download the lightroom cc and it give me indication up to date but i can not open it . i dont know why , help please

    i download the lightroom cc and it give me indication up to date but i can not open it . i dont know why , help please

    Hi Wael,
    You can follow the article: Sign in, Sign out | Creative Cloud desktop app to sign out and sign in back again to Creative Cloud and try to launch your Lightroom 2015 application.
    Let us know if it works or not.
    Thanks,
    Ratandeep Arora

  • My ipod dose not open when I connect it to my laptop so I can not transfer any data to my laptop the ipod comes on with itunes so I can transfer data to the ipod can anyone help, I have re installed itunes

    my ipod dose not open when I connect it to my laptop so I can not transfer any data to my laptop the ipod dose come on with itunes so I can transfer data to my ipod I have re installed itunes can any one help please, when I first got the ipod it did work ok

    Try:
    iOS: Device not recognized in iTunes for Windows
    or
    iPhone, iPad, iPod touch: Device not recognized in iTunes for Mac OS X

  • !!Urgent Help!! I can NOT open my safari, widgets and lots of application!!

    Dear All,
    I need a urgent help for my old mac.
    I can NOT open my safari and lots of application in my Mac. I use firefox to instead of right now.
    The safari usually come out with crash message "The application safari quit unexpectedly" with the report as follow.
    Who can help me to solve this problem. Thanks very much.
    Date/Time: 2011-04-04 23:49:17.401 +0800
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [240]
    Version: 4.1.3 (4533.19.4)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 75331904
    PID: 484
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x458a3ef0
    Thread 0 Crashed:
    0 ...ple.CoreServices.CarbonCore 0x90b9e138 CSStoreGetUnit + 56
    1 com.apple.LaunchServices 0x9193ed4c _CSStringStoreUnitMatchesString + 36
    2 com.apple.LaunchServices 0x9193eb3c _CSMapFindBucketForKeyData + 160
    3 com.apple.LaunchServices 0x9193ea48 CSMapGetKeyAndValueForKeyData + 88
    4 com.apple.LaunchServices 0x9193e930 CSGetStringForCharacters + 252
    5 com.apple.LaunchServices 0x919497c8 _UTGetStringForCFString + 136
    6 com.apple.LaunchServices 0x91949700 _UTGetBindableArrayForTag + 104
    7 com.apple.LaunchServices 0x91949560 UTTypeCreatePreferredIdentifierForTag + 116
    8 com.apple.LaunchServices 0x9196f3c4 CreateCorrectedMIMEType + 564
    9 com.apple.LaunchServices 0x9197002c _LSCopyDownloadAssessmentDictionary + 2076
    10 com.apple.Foundation 0x92d1e028 -[NSURLResponse(NSURLResponsePrivate) _downloadAssessmentWithInitialData:] + 52
    11 com.apple.Safari 0x001367f8 0x1000 + 1267704
    12 com.apple.WebCore 0x014fa1b0 WebCore::ResourceResponse::platformLazyInit() + 736
    13 com.apple.WebCore 0x014fa698 WebCore::ResourceResponseBase::url() const + 24
    14 com.apple.WebCore 0x01bb77b4 WebCore::ApplicationCacheHost::maybeLoadFallbackForRedirect(WebCore::ResourceLo ader*, WebCore::ResourceRequest&, WebCore::ResourceResponse const&) + 68
    15 com.apple.WebCore 0x016c7f34 WebCore::ResourceLoader::willSendRequest(WebCore::ResourceHandle*, WebCore::ResourceRequest&, WebCore::ResourceResponse const&) + 52
    16 com.apple.WebCore 0x016c7ee0 WebCore::ResourceHandle::willSendRequest(WebCore::ResourceRequest&, WebCore::ResourceResponse const&) + 528
    17 com.apple.WebCore 0x015f6684 -[WebCoreResourceHandleAsDelegate connection:willSendRequest:redirectResponse:] + 996
    18 ...ktop.SafariSearchResultsMod 0x0306dc90 GMLogImplementation + 4840
    19 com.apple.Foundation 0x92c26fa8 -[NSURLConnection(NSURLConnectionInternal) _sendWillSendRequestCallback] + 76
    20 com.apple.Foundation 0x92c26dc8 -[NSURLConnection(NSURLConnectionInternal) _sendCallbacks] + 344
    21 com.apple.Foundation 0x92c26bf4 _sendCallbacks + 156
    22 com.apple.CoreFoundation 0x907df300 __CFRunLoopDoSources0 + 384
    23 com.apple.CoreFoundation 0x907de830 __CFRunLoopRun + 452
    24 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    25 com.apple.HIToolbox 0x932bcb20 RunCurrentEventLoopInMode + 264
    26 com.apple.HIToolbox 0x932bc1b4 ReceiveNextEventCommon + 380
    27 com.apple.HIToolbox 0x932bc020 BlockUntilNextEventMatchingListInMode + 96
    28 com.apple.AppKit 0x937a1734 _DPSNextEvent + 384
    29 com.apple.AppKit 0x937a13f8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    30 com.apple.Safari 0x00011638 0x1000 + 67128
    31 com.apple.AppKit 0x9379d93c -[NSApplication run] + 472
    32 com.apple.AppKit 0x9388e458 NSApplicationMain + 452
    33 com.apple.Safari 0x00118adc 0x1000 + 1145564
    34 com.apple.Safari 0x00007ea0 0x1000 + 28320
    Thread 1:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030aac pthreadcondwait + 480
    2 com.apple.WebCore 0x014e98d0 WebCore::IconDatabase::syncThreadMainLoop() + 320
    3 com.apple.WebCore 0x014e73b8 WebCore::IconDatabase::iconDatabaseSyncThread() + 440
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de9ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c1eb7c +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92bf64d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de9ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    4 com.apple.Safari 0x000298e0 0x1000 + 166112
    5 com.apple.Safari 0x00029864 0x1000 + 165988
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de9ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c054a4 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c053dc -[NSRunLoop run] + 76
    6 com.apple.Safari 0x0007e958 0x1000 + 514392
    7 com.apple.Foundation 0x92bf64d8 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de9ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c1da3c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92bf64d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9001f48c select + 12
    1 com.apple.CoreFoundation 0x907f1240 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030aac pthreadcondwait + 480
    2 com.apple.Foundation 0x92bfd644 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9a3c926c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x92bf64d8 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000090b9e138 srr1: 0x100000000000d030 vrsave: 0x0000000000000000
    cr: 0x24422202 xer: 0x0000000000000000 lr: 0x0000000090b9e110 ctr: 0x0000000090b9e100
    r0: 0x0000000000000000 r1: 0x00000000bfffd470 r2: 0x00000000048a2000 r3: 0x0000000003149200
    r4: 0x00000000000001c0 r5: 0x0000000041001ef4 r6: 0x00000000bfffd500 r7: 0x0000000000000009
    r8: 0x00000000bfffd5d0 r9: 0x0000000000000000 r10: 0x00000000907be914 r11: 0x00000000a193c5f0
    r12: 0x0000000090b9e100 r13: 0x00000000a193f818 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000003113fe0 r17: 0x0000000024028212 r18: 0x00000000089114b0 r19: 0x0000000000000000
    r20: 0x0000000003149200 r21: 0x00000000bfffd6c0 r22: 0x0000000000000009 r23: 0x00000000ddddddd2
    r24: 0x00000000eeeeeee1 r25: 0x00000000bfffd5d0 r26: 0x0000000002819a18 r27: 0x0000000000003ff7
    r28: 0x00000000bfffd6c0 r29: 0x0000000000000009 r30: 0x00000000458a3ef4 r31: 0x0000000090b9e110
    Binary Images Description:
    0x1000 - 0x355fff com.apple.Safari 4.1.3 (4533.19.4) /Applications/Safari.app/Contents/MacOS/Safari
    0x3b6000 - 0x3b6fff libgild.dylib /Library/Google/Frameworks/Gild.framework/Resources/libgild.dylib
    0x3ba000 - 0x3befff com.google.Gild Framework 1.0.0 (1.0.0.249) /Library/Google/Frameworks/Gild.framework/Versions/A/Gild
    0x505000 - 0x681fff com.apple.JavaScriptCore 4533.19 (4533.19.1) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x6d9000 - 0x7c7fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x1008000 - 0x1109fff com.apple.WebKit 4533.19 (4533.19.4) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x11b0000 - 0x1452fff com.apple.QuartzCore 1.4.13 /System/Library/PrivateFrameworks/Safari.framework/Frameworks/QuartzCore.framew ork/Versions/A/QuartzCore
    0x14e5000 - 0x218afff com.apple.WebCore 4533.19 (4533.19.4) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x27eb000 - 0x27edfff libgoogleml.dylib /Library/Google/GoogleML/GoogleML.bundle/Contents/Resources/libgoogleml.dylib
    0x3069000 - 0x3072fff com.google.Desktop.SafariSearchResultsMod 1.7.0 (1.7.0.1877) /Library/Google/GoogleML/Modules/SafariSearchResults.googleml/Contents/MacOS/Sa fariSearchResults
    0x307a000 - 0x3086fff com.google.Desktop.SafariWebHistoryMod 1.7.0 (1.7.0.1877) /Library/Google/GoogleML/Modules/SafariWebHistory.googleml/Contents/MacOS/Safar iWebHistory
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.85 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11 (368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5cfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.19 (681.21) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f92000 - 0x90fd4fff com.apple.CFNetwork 4.0 (129.24) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91011000 - 0x91092fff com.apple.SearchKit 1.0.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d8000 - 0x91101fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91112000 - 0x91120fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91123000 - 0x912defff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ed000 - 0x913f5fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91434000 - 0x9143ffff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91444000 - 0x914bffff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fe000 - 0x91536fff com.apple.AE 312.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91551000 - 0x91623fff com.apple.ColorSync 4.4.13 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91676000 - 0x91707fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174e000 - 0x91805fff com.apple.QD 3.10.28 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91904000 - 0x91929fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193c000 - 0x9197efff com.apple.LaunchServices 183.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bc000 - 0x91a02fff com.apple.ImageIO.framework 1.5.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a19000 - 0x91ae0fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2e000 - 0x91b43fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b48000 - 0x91b66fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6c000 - 0x91c23fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c72000 - 0x91c76fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c78000 - 0x91ce2fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce7000 - 0x91d02fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d07000 - 0x91d0afff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91e19000 - 0x91e57fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91e5e000 - 0x91e5efff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e60000 - 0x91f45fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4d000 - 0x91f6cfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd8000 - 0x92046fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92051000 - 0x920e6fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92100000 - 0x92688fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926bb000 - 0x929e6fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a16000 - 0x92b04fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b07000 - 0x92b8ffff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bd0000 - 0x92e03fff com.apple.Foundation 6.4.12 (567.42) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f36000 - 0x92f54fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f5f000 - 0x92fb9fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fd7000 - 0x92fd7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fd9000 - 0x92fedfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93005000 - 0x93015fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93021000 - 0x93036fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93048000 - 0x930cffff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930e3000 - 0x930eefff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930f8000 - 0x93126fff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93140000 - 0x9314ffff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9315b000 - 0x931c1fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931f2000 - 0x93241fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9326f000 - 0x9328cfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9329e000 - 0x932abfff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932b4000 - 0x935c2fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93712000 - 0x9371efff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93723000 - 0x93743fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93797000 - 0x93797fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93799000 - 0x93dccfff com.apple.AppKit 6.4.10 (824.48) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94159000 - 0x941cbfff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94204000 - 0x942c9fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9431c000 - 0x9431cfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94528000 - 0x94565fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9456d000 - 0x945bdfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945c6000 - 0x945dffff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94678000 - 0x946b0fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946f5000 - 0x94711fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94725000 - 0x94769fff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9478d000 - 0x9479cfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947a4000 - 0x947b1fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947f7000 - 0x94810fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94c32000 - 0x94ca3fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94d41000 - 0x94d4dfff com.apple.framework.Apple80211 4.2.9 (429.6) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x94e19000 - 0x94f49fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fdc000 - 0x94febfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94ff3000 - 0x95020fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95027000 - 0x95037fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x9503b000 - 0x9506afff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9507a000 - 0x95097fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95b4d000 - 0x95b7ffff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97ce5000 - 0x97db6fff com.apple.QuartzComposer 1.2.6 (32.25) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x97e33000 - 0x97e33fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9a3c6000 - 0x9a3fcfff com.apple.Syndication 1.0.8 (56.1) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9ffe4000 - 0x9fff6fff com.apple.SyndicationUI 1.0.8 (56.1) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Model: PowerMac8,2, BootROM 5.2.5f1, 1 processors, PowerPC G5 (3.1), 2 GHz, 1.5 GB
    Graphics: ATI Radeon 9600, ATY,RV351, AGP, 128 MB
    Memory Module: DIMM0/J4000, 1 GB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM1/J4001, 512 MB, DDR SDRAM, PC3200U-30330
    AirPort: AirPort Extreme, 405.1 (3.90.34.0.p18)
    Modem: Jump, V.92, Version 1.0
    Bluetooth: Version 1.9.5f4, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD2500JD-40HBC0, 232.89 GB
    Parallel ATA Device: MATSHITADVD-R UJ-845
    USB Device: Keyboard Hub, Apple, Inc., Up to 480 Mb/sec, 500 mA
    USB Device: Apple Keyboard, Apple, Inc, Up to 1.5 Mb/sec, 100 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Mitsumi Electric, Up to 1.5 Mb/sec, 500 mA
    FireWire Device: iSight, Apple Computer, Inc., Up to 400 Mb/sec

    Hi,
    I can NOT open my safari and lots of application in my Mac.
    The startup disk may need repairing. Launch the Disk Utility app (Applications/Utilities) Select MacintoshHD in the panel on the left. Then select the FirstAid tab.
    Click: Verify Disk (not Verify Disk Permissions). If the disk needs repairing, follow these instructions. You will need your install disc.
    Insert your install disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu and launch Disk Utility.
    (In Mac OS X 10.4 or later, you must select your language first from the installer menu)
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.T Status of HDD at the bottom of right panel. It should say: Verified)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    When you are finished with DU, from the Menu Bar, select Utilities/Startup Manager.
    Select your startup disk and click Restart
    While you have the Disk Utility window open, look at the bottom of the window. Where you see Capacity and Available. Make sure there is always 15% free space.
    Until you verify and repair the startup disk if necessary, it won't do much good to troubleshoot the Safari crash report.
    Carolyn

Maybe you are looking for

  • Error in generating reference number of process

    Hi All Masters, I'm new in HCM P&F. Currently I have a problem. I was running a sample process or copied process from the sample. Clicking 'check and send'. Still OK. But when I clicked 'Send' button, I got an error message displayed 'Error in genera

  • Fusion drive DIY not using SSD

    Hello community, Recently I have bought a SSD drive for my Mac Mini 2012, in order to make a dual hard drive installation ready to build a DIY Fusion Drive with Disk Utility. Apparently it works well, I have installed Yosemite without any problems an

  • Service tax issue

    Hi, My client is posting some vendor invoices through FB60. When they are posting in FB60, TDS is getting calculated automatically for that particular vendor. Entry is showing like this Itm PK Account Account short text Assignment Tx Amount 1 31 2010

  • Sap On Oracle

    Hi, Does any of the below mentioned Oracle Release support ECC 6.0. Oracle9i Release 2 (9.2.0.1)  Oracle9i Release 2 (9.2.0.2) Oracle9i Release 2 (9.2.0.2) Oracle9i Release 2 (9.2.0.4) Thanks & Regards AKumar

  • How to Debugg the Cmod code in R3

    Hi All, I have written a code in CMOD to populate new fields for 2LIS_11_VASCL. How do I debugg the code it in R3? When I run the check for datasource in RSA3, it is not returning any records? Simmi