At NEW - AT END OF

Hi all,
I have a table, itab
bukrs    werks     kostl      amount
         100       U100      1000      $1000
         100       U100      1000      $2000
         100       U100        1200      $1000
         100       U100      1300      $1000
         100       U200      2000      $1000
         100       U200      2200      $1000
         100       U200      2300      $1000
         200       U200      2400      $1000
         200       U200      2500      $1000
Sort itab ASCENDING by bukrs werks kostl.
Loop at itab.
At firstu2026..[u2026.]
At new bukrs.
  Write: / u2018company codeu2019,  itab-bukrs.
Endat.
At new kostl.
  Write: / u2018cost center,  itab-bukrs.
     [Accumulate amount logic]
Endat.
At end kostl.
  Write: / u2018total for kostl:u2019, [Accumulate amount].
Endat.
At end werks.
  Write: / u2018total for werksu2019, [Accumulate amount for all in werks].
Endat.
At end bukrs.
  Write: / u2018total for bukrsu2019, [Accumulate amount for all in the whole company code].
Endat.
Endloop.
Normally "at end of " will detect and report the new entry in the table when it loops to a new entry.
for example, taking the first 4 entries of itab, it should show
         100       U100      1000      $1000
         100       U100      1000      $2000
         100       U100        1200      $1000
         100       U100      1300      $1000
company code 100
cost center 1000
total for kostl 1000:  $3000
cost center 1200
total for kostl 1200:  $1000
cost center 1300
total for kostl 1300:  $1000
total for werks U100: $5000
However, I found out that it's showing this
company code 100
cost center 1000
total for kostl 1000:  $1000
*total for werks U100: $1000*
cost center 1000
total for kostl 1000:  $2000
cost center 1200
total for kostl 1200:  $1000
cost center 1300
total for kostl 1300:  $1000
*total for werks U100: $4000*
This doesn't make sense since it's repeat cost center 1000 into 2 occurrences, not sure why "at end of" is not working though. I need some help...
Thanks.

Hi,
see i have coded and tested it and for me its working as desired...
TYPES: BEGIN OF t_wa,
        bukrs TYPE bukrs,
        werks TYPE werks_d,
        kostl TYPE kostl,
        amount TYPE mwsbp,
  END OF t_wa.
DATA: itab TYPE STANDARD TABLE OF t_wa,
           wa LIKE LINE OF itab.
wa-bukrs = '100'.wa-werks = 'U100'.wa-kostl = '1000'.wa-amount = 1000.
APPEND wa TO itab.
wa-bukrs = '100'.wa-werks = 'U100'.wa-kostl = '1000'.wa-amount = 2000.
APPEND wa TO itab.
wa-bukrs = '100'.wa-werks = 'U100'.wa-kostl = '1200'.wa-amount = 1000.
APPEND wa TO itab.
wa-bukrs = '100'.wa-werks = 'U100'.wa-kostl = '1300'.wa-amount = 1000.
APPEND wa TO itab.
SORT itab ASCENDING by bukrs werks kostl.
LOOP AT itab INTO wa.
   at FIRST.
   endat.
  AT NEW bukrs.
    WRITE :/'company code', wa-bukrs.
  ENDAT.
  AT NEW kostl.
    WRITE:/'cost center',  wa-kostl.
  ENDAT.
  AT END OF kostl.
    SUM.
    WRITE: /'total for kostl',wa-kostl,':', wa-amount.
  ENDAT.
  AT END OF werks.
    SUM.
    WRITE: /'total for werks',wa-werks,':',wa-amount.
  ENDAT.
  AT END OF bukrs.
    SUM.
    WRITE: /'total for bukrs',wa-bukrs,':', wa-amount.
  ENDAT.
ENDLOOP.
Output:
company code 100
cost center 1000
total for kostl 1000       :          3.000,00
cost center 1200
total for kostl 1200       :          1.000,00
cost center 1300
total for kostl 1300       :          1.000,00
total for werks U100 :          5.000,00
total for bukrs 100  :          5.000,00

