Issues compiling network libs on install

Greetings:
     I am having issues compiling ntcontab.o upon install of 9i
on a sun box. I'm running 2.8 and have gcc3.2 on the box.
     Upon manually making the same file, the following output exists.
Please advise!
bash-2.05$ make -f ins_net_client.mk ntcontab.o
(if [ "assemble" = "compile" ] ; then \
/usr/local/oracle/bin/gennttab > ntcontab.c ;\
cc -c ntcontab.c ;\
rm -f /usr/local/oracle/lib/ntcontab.o ;\
mv ntcontab.o /usr/local/oracle/lib ;\
/usr/ccs/bin/ar rv /usr/local/oracle/lib/libn9.a /usr/local/oracle/lib/ntcontab.o ; fi)
(if [ "assemble" = "assemble" ] ; then \
/usr/local/oracle/bin/gennttab > ntcontab.s ;\
/usr/ccs/bin/as -xarch=v9 -P -o ntcontab.o ntcontab.s ;\
rm -f /usr/local/oracle/lib/ntcontab.o ;\
mv ntcontab.o /usr/local/oracle/lib ;\
/usr/ccs/bin/ar rv /usr/local/oracle/lib/libn9.a /usr/local/oracle/lib/ntcontab.o ; fi)
ntcontab.s: Assembler messages:
ntcontab.s:23: Error: Unknown opcode: `alword'
ntcontab.s:23: Error: Rest of line ignored. First ignored character is `\'.
ntcontab.s:24: Error: Unknown opcode: `alword'
ntcontab.s:24: Error: Rest of line ignored. First ignored character is `\'.
ntcontab.s:25: Error: Unknown opcode: `alword'
ntcontab.s:25: Error: Rest of line ignored. First ignored character is `\'.
ntcontab.s:26: Error: Unknown opcode: `alword'
ntcontab.s:31: Error: Unknown opcode: `string'
ntcontab.s:33: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:35: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:37: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:39: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:41: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:43: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:45: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:47: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:49: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:51: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:53: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:55: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:57: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:59: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:61: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:63: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:65: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:67: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:69: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:71: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:73: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:75: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:77: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:79: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:81: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:83: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:85: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:87: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:89: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:91: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:93: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:95: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:97: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:99: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:101: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:103: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:105: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:107: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:109: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:111: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:113: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:115: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:117: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:119: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:121: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:123: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:125: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:127: Erntcontab.s:131: Error: bad or irreducible absolute expression; zero assumed
ntcontab.s:135: Error: Unknown opcode: `data'
ntcontab.s:140: Fatal error: Unknown opcode: `ntcon_record(.RINI, ntrini,.RINI2,.RINI3)'
mv: cannot access ntcontab.o
ar: cannot open /usr/local/oracle/lib/ntcontab.o
No such file or directory
(if [ "assemble" = "oratmp" ] ; then \
/usr/local/oracle/bin/gennttab > ntcontab.c ;\
/lib/idcpp ntcontab.c oratmp.c ;\
-i oratmp.c -o oratmp.s -f ntcontab.c ;\
/usr/ccs/bin/as -o ntcontab.o oratmp.s ;\
rm -f oratmp.c oratmp.s ;\
rm -f /usr/local/oracle/lib/ntcontab.o ;\
mv ntcontab.o /usr/local/oracle/lib ;\
/usr/ccs/bin/ar rv /usr/local/oracle/lib/libn9.a /usr/local/oracle/lib/ntcontab.o ; fi)
(if [ "assemble" = "binary" ] ; then \
/usr/local/oracle/bin/gennttab > ntcontab.c ;\
TARGET_BINARY_INTERFACE= ;\
export TARGET_BINARY_INTERFACE ;\
cc -c ntcontab.c ;\
-rm -f /usr/local/oracle/lib/ntcontab.o ;\
-mv ntcontab.o /usr/local/oracle/lib ;\
/usr/ccs/bin/ar rv /usr/local/oracle/lib/libn9.a /usr/local/oracle/lib/ntcontab.o ; fi)
bash-2.05$

I think I know what the problem is ...
So you have Mac OS 10.5.1 ... that's Darwin 9.
But your dev tools came with Darwin 8 ... 10.4. I mean, what's going on is that the linker is trying to link the System.dylib to your code using the Darwin 8 System.dylib. It opens the dylib, but hates what it finds in the Mach-O _TEXT_ section.
So, I bet you had a 10.4 machine, installed the 10.4 dev tools at some point, upgraded the machine to 10.5, but you haven't yet installed the 10.5 dev tools.
My bet is that if you install the 10.5 dev tools, you should be okay. Woolamaloo uses the same C code ... and it does compile in 10.5 using the 10.5 dev tools. Honest.

