Creating an invoice from a delivery does not closes the delivery.

I am creating an invoice using DI. The invoice is based on an already existing delivery note.
The delivery is manually created from SBO. When I'm creating the invoice I transfer all items and expenses from the delivery to the invoice.
case 1. The delivery has no freight defined.
When the invoice is created the delivery is automatically closed
case 2. The delivery has some freight
When the invoice is created the delivery remains open even though the invoice contains everything in the delivery, including the freight.
'Copy to' from this delivery opens an invoice with no items - only the freight is filled.
Currently I explicitly close the delivery using the Close method.
Is this correct?
Is it normal for the base document to remain open if the target document imports everything?
Thanks,
Svilen

Hi Svilen,
My experience with getting a delivery note to automatically close when I create an invoice against it is that the base document information on each line item on the invoice must be set to point at the delivery note (base document).  You are probably already doing this on your line items and that's why it closes when there is no freight.  But freight items have "base" fields too, and they have to point back to the freight item on the delivery note.   Are you setting the base doc info on the invoice freight lines?
The following code worked for me (although this example is for sales order to delivery, it is the same thing for deliveries to invoices):
                Dim ix As Short
                Do Until ix = vso.Expenses.Count
                    vso.Expenses.SetCurrentLine(ix)
                    If vso.Expenses.ExpenseCode = _FreightExpCode Then
                        If vso.Expenses.Status = bost_Open Then
                            vDN.Expenses.BaseDocEntry = SODocEntry 'added 1/5/7 jc
                            vDN.Expenses.BaseDocLine = vso.Expenses.LineNum
                            vDN.Expenses.BaseDocType = SAPbobsCOM.BoAPARDocumentTypes.bodt_Order
                        End If
                        Exit Do
                    End If
                    ix += 1
                Loop
I'm looping through the target (order) document's freight records to find the matching one that I know is on it - you might be processing all - but then I load the sales order base docentry, base doc line# & base doc type to the delivery note freight line item.
When getting this done, my source documents close OK.  In fact, I think they close even if the totals don't match on each record - just so long as every source doc record is pointed to by a target doc record.
HTH