Similar Messages

  • New front end editor problem

    I'm quite new on this forum, so don't be so angry if I'm asking about something that someone else was asking for, by i didn't found answer on my question.
    So...
    In my company, administrator made some updates in 4.7, after that updates new front end editor is avalible (this with code colorin, code hinting, code folding etc).
    But I have some problem with keyboard mapping scheme. When i try to save my own setting or change keymapping to another one, SAP stop responding (it's not a crash with short dump but simple aplication freezing). I tried to find some solution to this behaviour but I didn't found it yet.
    My question is:
    1) Did someone else have the same behaviour as I?
    2) Where to find SAP notes about front end editor?
    Thx in advance for any help

    Keymapping settings in file:
    C:\Documents and Settings\<username>\ab4_data\keymap.xml
    You should also check the following dir:
    c:\Program Files\SAP\FrontEnd\SapGui\ab4_data\
    During patch installation this dir is overwritten, and during the first use of the new editor, the files from here copied to the <username>\ab4_data dir, where you can change them.
    Might be permission problem, I can imagine, that if you have no authorization to change these files, the GUI starts hanging or chrashing.
    Peter

  • New Front-End Editor is Dumping when I try to check an ABAP source code

    Hi Experts
    I'm trying to check the source code of any ABAP in SE38 with the new front-end editor, but I'm facing a dump, maybe there is missing a patch or something like that. if any of you have information about that I really appreciate your aswers.
    I reinstalled the SAP GUI and still have the issue.
    part of the dump is here
    Runtime Errors         MESSAGE_TYPE_X
    Date and Time          04/09/2008 15:12:51
    Short text
         The current application triggered a termination with a short dump.
    What happened?
         The current application program detected a situation which really
         should not occur. Therefore, a termination with a short dump was
         triggered on purpose by the key word MESSAGE (type X).
    Error analysis
         Short text of error message:
         Control Framework : Error processing control
         Long text of error message:
          Diagnosis
              An error occurred when the system tried to process the commands
              from the Automation Queue on the presentation server.
              There are several possible reasons for this:
              - The installation of the SAP GUI on the presentation server is
              faulty or obsolete.
              - There is an error in the application program
              - There is an error in the SAPGUI or an integrated control

    Hernan Enriquez ,
                               Hi you can try the below things :
    1) You need have the latest patch of the SAP GUI installed.
    2) If you have the above try to re-install the GUI from the scratch. It might be courrupted.
    3) If VISTA need to check the GUI compatibility.
    Thanks,
    Greetson

  • AT NEW & AT END is not triggered

    Hi All,
    I am having following code where AT NEW & AT END is not get triggered, whenever there is data like following in table.
    Can any once comment why AT NEW & AT END OF not getting triggered in this case?
    ITAB-A  ITAB-B
    Tube                             0
    Tube                             10
    Tube                              0
    LOOP AT ITAB where B > 0..
    AT NEW A.
    u2026.
    ENDAT.
    u2026.
    AT END OF A.
    u2026.
    ENDAT.
    ENDLOOP.
    Regards

    Example :
    Data : Begin of ITAB occurs 0,
                first type c,
                second type c,
                third type c,
           end of itab.
    sort itab by first.
    loop at itab.
    AT NEW FIRST.
       flag = X.
    ENDAT.
    if flag =  X.
       write ; itab-first, itab-second, itab-third.
    endif.
    AT END of FIRST.
         write : 'END OF THE COMMAND'.
    endat.
    endloop.
    *****Hope this will give u idea.
    endloop.

  • New front end issue - services not starting

    Have build an additional lync 2013 standard edition server, the setup went through fine without error but the following services will not start and cannot figure out why.
    Lync Server Audio Test Service
    Lync Server Front-End
    Event logs only give the following
    This process was not able to update its health status
    The IM Conferencing Server failed to send health notifications to the MCU factory at https://Server/????.ac.uk:444/liveserver/mcufactory/.
    A component could not be started.  The service has to stop.
    Component: Live Communications Applications Module  Error code: C3F2765F!_HRX! (APIEM_E_ESBASE_MISSING!_HRM!)
    urn:application:testbot
       Exception: Microsoft.Rtc.ApplicationServerCore.ApplicationServerMethodTimeoutException > ErrorCode: 2 > Message: The method call CallStartAsync failed due to The method timed out. > TargetSite: Void CallMethod() > StackTrace: at Microsoft.Rtc.ApplicationServerCore.ApplicationMethodCaller.CallMethod()
    at Microsoft.Rtc.ApplicationServerCore.ApplicationHost.CallApplicationStart() > Source: Microsoft.Rtc.ApplicationServerCore > HResult: -2146233088  
    Cant find anything else in the event logs

    I have made sure they are all on the same CU update but the new front ends will still not start, following errorsWhere would i see if its a certificate related error as they look ok from the lync deployment wizard?
    Event log errors
    The UserServices module was not found in the Application List.
    Application Uri: 'http://www.microsoft.com/LCS/UserServices'
    Cause: The server configuration requires the UserServices module to be registered and active. However the configuration information is not found.
    Resolution:
    UserServices configuration is installed at setup time. Check the application list and ensure that it is present. If it is not present, reinstall the server. If this problem occurred after you installed a new application, contact the application vendor to rectify
    the problem.
    Failed to initialize the API subsystem.
    Cause: Review earlier events to determine the specific reason APIEM failed to initialize.
    A component could not be started.  The service has to stop.
    Component: Live Communications Applications Module  Error code: C3F2765F!_HRX! (APIEM_E_ESBASE_MISSING!_HRM!)
    The Lync Server Front-End service terminated with the following service-specific error:
    %%3287447135

  • ABAP New Front-end editor not opening in Windows 7

    Hi ,
    When I am trying to open a  report with the ABAP New Front-End Editor with  Windows 7 as OS, the system is getting  freezed without navigating to any other screen .The SAP GUI that I am using is  Release 710 with Patch level 17.
    Please help me to sort out the problem
    Thank You.
    Regards,
    Bala

    Hello
    please install the latest Sapgui patch 20 and the problem is solved.
    BR
    Sven

  • Support the news front-end languages of the GUI

    Hi all,
    I want know about the roadmap for support the news front-end languages of the GUI, especially about Brazilian Portuguese language.
    Thanks,
    Renato Soti
    Message was edited by:
    rjsoti

    Hi Renato
    As with other Oracle software the GUI translation in other languages is based on a business case basis. Pl send me an email at [email protected] , detailing the customer case and I will take it up with all concerned folks.
    Thanks
    Vishal

  • Original Mac Pro vs. New High End iMac

    I need some advice on whether to upgrade my system, based on the new iMacs just released. Here is what I currently own:
    Mac Pro with two Intel 2.66 dual-core processors
    (Early 2007 edition)
    16x SuperDrive
    6 GB of RAM
    1 TB HD
    ATI Radeon X1900 XT (512 MB)
    23" Apple Cinema Display
    I'm thinking of selling all of that and buying the new high-end 27" iMac...
    2.66 GHz Intel Core i5
    4 GB of memory (I'd upgrade it to 8 GB)
    2 TB Hard Drive
    ATI Radeon HD 4850 graphics card
    27" display (included)
    I've done the research and I would roughly break even. Cost is not a concern. The following factors are under consideration...
    What is the performance difference between the 4 cores I have in the 2.66 Xeon vs the 4 cores in the Core i5?
    My X1900 graphics card is not supported under Snow Leopard's OpenCL. The new HD 4850 would be.
    I'd like to have the larger display (27" vs. 23") and the built-in video camera for iChat video conferencing.
    I am not a professional user. I consider myself a high-end consumer user, primarily doing HD video editing with iMovie, some video encoding with Handbrake, and "prosumer" work with RAW files in Aperture. The rest is basic use- such as email, internet, etc.
    I would love to have some objective advice on this decision!
    Thanks....

    If performance of the current system is acceptable, I would keep it and use it as long as possible. You have the capability to do things like replace the display (with a new one of your choosing), upgrade the video card, and add additional internal SATA drives. Having additional internal storage at SATA speed, and using separate drives to store OS/apps and user data, will increase your system's productivity.
    When performance of your Mac Pro is no longer acceptable, get a new Mac Pro.

  • Migrate the Production APPS and DB to New High End Server

    Hi,
    current Low end server:
    Single Node Installation: DB & APPS
    Version: 12.1.1 (11.1.0.7)
    Operating System: Redhat Linux 5.4 (x86-64)
    We have bought new high end machine with more cpu, RAM anad More Hard Disks.
    We are going to move everything from current low end server to new high end server.
    1. Install Linux 64 bit on New High End Server with required RPMS, Kernel Parameters, User Limits etc etc
    2. Make partitions on this server as same as current server ( Mount Points should be same as current server)
    3. Make users and groups and assign proper permissions on partitions
    4. Maintain same hostname and IP Address in Target Server
    5. Run Preclone in both DB Tier and Apps Tier in Source Server
    6. Take backup of current server and copy it to Target Server
    7. Shutdown the Source Server
    8. Run config clone on Target Server
    9. Start the Services in Target Server, after clonining, Make sure that all services are running including concurrent managers
    10. Configure Printers at OS Level with same in Oracle Applications Printers Screen
    12. Copy the Backup scripts from source to target server
    13. If tape drive is configured at current server, configure it new Server as well.
    Please let me know, if i miss anything....
    thanks in advance......

    Hi oraDBA2,
    It's been long time, how are you doing?
    Your steps are correct and I would say there is nothing missing. Please note the mount points on the target node(s) do not have to follow the same naming you have on the source node as you are going to run postclone on the target server(s). However, keeping it the same would make it more straightforward. As long as you have all pre-req. OS packages and software installed and you are going to keep the same hostname/domainname as well as IP Address, you should be good.
    An alternative would be restoring the files on the target node(s) without running preclone/postclone but this requires relinking as per the following documents.
    Note: 356878.1 - How to relink the whole Applications 11i Installation
    Note: 131321.1 - How to Relink Oracle Database Software on UNIX
    Note: 407055.1 - Process To Upgrade the Operating System and Oracle Database Server
    Since Rapid Clone is your option (which I personally prefer) you can skip this part as relinking will be done by Rapid Clone, so you do not have to worry about it.
    Good luck!
    Thanks,
    Hussein

  • Rumor: Nokia to reveal new high end smartphone soon

    Forbes is reporting from anonymous source that Nokia is going to announce a new high end smartphone at the start of MWC (2/27).  No word if it's a Windows Phone device or not.
    Speculation on some of the posts throughout the interwebs is that it might be the 801 running Belle

    John,
    Neither is an ideal machine. 64MB VRAM (and other video card factors) is not sufficient to run all Photoshop features. But the G5 may also need a video card upgrade (check Adobe's list of appropriate cards), which may or not be practical. And more and more apps are being developed for Intel only, so you are buying dated technology either way.
    I'd be looking into a more capable Intel machine, either second-hand, refurbished, or as a lease (if for business).
    Neil

  • Outgoing calls to new number "Ends"...

    Hi,
        I use a Nokia Lumia 800 with an Airtel Connection. If I make a call to any new (unknown) number, the call ends instantly. If I save the same number (to some name eg. ABC) in my phone & call ABC from my contacts, then it is working fine... Anybody facing the same problem....? Can anybody suggest a solution...

    Sorry I didnt get back to you straight away, I actually fixed this problem by issuing the following commands on the pots dial peer in question.
    progress_ind setup enable 3
    progress_ind alert enable 8
    Also something strange about the progress_ind alert enable 8 command, you have to type in the full command for it to take, if you do progress_ind ? to list options, alert is not listed as an option.
    Thanks for help and interest anyway.

  • Help using AT NEW, AT END OF

    Hi experts,
           I am not able to get desired result by using at new and at end of in my report. This is what i have in my internal table ifinal. fields f2 and f3 are don't care.
    f1      f2       f3       f4     f5
    a       x        x        10    5
    a       x        x        20   15
    b       x        x        5     10
    b       x        x        10    5
    Now i want the result as follows:
    f1     f2     f3     f4     f5
    a       x     x     10      5
    a       x     x     20     15
    total  x      x     30     20
    b       x     x      5      10
    b       x     x     10       5
    total   x     x     15     15
    so grouping values in f1, i need to calculate total for fields f4 and f5.
    Someone plz. help soon.
    Thanks.
    Abhinav.

    Please paste your code here and it will be easy to loo upon.
    Here is a pseudo logic.
    sort itab1.
    loop at itab1.
      write:/ f1, f2, f3, f4, f5.
      at end of f1.
        sum.
        write:/ f1, f4, f5.
      endat.
    endloop.
    Here are some more details with examples. Please check your code accordingly.
    SUM.
    You can only use this statement within a LOOP. If you use SUM in an AT - ENDAT block, the system calculates totals for the numeric fields of all lines in the current line group and writes them to the corresponding fields in the work area (see example in ). If you use the SUM statement outside an AT - ENDAT block (single entry processing), the system calculates totals for the numeric fields of all lines of the internal table in each loop pass and writes them to the corresponding fields of the work area. It therefore only makes sense to use the SUM statement in AT...ENDAT blocks.
    If the table contains a nested table, you cannot use the SUM statement. Neither can you use it if you are using a field symbol instead of a work area in the LOOP statement.
    Examples
    Example
    DATA: BEGIN OF LINE,
             COL1 TYPE C,
             COL2 TYPE I,
             COL3 TYPE I,
          END OF LINE.
    DATA ITAB LIKE HASHED TABLE OF LINE
              WITH UNIQUE KEY COL1 COL2.
    LINE-COL1 = 'A'.
    DO 3 TIMES.
      LINE-COL2 = SY-INDEX.
      LINE-COL3 = SY-INDEX ** 2.
      INSERT LINE INTO TABLE ITAB.
    ENDDO.
    LINE-COL1 = 'B'.
    DO 3 TIMES.
      LINE-COL2 = 2 * SY-INDEX.
      LINE-COL3 = ( 2 * SY-INDEX ) ** 2.
      INSERT LINE INTO TABLE ITAB.
    ENDDO.
    SORT ITAB.
    LOOP AT ITAB INTO LINE.
      WRITE: / LINE-COL1, LINE-COL2, LINE-COL3.
      AT END OF COL1.
        SUM.
        ULINE.
        WRITE: / LINE-COL1, LINE-COL2, LINE-COL3.
        SKIP.
      ENDAT.
      AT LAST.
        SUM.
        ULINE.
        WRITE: / LINE-COL1, LINE-COL2, LINE-COL3.
      ENDAT.
    ENDLOOP.
    The output is:
    A 1 1
    A 2 4
    A          3          9
    A          6         14
    B          2          4
    B 4 16
    B 6 36
    B         12         56
            18         70
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9f1f35c111d1829f0000e829fbfe/frameset.htm

  • Creating new VM ends with Error code 3430 and 3040 in Hyper-V log. Does anyone have any insight into what might cause this?

    The new VM is being created via a P2V process run from SCVVM. It reaches a completion of 60% and dies. I asked about this in another question detail of the VVM can be seen at this link:
    http://social.technet.microsoft.com/Forums/en-US/virtualmachinemgrp2vv2v/thread/71aae7dc-13b5-46f1-b794-cc1b8085541f
    Running Win2008 R2 w/ Hyper-V role enabled & SCVVM 2008R2
    In any event I checked the Hyper-V logs to see if they might shead any light on the problem and there were two error messages associated with the attempted conversion. The first Event ID 3430
    Log Name:      Microsoft-Windows-Hyper-V-Worker-Admin
    Source:        Microsoft-Windows-Hyper-V-Worker
    Date:          5/23/2011 4:51:25 PM
    Event ID:      3430
    Task Category: None
    Level:         Error
    Keywords:     
    User:          NETWORK SERVICE
    Computer:      Virtual-Mgt.amrinc-corp.local
    Description:
    'test1' failed to set/change partition property: The system cannot find message text for message number 0xtest1 in the message file for 18568CA2-82E9-4A9F-B462-701D8FB4C447. '0x8007013D'.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Hyper-V-Worker" Guid="{51DDFA29-D5C8-4803-BE4B-2ECB715570FE}" />
        <EventID>3430</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2011-05-23T21:51:25.956775200Z" />
        <EventRecordID>1</EventRecordID>
        <Correlation />
        <Execution ProcessID="3316" ThreadID="2716" />
        <Channel>Microsoft-Windows-Hyper-V-Worker-Admin</Channel>
        <Computer>Virtual-Mgt.amrinc-corp.local</Computer>
        <Security UserID="S-1-5-20" />
      </System>
      <UserData>
        <VmlEventLog xmlns:auto-ns2="http://schemas.microsoft.com/win/2004/08/events" xmlns="http://www.microsoft.com/Windows/Virtualization/Events">
          <VmName>test1</VmName>
          <VmId>18568CA2-82E9-4A9F-B462-701D8FB4C447</VmId>
          <ErrorCodeString>%%2147942717</ErrorCodeString>
          <ErrorCode>0x8007013D</ErrorCode>
        </VmlEventLog>
      </UserData>
    </Event>
    And the second Event ID 3040
    Log Name:      Microsoft-Windows-Hyper-V-Worker-Admin
    Source:        Microsoft-Windows-Hyper-V-Worker
    Date:          5/23/2011 4:51:25 PM
    Event ID:      3040
    Task Category: None
    Level:         Error
    Keywords:     
    User:          NETWORK SERVICE
    Computer:      Virtual-Mgt.amrinc-corp.local
    Description:
    'test1' could not initialize. (Virtual machine ID 18568CA2-82E9-4A9F-B462-701D8FB4C447)
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Hyper-V-Worker" Guid="{51DDFA29-D5C8-4803-BE4B-2ECB715570FE}" />
        <EventID>3040</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2011-05-23T21:51:25.956775200Z" />
        <EventRecordID>2</EventRecordID>
        <Correlation />
        <Execution ProcessID="3316" ThreadID="2716" />
        <Channel>Microsoft-Windows-Hyper-V-Worker-Admin</Channel>
        <Computer>Virtual-Mgt.amrinc-corp.local</Computer>
        <Security UserID="S-1-5-20" />
      </System>
      <UserData>
        <VmInitialize xmlns:auto-ns2="http://schemas.microsoft.com/win/2004/08/events" xmlns="http://www.microsoft.com/Windows/Virtualization/Events">
          <VmName>test1</VmName>
          <VmId>18568CA2-82E9-4A9F-B462-701D8FB4C447</VmId>
        </VmInitialize>
      </UserData>
    </Event>
    I have blownout the server and reinstalled the operating system and SCVVM and applied all the current updates to no avail. I have the exact same issue again. The problem seem to be at least on the serface an authority problem because I have no problem creating
    new VM via the P2V process on an old Virtual Server running on Win2003R2.
    Oh yes I can create new virtual machines on the system in question and move them to the library as was suggested to verify in a Blog post so I am really wondering what the problem is?
    Configuration Analyzer Just gave me a warning about reporting not being setup on the VVM which it isn't so no suprise there?
    Any information that might help me figure this would be greatly appreciated

    I've looked at both threads, and there simply isn't enough information for me to tell you what is wrong.  Please collect a trace (instructions in General forum) and open a case with CSS.  CSS can provide more in depth analysis than what a forum
    post allows. 
    As a shot in the dark, I have seen the issue outlined in the following KB article cause this exact same error message and symptom,
    http://support.microsoft.com/kb/967902
    Best Regards, Mike Briggs [MSFT] -- posting provided "AS IS" with no warranties and confers no rights

  • AT NEW/AT END performance versus using temp variables.

    What would be more efficient?  Imagine you are looping through a table that contains sales information for many sales documents/sales groups/sales offices.  I need an AT  statement for each.  The amount of data that this report is HUGE so any performance would be noticed. 
    So, which would perform better?  Using some if statements along with temp variables or the AT statements?
    Regards,
    Davis

    You can use Control break statements.
    make sure you sorted the Table with the fields you are going to perform control breaks.
    and also those fields should be in the beginning or the fields changes should not controlled by any other fields.
    you need to use one extra work area to avoid '*' may be some cases you want some data from the work area.
    loop at itab.
    wa = itab.
    at new field.
    "here some fields which are next to control break fields will appear stars
    "so use work area here
    endat.
    endloop.

  • New error, "end of file"

    I'm a bit stumped by this one..
    <background> Been using CPS just fine for 3-4 months
    without any significant issues </background>
    It wasn't used for a few days, and now when I try to boot
    Contribute I get the error "end of file or no input:'Operation
    interrupted or timed out'" None of the server settings have
    changed.
    I am able to login to the web admin and test the LDAP bind,
    and it is working, but seems to be a bit slow. I can do lookups,
    and successfully test authentication. But again, it's slow.
    I'm wondering if it is timing out when using contribute,
    since it is slow. And is the issue the LDAP, or HTTPS, because the
    error says, "when trying to connect to https://mywebsite" Maybe my
    sys admin changed something in the firewall, LDAP, or AD. However I
    need to narrow this down to the service where the error is.
    TIA.
    John

    Just a follow for the thread archives. My suspicions about
    the issue having to do with timeouts was correct, however was out
    of my control. There were some changes with our AD Domain
    Controller (DC), and it was erring out. When using the web
    interface, I was in essence testing through DC1, but when working
    in another building and working with dreamweaver and Contribute I
    was hitting DC2 in the AD domain where my errors were occurring.
    Best of luck in solving your problem.
    John

Maybe you are looking for