Similar Messages

  • HP Officejet Pro 8620 (Wireless Network) will not install on Win8. 1

    Today I received my new HP Officejet 8620 PRO printer. I have setup Wireless Network access, and installed the Driver successfully on my Windows 7 Ultimate 64 Bit PC, and tried to do the same on my Acer Win8.1 Laptop. During the installation, it finds the Printer on the network at the correct IP Address (192.168.178.48) and goes as far as a dialog showing "Network Printer Installation" with a Green progress bar cycling but never progressing ... I have left it be for over 45 minutes, and have tried to cancel the installation, with the same problem. Now the setup is jammed, and cannot progress. Suggestions please!!! Not sure what more relevant information is required ... so I'm open to questions ... which I'll try and answer ... or (preferably) suggestions on how to fix this. Many Thanks for your anticipated support.  p.s. HP ... I find it ridiculous that I can buy a brand new printer and yet have to revert to Public Forums to beg help! (or pay an exhorbent extra fee to get telephone support)

    I would suggest cancelling the installation and then download the diagnostics at http://www.hp.com/go/tools.  The tools there may help diagnose system issues, if nothing is found I would suggest running the driver wizard. Depending on your country the warranty would typically be one year from date of purchase.  Likely if you were charged (or an attempt made to charge you) for support on a new printer you were not contacting HP.  Unfortunately an internet search for "HP Support" will turn up a number of locations that may pretend to be HP but are not.  The diagnosis there is typically "you have malware or a virus, we can fix that but it will cost $149" (or perhaps $349 for a lifetime).  I once gave one of these folks access to a dummy test machine, after an hour accessing my system and suggesting various fixes I made it clear that I would not be buying anything from them.  At this point they attempted to encrypt my system drive (after warning me that if I did not buy their product my system would likely be unusable).  Fortunately the system was set up to require an admin password to install programs or do "bad" things.... If you need to contact HP start at the link here: http://www.hp.com/contacthp/  

  • Bootcamp issue with network connexion

    Hi,
    I just install windows seven on macbook pro. Windows works fine but i have a network connexion issue. Network card (wifi and ethernet) doesn't work. When I instelled windows, bootcamp download drivers for windows 64bits.
    My questions :
    - How can fix this network connexion ?
    - Where can i download broadcomNetworkAdapter32.exe ? (for connect to internet and install correctly all driver)
    Thanks

    Did you download and then install the Windows support software according to the Boot Camp instructions? You install the Windows support software from within Windows after you install Windows.

  • Compiling gnome-libs for gnucash

    I'm trying to install gnucash. The dependencies include gnome-libs 1.4 . I'm compiling gnome-libs but I get an error:
    #define art_alloc
    #define art_free
    #define art_realloc
    #define art_new (type, n)
    #define art_renew (p, type, n)
    Description
    These API functions are a set of wrapper functions around the OS-specific
    memory management functions: they are used to keep the user-level code portable.
    Their definitions are straighforward so we will not get into any details.
    XXX: check for g_new behaviour when memory allocation problem.
    Details
    art_alloc
    art_alloc#define art_alloc malloc
    Same semantics as those of the standard C malloc function.
    art_free
    art_free#define art_free free
    Same semantics as those of the standard C free function.
    art_realloc
    art_realloc#define art_realloc realloc
    Same semantics as those of the standard C realloc function.
    art_new()
    art_new#define art_new(type, n) ((type *)art_alloc ((n) * sizeof(type)))
    This macro is not equivalent to the glib g_new function. As
    g_new, it takes two parameters: the type of the object to
    instantiate as first parameter and the number of such objects to instantiate as
    second parameter. It will return a dynamically allocated array of memory you can
    use to store objects in. In case of failure of the memory allocation, it will
    return NULL (this is very diffrent from g_new which does not
    return in case of failure. g_new allways suceeds).typemake[4]: *** [html-build.stamp] Error 1
    make[4]: Leaving directory `/home/ovihc/sources/gnome-libs-1.4.2/libart_lgpl/doc'
    make[3]: *** [all-recursive] Error 1
    make[3]: Leaving directory `/home/ovihc/sources/gnome-libs-1.4.2/libart_lgpl'
    make[2]: *** [all-recursive-am] Error 2
    make[2]: Leaving directory `/home/ovihc/sources/gnome-libs-1.4.2/libart_lgpl'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/home/ovihc/sources/gnome-libs-1.4.2'
    make: *** [all-recursive-am] Error 2
    I already installed g-wrap & ORbit & slib . when i type "./configure" it exits very well without any errors. What dependency do I need or what is the problem? My archlinux is already upgraded. This error is when I type "make".
    Thanks.

    AFAIK the gtk2 port of gnucash has a long way to go before it is usable, hence the lack of attention given to it on the website.
    But it is possible to run gnucash on archlinux - I've been doing this for a couple of months.
    If you want to have a play with the pkgbuilds I used for this, grab http://www.burnett-hall.co.uk/~ojbh/arc … 722.tar.gz.  There isn't anything too surprising in there; a few fixes for stuff like gcc-3.4, freetype2, etc. 
    Note that this includes a package I've called gdk-pixbuf-gnome-canvas.  gdk-pixbuf is part of current, but does not include gnome1 support.  You'll need to use --force or something to get pacman to install it.
    gnome-libs build fine for me; I'm not sure what's causing the errors you got - they look very strange.  Were you doing a parallel make or using some silly gcc optimisations?
    - olly

  • My itunes account shuts down for no reason.  It wont recognize my iphone and there is an issue with network connectivity and itunes.  I have already  reinstalled itunes and did a syste restore on my computer, firewall checked and virus scan done.  Ideas??

    My itunes account on windows xp shuts down for no reason.  If even try to delete something from my library it shuts down.   It wont recognize my iphone and there is an issue with network connectivity and I can't connect to the store.  I have already  reinstalled itunes and did a system restore on my computer, firewall has been checked, itunes is ok on firewall and virus scan done.  Ideas??

    Same problem. I can see the itunes store so not a problem with windows firewall. The account is active on my iphone so i know i am not locked out. I can connect the PC to my iphone so i know itunes is working ok. It is just logging into itunes on this pc which doesn't work. Only thing I can think of is that the email address I use for my apple id has been offline for a while and is working again now, I'm wondering whether this has been the case for others who are having this issue?

  • I am having sporadic issues after new hard drive install and recovery using Time Machine. The same sluggish response, start up screen pixelating...If I reinstall Lion will it wipe out other applications? My HD was formatted and partitioned correctly, I ha

    I am having sporadic issues after new hard drive install and recovery using Time Machine. The same sluggish response, start up screen pixelating...If I reinstall Lion will it wipe out other applications? My HD was formatted and partitioned correctly, I have a late 2009 iMac.

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • Is there any method to use network printer without installing driver?

    We have some embeded win7 devices which we cannot install drivers to.
    Is there any method to use network printer without installing driver?

    Hi,
    Please read the following article:
       http://en.wikipedia.org/wiki/Device_driver
    You definitely need this middle man.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Is there any methods to use network printer without installing driver?

    We have some embeded win7 devices which we cannot install drivers to.
    Is there any methods to use network printer without installing driver?

    Hi,
    Please refer to your other post:
      http://h30434.www3.hp.com/t5/forums/replypage/board-id/Printing/message-id/77319
    Thanks.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Remote Access Management Console - configuration issue with Network Location Server

    2012 Std R2
    The remote Access management console operation status shows  all green except for network location server .
    Error: There is no response from the network location server URL. DirectAccess connectivity might not work as expected, and DirectAccess clients located inside the corporate network might not be able to reach internal resources.
    Resolution listed as:
    1. Configure the network location server on a server that is highly available to clients on the internal network.
    2. If the network location server is running on the Remote Access server, ensure that IIS is running, and that the URL is available.
    The remote access server is located on this server. IIS is running. What URL: show I be looking at?
    Any other thoughts so I can get remote access working.
    l also am getting a remote access error for IPV6, could this be a cause:
    RoutingDomainID- {00000000-0000-0000-0000-000000000000}: Unable to add the interface {D37062B2-A3E0-4496-A459-9E0BBCE5423C} with the Router Manager for the IPV6 protocol. The following error occurred: Cannot complete this function.
    John Lenz

    Hi John,
    please follow the steps to reinstall TCP/IP stack.
    1.Restart your PC into Safe Mode with Networking.
    2.
    Edit your registry. Delete the following keys:
    HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/Winsock
    HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/Winsock2
    3.
    Open the nettcpip.inf file in your %winroot%/inf folder
    (%winroot% is usually c:/windows).
    Find the [MS_TCPIP.PrimaryInstall] section. Change the Characteristics value from 0xA0 to 0x80.
    Open the properties of the network connection you want to fix. In the General tab, click on the Install button. Click on the Have Disk button, and point the location to %winroot%/inf. After that select TCP/IP (not version 6).
    4.
    Now you would notice that you can uninstall TCP/IP!
    Do that, then restart the PC.
    Go back to your network connection, and install TCP/IP again as per the above. After another reboot, you should be up and running.
    I also noted that the XP network repair tool may yank out the ISA 2004 firewall client stuff. Just run the firewall clinet repair or install it again to fix that problem after you did your reboot. Before you do this kind of crazy stuff.
    5.
    This along with a TCP/IP reset using the netsh command:
    netsh int ip reset resetlog.txt
    wish you have a nice thanksgiving too
    Regards,
    Mike
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Can't compile gnome-libs

    Yes... I know gtk1 and gnome-libs are horribly outdated but until there is a terminal that has *all* the features of multi-gnome-terminal I'm dependent on it
    So... I'm trying to compile gnome-libs 1.4.1.2 and ./configure breaks at the following point
    checking for dbopen... no
    checking for dbopen in -ldb... no
    checking for dbopen in -ldb1... no
    checking for __db185_open in -ldb-3... no
    configure: error: Your db library is missing db 1.85 compatibility mode
    I tried ABS to add the compilation flag, but it already seems to be there:
    build() {
    cd $startdir/src/$pkgname-$pkgver/build_unix
    ../dist/configure --prefix=/usr --enable-compat185 \
    --enable-shared --enable-static --enable-cxx
    I rebuilt it anyway but to no avail.
    Anyone know why ./configure doesn't think db has 1.85 compatibility and how to rectify?

    i'm afraid not... It does create a new set of lib files (libdb3 opposed to libdb4) and I even removed the libdb4 files to incase somehow it was still finding those but I can't get over that error.
    I'm trying a different route now though - I used pkgextract to extract a gnome-libs RPM and I'll just plop those in place.  I tried that for all of multi-gnome-terminals dependencies but it croaked upon started so I'll try with just gnome-libs and compiling the rest.

  • I'm experiencing the same issue on my Mac since installing ML this morning. However, I am able to sign into iCloud via my iPhone and iPad without issue. This only occurs when I attempt to go into iCloud setting in system pref's... I have attempted to chan

    I'm experiencing a log in issue on my MBA since installing ML this morning. However, I am able to sign into iCloud via my iPhone, iPad and on the web without issue. This only occurs when I attempt to go into iCloud setting in system pref's... I have attempted to change my password and also reloaded iCloud. Neither of these actions resolved the issue. When I open iCloud preferences in system preferences on my Mac, it prompts me to enter my appleID and password. Once entered, it just hangs...
    What exactly did you do (verified your apple ID/iCloud but in a very difficult way)?
    Thanks!

    Hi,
    In the Finder use the Go Menu whilst holding down the ALT key.
    Select the Library that appears when you do this.
    Navigate to Containers/com.apple.soagent/Data/Library/Preferences
    You will notice that many of the items are Aliases (to the Originals in ~/Library/Preferences).
    But there are exceptions.
    Delete (Drag to Trash)  the com.apple.soagent.plist and com.apple.messageshelper.AccountInfoController.plist
    Restart the Mac (I have not worked out is SOAgent launches when the Mac does).
    Restart Messages.
    If this does not work navigate to ~/Library/Preferences
    In here find and Delete com.apple.ids.service.com.apple.madrid.plist
    This will need a Restart of the app.
    You will be asked Again for your Apple ID
    9:28 pm      Sunday; January 26, 2014
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Having issues mapping network drives

    Having issues mapping network drives to my Mac. I trying to use samba, the name of the server is Media_Server and I want it to connect to volume_1. So I put int smb://mediaserver/volume1 and I get an error.
    Can anyone tell me what I'm doing wrong?

    I'm not sure, but when I want to connect to the desktop my other Mac on my home LAN I use:
    smb://192.168.1.105/johna/desktop

  • We encountered the following issues: CC desktop failed to install

    I keep logging on and need to update but keep getting the following message.  We encountered the following issues:  CC Desktop failed to install.  I can not log on and the desktop icons have been removed the first time I tried the update.  What gives?

    Keithmaccrimmon please see http://forums.adobe.com/message/5894404#5894404 and http://forums.adobe.com/message/5957792#5957792 where this topic has been discussed.

  • Samsung Galaxy S3 Issues - No Network Connection! Please Help.

    I have had my S3 for a few weeks now with no issues.
    Suddenly in the last two days, my phone is silent for a while, which is uncommon. I generally have a consistent stream of notifications, emails, texts, etc.  So when I picked up the phone, the 4GLTE signal is usually located, I saw a Ø icon.  I thought that was weird but thought maybe I was in a bad coverage area.  So I walked around outside the office building and got a notification when I clicked the Internet app, "No Network Connection."
    Of course, I initially thought the SIM card was maybe messed up.  I restarted the phone, and all was well.  Then yesterday, the same thing!  Now this morning my alarm goes off at 4:30am like always - only I get up to get ready for the gym and I see it's only 3:30.  The auto-detect for time zone is wacky.
    Upon googling no network connection with the galaxy, I see some S2 users had this same issue.  Is this a phone issue?  Network issue?  SIM issue?  It's done it twice in the last two days, so I don't know if I need to contact Verizon or what!
    Thanks for any advice you can give.

    It's really funny that anyone believes Verizon when they say an OTA is coming "soon" or "next month" or "next week".  They only tell you these things to placate you and get you off the phone.  They have no idea when an OTA is being rolled out!!!
    Verizon is the absolute worst provider when it comes to timely phone updates.  How long did it take for Verizon to update the Nexus compared to the GSM version?  6+ months!! 
    Be prepared to wait that long for an OTA to fix the dropped call issue, the data reception issue, the SIM card issue and the time zone issue.

  • Critical Issue with Network

     Hi Team,
    I have been using Lenovo P780 past one year. From Two months am facing a mojor issue with Network. When am connecting the device with WIFI then after few min. my GSM network goes down even after Turn off the WIFI. After a Hard rebot of the Device also am not able to get any GSM network on my Device. Please help me to resolve this issue. Am expecting more from Lenovo Technical Team. 
    Note : Am unable to Get GSM network in my P780 Device after using the WIFI.

    there was no error occured in AE monitoring as per logs it processed successfully, but receiver party which is outside organization network complained saying that they receive this file empty.
    Logs for your reference received by third party:-
    2011-08-26 08:23:35 XXX.XXX.XX.XXX 21 980 XXX.XXX.XX.XXX 33081 3172 XXXX-X-p@br 0 0 File Name 3 >>FILE INFO: D:\ftp\kunden\File Name was opened. Sharing is 1. File Handle is 0x00000b24.
    2011-08-26 08:23:35 XXX.XXX.XX.XXX 21 980 XXX.XXX.XX.XXX 33081 3172 XXXX-X-p@br 0 0 File Name 3 Did not receive any data, Error=1506, SubError=0, WSAError=0
    2011-08-26 08:23:35 XXX.XXX.XX.XXX 21 980 XXX.XXX.XX.XXX 33081 3172 XXXX-X-p@br 0 0 File Name 15 >>FILE INFO: D:\ftp\kunden\File Name was closed. File Handle is 0x00000b24.
    2011-08-26 08:23:35 XXX.XXX.XX.XXX 21 980 XXX.XXX.XX.XXX 33081 3172 XXXX-X-p@br 0 0 File Name 15 Finishing STOR, Triggering events manager for FX_EVENT_FILE_WRITE_SUCCESS
    2011-08-26 08:23:35 XXX.XXX.XX.XXX 21 980 XXX.XXX.XX.XXX 33081 3172 XXXX-X-p@br 0 0 File Name 15 RESPONSE: 226 Closing data connection. Transferred 0 bytes in 1 seconds. 0KB/second.
    where in PI we could see message contains data and message has been successfully processed, could it be issue on receiver end?
    thanks.

Maybe you are looking for

  • How to get the Full and final settelment date from PC_payresults

    Hi Experts..sairam. We are preparing Functional specification  for a report on Full and final settelement. We need to extract the  full and final settelement date from  payresults. Full and final settelement would be an offcycle run. How can we ident

  • Boxes, Pallets in to a container

    I am packing my accessories in Boxes and keeping the boxes in a pallet using multi level and finally keeping all pallets in container for export. My question is how to proceed for packing process will anyone guide me.  What is the material group and

  • Link between spool request & abap program

    Hi all, I m looking for the link table between a spool request and the corresponding job and abap program. I want to select all spool requests generated via een job via een abap program. Some suggestions? Thanks in advance,

  • New modem and now server cant be accessed

    Changed modem today from BT to ntl - internet etc all working ok. But since the change the server cannot be accessed. Go > Connect to Server ..... never connects. At the server... Try to connect to Server preferences.... get 'Server cannot be found o

  • Rotating and Clickable Images

    Hello Everyone, Please point me to the right tutorial or provide steps to create the following effects. I want to create a Flash page, with: -3 category of speakers(in-wall, ceiling, and floor) -each time i click on anyone of thess categories, a 'win