Similar Messages

  • [svn:fx-trunk] 13136: Fix for FLEXENT-1196 ( Replay of click on NavigatorContent does not close the combobox)

    Revision: 13136
    Revision: 13136
    Author:   [email protected]
    Date:     2009-12-21 17:40:28 -0800 (Mon, 21 Dec 2009)
    Log Message:
    Fix for FLEXENT-1196 (Replay of click on NavigatorContent does not close the combobox)
    We need not record OPEN event when it is triggered from a KeyBoard event that types a character. Replaying the type event would automatically open the drop down.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FLEXENT-1196
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/automation_spark/src/spark/automation/delegates/compon ents/SparkComboBoxAutomationImpl.as
        flex/sdk/trunk/frameworks/projects/automation_spark/src/spark/automation/delegates/compon ents/supportClasses/SparkDropDownListBaseAutomationImpl.as

  • [svn:fx-trunk] 10608: Fix FB-19648: 'Terminate' action during debugging does not close the browser on Mac if path contains spaces

    Revision: 10608
    Author:   [email protected]
    Date:     2009-09-25 16:30:55 -0700 (Fri, 25 Sep 2009)
    Log Message:
    Fix FB-19648: 'Terminate' action during debugging does not close the browser on Mac if path contains spaces
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FB-19648
    Modified Paths:
        flex/sdk/trunk/modules/debugger/src/java/flash/tools/debugger/concrete/PlayerSession.java

    Revision: 10608
    Author:   [email protected]
    Date:     2009-09-25 16:30:55 -0700 (Fri, 25 Sep 2009)
    Log Message:
    Fix FB-19648: 'Terminate' action during debugging does not close the browser on Mac if path contains spaces
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FB-19648
    Modified Paths:
        flex/sdk/trunk/modules/debugger/src/java/flash/tools/debugger/concrete/PlayerSession.java

  • Clinking on the X does not close the Tab

    Recently I had to run the Loaris Trojan remover to get rid of something that hijacked my home page and search engine. I also had to reset the Firefox defaults. Somewhere in there I lost the ability to close a Tab by clicking on the X. The X is there but it does no close the Tab when I click on it. The only way I can close Tabs is to completely Exit Firefox and relaunch.
    How do I restore closing Tabs?

    Did you try the '''safe mode''' option ?
    Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    Thank you.

  • Create a symbol from placedItem/rasterItem does not work

    I need to create symbols in Illustrator CC programmatically from files on on disk. The following code gives an error when adding the symbol and I have no clue why. Any help will be appreciated. According to Adobe Illustrator CC Scripting Reference, a symbol can be added from a source art of type:
    CompoundPathItems
    GroupItems
    MeshItems
    NonNativeItems
    PageItems
    PathItems
    RasterItems
    SymbolItems
    TextFrameItems
    Here is the code:
    #target illustrator
    var activeDoc = app.activeDocument;
    var tempLayer = activeDoc.layers.add(); //Layer object reference
    var newSymbol; //Symbol object reference
    var srcArt; //PlacedItem object reference
    var fName; //File name
    // create document list from files in selected folder
    var selectedFolder = Folder.selectDialog('Please select the folder to be imported:', Folder('~'));
    var imageList = selectedFolder.getFiles();
    for (var i = 0; i < 1; i++) {
        if (imageList[i] instanceof File) {
            fName = imageList[i].name.toLowerCase();
            if( (fName.indexOf('.eps') == -1) && (fName.indexOf('.png') == -1)) {
                continue; // skip unsupported formats
            else {
                srcArt = activeDoc.placedItems.add(); //Place the image on the artboard
                srcArt.file = imageList[i];
                srcArt.embed();                                       
                activeDoc.symbols.add(srcArt);  --> Execution stops here with the message "an Illustrator error occurred: 556099904 ('@i%!')"
                newSymbol.name = fName.substring(0, fName.lastIndexOf(".") );

    srcArt is a "PlacedItem", after rasterizing, it disappears and a new "RasterItem" object is created, so you need to get a reference to this newly created object and continue
    srcArt.embed();     
    var embedded = activeDoc.rasterItems[0];
    activeDoc.symbols.add(embedded);

  • System does not propose the delivery date based on factory calendar

    Hi,
    I am creating a sales order for a delivery date for this sat which is (2/22/09)
    I have maintained 2 separate calendars for
    1) shipping point
    2) for the route
    The route has a transit time of 1 day and the calendar has sat and sunday as non working.
    the Shipping point has a pick/pack time of 1 day and the calendar has sat and sunday as non working
    The material is available in the warehouse
    Now when i create this sales order i enter the delivery date as 2/22/09, the system does not propose me the delivery date of monday (i.e 2/23/09) It accepts the 2/22/09 delivery date.
    In the schedule line i do see the date as 2/22/09 only.
    The delivery was created with the following dates
    Picking = 2/17/09
    Transportation Planning = 02/18/2009
    Loading =02/18/2009 
    Planned GI= 02/18/2009
    Delivery Date = 02/22/2009
    How can the system give me the delivery date of a sunday when the calendar doesnt allow sunday as working day.
    Also the route time is 1 day in transit so i am not sure why the system is proposing a 3 day transit time?
    Can any one explain the behaviour of SAP for the delivery date logic

    Dspsac,
    Delivery date can be any date.  For instance, if your customer insisted on a Sunday delivery, you would accommodate him, regardless of any calendar.
    From the delivery date, the system counts backwards USING THE FACTORY CALENDAR ASSIGNED TO THE ROUTE by the number of days in the route.  You have to consult the FC assigned to your Route to determine if the GI date has been properly calculated.
    From the GI date, the system counts backward Pick/pack time, using the shipping point calendar, to arrive at Material availability date.
    Calculations are explained in SAP online help
    [Transportation and Delivery Scheduling|http://help.sap.com/erp2005_ehp_04/helpdata/EN/dd/5607e7545a11d1a7020000e829fd11/frameset.htm]
    Regards,
    DB49

  • Changing outbound delivery in EWM does not change the delivery in ERP

    Hello,
    I am working on EWM;
    I create an outbound delivery and it is transferred to EWM. If I reject the outbound delivery request in EWM, system adjust the quantity of delivery for both EWM and ECC.
    But if I activate the delivey the system creates a outbound delivery order(odo). But the problem is that when I change odo the delivery in ERP is not changed.
    Do you have an opinion to about what should i check in the system?
    Best regards.

    As example you can take:
    ex/code: DIFD
    Business Contx TPT
    Exec. Step 02
    Its for inbound delivery, there no record for outbond.
    But i still dont understand the buisnes reason for such process, cose if your customer order 500 PC for example, you warhouse workers simply change his demand and it's not correct, cose you can deliver this open amount later and sales person should decide. You task in EWM use exeption codes and process codes to close ODO or find other bin...
    Like i sad, at the time of good issue adopted amount EWM will send to ERP.
    For delete position from odo use trash button
    pick denal exeption code in WHT conformation.
    Edited by: Andrey Altabaev on Jan 19, 2012 10:11 PM
    Edited by: Andrey Altabaev on Jan 19, 2012 10:13 PM

  • NEW_FORM call from menu module does not close previous form window

    We run Forms 9.0.4 and I just developed three new form screens. The problem is that when new screens are called with NEW_FORM call from menu module:
    New_Form(p_form_to_open,TO_SAVEPOINT,NO_QUERY_ONLY,NO_SHARE_LIBRARY_DATA,Menu_Globals.v_form_parml);
    the window from previous form is visible in the background.
    Strangely enough same call from the same menu module using exactly same NEW_FORM call for old screens does not leave previous window visible. I've checked Form level properties, Window Level Properties, Different Menu Properties, and could not find anything that would fix it.
    Any pointer would be appreciated.

    I've figured it out:
    The old screens have main window named ROOT_WINDOW. As soon as I named the window on new screen to be ROOT_WINDOW the background window disappeared.
    How stupid is that. Wasted my whole day on this.

  • Two issues, firefox crashes and does not close the process

    I am a web developer, so I am contently messing about with websites,
    I start firefox and open up wordpress for example and also have filezilla open and notepad++ on my computer as well as firefox all at the same time.
    I edit something and refresh firefox, it hangs, but it does not stop hanging so I have to restart firefox, but the process is still running so I have to stop the process from task manager in order to restart firefox again.
    This should not happen, not only does it happen regularly but it happens after refreshing pages after an edit
    of course I have tried switching off plugins and even my internet security but its still doing it. I have taken to using opera instead of firefox when developing websites but I much prefer firefox layout..
    I need all these programs open by the way in order to achieve my work.
    any ideas ?.. thanks

    I am a web developer, so I am contently messing about with websites,
    I start firefox and open up wordpress for example and also have filezilla open and notepad++ on my computer as well as firefox all at the same time.
    I edit something and refresh firefox, it hangs, but it does not stop hanging so I have to restart firefox, but the process is still running so I have to stop the process from task manager in order to restart firefox again.
    This should not happen, not only does it happen regularly but it happens after refreshing pages after an edit
    of course I have tried switching off plugins and even my internet security but its still doing it. I have taken to using opera instead of firefox when developing websites but I much prefer firefox layout..
    I need all these programs open by the way in order to achieve my work.
    any ideas ?.. thanks

  • The Full Screen icon does not appear in Firefox 16.0.2 on Mac OS 10.6.8, and command+shift+F does not close the full screen view.

    I accidentally entered full screen view and was unable to exit. The Firefox Help article at https://support.mozilla.org/en-US/kb/how-make-firefox-and-websites-go-full-screen?esab=a&s=full+screen+mac&r=0&as=s says I should see a Full Screen View icon in the upper right-hand corner of the Firefox window. That icon not there. I cannot find it. It does not appear in either the full screen or non-full screen views.
    Further, the Help article's advice to exit full screen view by using the keyboard sequence command+shift+F does not work. I had to unplug my iMac and reboot. Firefox then opened in non-full screen view.
    Ideally, hitting the Escape key would cause Firefox to exit full screen view.

    I forgot one detail. This happened while I was having trouble seeing the mouse cursor (I use Apple's Magic Mouse). It had disappeared briefly. I had to drag the cursor out of the Firefox Window for it to reappear. I accidentally entered full screen view while the cursor was not visible.

  • Lync 2013 click to call from Outlook 2013 does not have the option for Lync call

    Hello,
    We are currently migrating from OCS 2007 r2 to Lync 2013. We are on office 365, but Lync is on premise. After migrating several users the option in Outlook to click to call someone only shows one option, which is to call the person's desk phone. Before there
    was a dropdown where you could choose desk phone, mobile or Lync call. This issue isn't happening to everyone. We are using Office 2013 and Office 2010. Please let me know if you have suggestions or if you need more info.
    Not sure if this is related, but some people have lost the option to view their contact's pictures. 
    Thank you in advance,
    Mitch

    Hi,
    Please see the image below, are we talking about this?
    If a contact doesn't have a phone number, we surely can't call him.
    You can try updating the Offline Address Book to see the result:
    http://www.howto-outlook.com/howto/oabupdate.htm
    If I got anything wrong, feel free to post back.
    Regards,
    Melon Chen
    TechNet Community Support

  • Can not open photos, even mine, or post messages on FB pages from IMac, IPad does not have the problem.

    I may have caused the problem by trying to block ads. How do I undo the 'block' I push a slide bar on screen.

    Hello:
    Certainly not here.  I suggest you clear the cache and delete any eBay cookies and then try to visit the site (don't use a previous bookmark).
    Barry

  • After many discussions with Apple Support, I still have the problem of the screen switching back to the desktop. It does not close the window just minimizes the window. What do I do? Help!?!

    I have contacted Apple Support Several times. Has anyone else had the issue of their computer switching them back to the desktop without completely closing out the program or internet they are on? I cannot get it to stop. Help?

    I'm running Mavericks, which is a little different than what you're running, but I think I have a lead for you. First, read this:
    http://forums.macrumors.com/showthread.php?t=1309561
    I think this describes what you're seeing.
    Then read this thread. Click on the picture and look for that setting in your Dock settings in System Preferences.
    http://forums.macrumors.com/showthread.php?t=1180561
    You want to uncheck the box that says "Minimize Applications...etc"

  • The "return" button under the screen of my iPhone 4 does not close the apps

    I have to push on it several ans several times before something happens.
    Is someone able to help me fix this issue please?
    Thx in advance

    Ah, you mean the Home button. If you're having a hardware issue, you should take the phone to Apple and have them look at it.

  • FMS proxying HTTP does not close sockets correctly?

    Hi,
    So, after waiting for a while, we decided to upgrade our streamers to FMS 3.5.3 and set them up to proxy HTTP requests to a lighttpd server instead of the "built in" Apache. With the previous version 3.5 of FMS, we had problems of FMS hanging up after a while and stopping relaying requests, generally a few hours, even when it did not serve a lot of requests. With version 3.5.3, we had great hopes that this problem had disappeared as we had FMS running for more than a month on a test server. So we did the upgrade and we encounter another problem:
    After less that one day of activity, our servers crashed for an unknown reason, almost at the same time. Analysing the logs, I saw out of memory messages, but how could two linux servers stop working in the same 5 minutes interval. I supposed there was a power failure of some sort. And I kept analysing because the sysadmins in the server room swore that they saw out of memory kernel panic on the consoles. After a bit of investigation, I found the reasons: the TCP connexions between FMS and the lighttpd server are stacking up and fill the OS network memory! Now, I don't know who is the culprit:
    FMS code does not manage correctly HTTP proxy sessions?
    lighttpd does not handle correctly HTTP proxying from FMS and does not close correctly the sessions?
    Our Ubuntu linux network stack is not correctly configured to manage so many connexions?
    Here are the details, any assistance is welcome!
    The servers: linux Ubuntu 8.04 with 8 GB RAM.
    FMS 3.5.3 proxying to lighttpd 1.4.19 listening on port 81. FMS and lighttpd are set up on the same server.
    The streamer receives many (> 10/s) HTTP requests from iPhones which are proxied to lighttpd. iPhones request partial content and lighttpd is well suited for these type of requests.
    Locking at the state of the TCP stack:
    # netstat -st
    IcmpMsg:
        InType3: 6
        InType8: 5501
        OutType0: 5501
        OutType3: 6
    Tcp:
        101662 active connections openings
        1192680 passive connection openings
        33 failed connection attempts
        177391 connection resets received
        1653 connections established
        73559682 segments received
        70196072 segments send out
        165137 segments retransmited
        0 bad segments received.
        37219 resets sent
    UdpLite:
    TcpExt:
        22 resets received for embryonic SYN_RECV sockets
        141884 packets pruned from receive queue because of socket buffer overrun
        2052 packets pruned from receive queue
        40293 TCP sockets finished time wait in fast timer
        801 time wait sockets recycled by time stamp
        711318 delayed acks sent
        2401 delayed acks further delayed because of locked socket
        Quick ack mode was activated 535 times
        68554 packets directly queued to recvmsg prequeue.
        11705 bytes directly in process context from backlog
        341070 bytes directly received in process context from prequeue
        5114830 packet headers predicted
        22083 packets header predicted and directly queued to user
        32542120 acknowledgments not containing data payload received
        25289961 predicted acknowledgments
        9191 times recovered from packet loss due to fast retransmit
        6222 times recovered from packet loss by selective acknowledgements
        Detected reordering 7 times using FACK
        Detected reordering 1 times using SACK
        Detected reordering 7 times using reno fast retransmit
        Detected reordering 9 times using time stamp
        15 congestion windows fully recovered without slow start
        42 congestion windows partially recovered using Hoe heuristic
        17 congestion windows recovered without slow start by DSACK
        16517 congestion windows recovered without slow start after partial ack
        51 TCP data loss events
        3916 timeouts after reno fast retransmit
        3372 timeouts after SACK recovery
        10048 timeouts in loss state
        9157 fast retransmits
        6 forward retransmits
        28990 retransmits in slow start
        30176 other TCP timeouts
        7656 classic Reno fast retransmits failed
        95 SACK retransmits failed
        2738020 packets collapsed in receive queue due to low socket buffer
        52 DSACKs sent for old packets
        52 DSACKs received
        3 connections reset due to unexpected data
        74950 connections reset due to early user close
        2846 connections aborted due to timeout
        TCP ran low on memory 10 times
        TCPDSACKIgnoredOld: 41
    IpExt:
    The last red line can be visualised below; sometimes the server crashes in out of memory kernel panic...
    And if you compare with previous behavior, you can tell when we did the upgrade to FMS 3.5.3...
    A few words on our previous configuration with FMS 3.5. To be able to accept HTTP requests, we have a front load balancer which is able to route HTTP requests to lighttpd and RTMP requests to FMS. But with this configuration, we don't benefit from the ability of FMS to fallback to RTMPT for clients behind a proxy or proxy ol' HTTP requests... With the previous configuration, we never had so many connections active simultaneously: we change from 200 max to more than 7000 with FMS 3.5.3 in proxy!
    Some figures on what exactly happens:
    # netstat -tn | grep :81 | awk '{print $6}' | sort | uniq -c
         20 CLOSE_WAIT
       2245 ESTABLISHED
       1236 FIN_WAIT1
          5 TIME_WAIT
    # netstat -tn
    Active Internet connections (w/o servers)
    Proto Recv-Q Send-Q Local Address           Foreign Address         State
    tcp        0 275841 127.0.0.1:81            127.0.0.1:45088         FIN_WAIT1
    tcp   562347      0 127.0.0.1:55150         127.0.0.1:81            ESTABLISHED
    tcp        0 225152 127.0.0.1:81            127.0.0.1:34856         ESTABLISHED
    tcp        0 238081 127.0.0.1:81            127.0.0.1:54310         FIN_WAIT1
    tcp        0 114433 127.0.0.1:81            127.0.0.1:51810         FIN_WAIT1
    tcp   670800      0 127.0.0.1:40746         127.0.0.1:81            ESTABLISHED
    tcp   597444      0 127.0.0.1:40654         127.0.0.1:81            ESTABLISHED
    tcp   592810      0 127.0.0.1:40669         127.0.0.1:81            ESTABLISHED
    tcp        0 103168 127.0.0.1:81            127.0.0.1:54544         ESTABLISHED
    tcp        0 201344 127.0.0.1:81            127.0.0.1:40567         ESTABLISHED
    tcp        0      0 10.1.74.30:1935         10.1.74.2:60372         ESTABLISHED
    tcp   665360      0 127.0.0.1:45282         127.0.0.1:81            ESTABLISHED
    tcp        0 210432 127.0.0.1:81            127.0.0.1:40662         ESTABLISHED
    tcp        0 207361 127.0.0.1:81            127.0.0.1:44895         FIN_WAIT1
    tcp        0 109825 127.0.0.1:81            127.0.0.1:52144         FIN_WAIT1
    tcp        0 221825 127.0.0.1:81            127.0.0.1:54844         FIN_WAIT1
    tcp        0 103168 127.0.0.1:81            127.0.0.1:40791         ESTABLISHED
    tcp   782301      0 127.0.0.1:55074         127.0.0.1:81            ESTABLISHED
    tcp        0 219137 127.0.0.1:81            127.0.0.1:45040         FIN_WAIT1
    tcp        0 209921 127.0.0.1:81            127.0.0.1:44837         FIN_WAIT1
    tcp   574170      0 127.0.0.1:45275         127.0.0.1:81            ESTABLISHED
    tcp        0 252033 127.0.0.1:81            127.0.0.1:54907         FIN_WAIT1
    tcp        0 254977 127.0.0.1:81            127.0.0.1:54515         FIN_WAIT1
    tcp        0 142977 127.0.0.1:81            127.0.0.1:52129         FIN_WAIT1
    In case this is needed, FMS configuration is almost out of the box:
    _defaultRoot_/Adaptor.xml:
    <HTTPTunnel>
                    <Enable>true</Enable>
                    <NodeID></NodeID>
                    <IdlePostInterval>512</IdlePostInterval>
                    <IdleAckInterval>512</IdleAckInterval>
                    <IdleTimeout>60</IdleTimeout>
                    <MimeType>application/x-fcs</MimeType>
                    <WriteBufferSize>16</WriteBufferSize>
                    <SetCookie>true</SetCookie>
                    <Redirect enable="false" maxbuf="16384">
                            <Host port="80">:8080</Host>
                            <Host port="443">:8443</Host>
                    </Redirect>
                    <HttpProxy enable="true" maxbuf="16384">
                            <Host port="80">${HTTPPROXY.HOST}</Host>
                    </HttpProxy>
                    <NeedClose>true</NeedClose>
                    <MaxWriteDelay>20</MaxWriteDelay>
                    <MinWriteDelay>12</MinWriteDelay>
                    <MaxHeaderLineLength>1024</MaxHeaderLineLength>
    </HTTPTunnel>
    I've tried changing lighttpd configuration to handle KeepAlive session or not, it has no influence on the behaviour.
    If you spot a configuration mistake or have any idea, I'm ready to test it as soon as possible... Asa?
    Thanks

    Has this been fixed? What was done?
    We have been having the same issue. We worked on it with Adobe support and thought it might have been fixed with a "patched" version of FMS that was created to solve the problem. However, we still see the issue (recently we had a huge increase in load due to an annual event).
    Over time, when we run netstat, we see Apache connections (127.0.0.1:88134) stuck in a FIN_WAIT_1 state while the corresponding FMS processes (127.0.0.1:1025 to 5000) are in an ESTABLISHED state. It appears as though the connection is closed from the http proxy side while FMS doesn't acknowledge the close.
    We notice this behavior seems related to load. High load = connections getting hung more frequently. The only fix seems to be restarting the FMS service which restarts the embedded apache as well.
    I'm curious if you found a fix or even a workaround to help you cope with these connections. Even something to close them periodically would be a huge help. So far, we're resorting to an automatic restart of the server ever 2 days which is hardly a proper production solution.
    I would really appreciate any information you could provide with regards to your particular problem and whether or not it's been solved.
    An example (just a snippet) of the netstat monitor we have running each hour on the half-hour:
      Proto  Local Address          Foreign Address        State
      <snip FMS to Apache>
      TCP    127.0.0.1:2847         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2848         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2849         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2850         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2851         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2853         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2854         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2855         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2856         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2857         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2858         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2859         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2860         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2861         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2862         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2863         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2864         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2865         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2866         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2867         127.0.0.1:8134         ESTABLISHED
      TCP    127.0.0.1:2868         127.0.0.1:8134         ESTABLISHED
      </snip FMS to Apache>
      <snip Apache to FMS (corresponding entries)>
      TCP    127.0.0.1:8134         127.0.0.1:2847         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2848         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2849         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2850         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2851         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2853         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2854         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2855         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2856         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2857         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2858         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2859         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2860         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2861         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2862         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2863         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2864         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2865         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2866         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2867         FIN_WAIT_1
      TCP    127.0.0.1:8134         127.0.0.1:2868         FIN_WAIT_1
      </snip Apache to FMS>
    This particular log shows all ports between 1024 and 5000 in the same state as above. A restart resets all the connections and the process starts over. From my investigation, Apache seems to be acting properly. It tries to be a 'good citizen' and issue a graceful close that goes unacknowledged by FMS. Unfortunately, Apache doesn't go back to check a connection it considers closed, so they connection remains half-closed.
    Please, please let me know if you found anything out. Information on the web is scarce and I'm at my wit's end!

Maybe you are looking for