Unable to read 2 datasets at a time

Hi all, This is the code i have written for reading the data from Two  Datasets at a time (RK.TXT is one dataset name and KP.TXT is another dataset name).But my program is reading the  RK.TXT Dataset but it is not reading KP.TXT  dataset. So, could you please guide me where iam doing the mistake......?
RK.TXT(ASC file) file  contains  :  1     P     RAMU
                                                 2     P      SIVA
                                                 3      c     DADA
KP.txt(ASC file) file contains :     8     C     GAN
                                                9      P      BUS
                                                10     p     puti
And the Code i have written is :
      PARAMETERS: P_FILE LIKE RLGRAP-FILENAME,
            P_TYPE LIKE RLGRAP-FILETYPE.
PARAMETERS: P1_FILE LIKE RLGRAP-FILENAME,
            P1_TYPE LIKE RLGRAP-FILETYPE.
DATA:BEGIN OF ITAB OCCURS 0,
     MATNR(18),
     WERKS(4),
     BUKRS(4),
     END OF ITAB.
DATA:BEGIN OF ITAB1 OCCURS 0,
     MATNR(18),
     WERKS(4),
     BUKRS(4),
     END OF ITAB1.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.
  CALL FUNCTION 'F4_FILENAME'
   EXPORTING
     PROGRAM_NAME        = SYST-CPROG
     DYNPRO_NUMBER       = SYST-DYNNR
  FIELD_NAME          = ' '
IMPORTING
     FILE_NAME           = P_FILE.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR P1_FILE.
  CALL FUNCTION 'F4_FILENAME'
   EXPORTING
     PROGRAM_NAME        = SYST-CPROG
     DYNPRO_NUMBER       = SYST-DYNNR
  FIELD_NAME          = ' '
IMPORTING
     FILE_NAME           = P1_FILE.
START-OF-SELECTION.
  DATA: P_FILE1 TYPE  STRING.
  DATA: P1_FILE1 TYPE  STRING.
  MOVE P_FILE TO P_FILE1.
  MOVE P1_FILE TO P1_FILE1.
    OPEN DATASET 'E:\USR\SAP\PRFCLOG\RK.TXT' FOR INPUT
    IN TEXT MODE ENCODING DEFAULT.
    IF SY-SUBRC  NE 0.
      WRITE:/10 'ERROR IN READING THE FILE'.
    ELSE.
      DO.
        READ DATASET 'E:\USR\SAP\PRFCLOG\RK.TXT'  INTO ITAB.
        IF SY-SUBRC EQ 0.
          APPEND ITAB.
        ELSE.
          EXIT.
        ENDIF.
      ENDDO.
    ENDIF.
  LOOP AT ITAB.
    WRITE:/4 ITAB-MATNR,30 ITAB-WERKS, 50 ITAB-BUKRS.
  ENDLOOP.
  CLOSE DATASET 'E:\USR\SAP\PRFCLOG\RK.TXT'.
*opening the Another File in read mode
  OPEN DATASET 'E:\USR\SAP\PRFCLOG\KP.TXT' FOR INPUT
    IN TEXT MODE ENCODING DEFAULT.
    IF SY-SUBRC  NE 0.
      WRITE:/10 'ERROR IN READING THE FILE'.
    ELSE.
      DO.
        READ DATASET 'E:\USR\SAP\PRFCLOG\KP.TXT'  INTO ITAB1.
        IF SY-SUBRC EQ 0.
          APPEND ITAB1.
        ELSE.
          EXIT.
        ENDIF.
      ENDDO.
    ENDIF.
  LOOP AT ITAB1.
    WRITE:/4 ITAB1-MATNR,30 ITAB1-WERKS, 50 ITAB1-BUKRS.
  ENDLOOP.
  CLOSE DATASET 'E:\USR\SAP\PRFCLOG\KP.TXT'.
Where Iam going Mistake......?
Tyanks in Advance
Krish...

Krish, try this:
REPORT  YROBTEST.
DATA: dataset_one LIKE rlgrap-filename VALUE '.prova1.txt',
      dataset_two LIKE rlgrap-filename VALUE '.prova2.txt'.
DATA: begin of itab occurs 10,
       line(100) TYPE C,
      end of itab.
TRY.
  OPEN DATASET dataset_one FOR INPUT IN TEXT MODE ENCODING DEFAULT.
  OPEN DATASET dataset_two FOR INPUT IN TEXT MODE ENCODING DEFAULT.
  DO.
    READ DATASET dataset_one INTO itab.
    IF sy-subrc NE 0.
      EXIT.
    ENDIF.
    APPEND itab.
  ENDDO.
  CLEAR itab. APPEND itab.   "Space-line to indicate that is another dset
  DO.
    READ DATASET dataset_two INTO itab.
    IF sy-subrc NE 0.
      EXIT.
    ENDIF.
    APPEND itab.
  ENDDO.
  CATCH: cx_sy_file_authority,
         cx_sy_too_many_files,
         cx_sy_file_open_mode.
endtry.
  CLOSE DATASET dataset_one.
  CLOSE DATASET dataset_two.
Hope this helps,
R.

Similar Messages

  • Unable to read file from application server

    Hi guys,
    I am reading file(could be any extension) from application server,but some time i am successfuly able to read file and sometime unable to read,why its happening .
    my code is here
    OPEN DATASET E_FILE FOR INPUT IN  BINARY MODE . "
      IF SY-SUBRC = 0.
        DO .
          READ DATASET E_FILE INTO GS_PDF_TAB.
          IF SY-SUBRC = 0.
            APPEND GS_PDF_TAB TO GT_PDF_TAB.
          ELSE.
            EXIT.
          ENDIF.
        ENDDO.
        CLOSE DATASET E_FILE.
      ENDIF.
    Thanks
    Ankur Sharma

    Hi,
    What actually happens?  Do you get a short dump?  Do you get a return code ne 0?  Does it run fine but you get no data in your table?
    We aren't mind-readers and can't help much without more information.
    Try using transaction AL11 to see if you access the files you are trying to open.
    Gareth.

  • Unable to capture the Citrix network response time using OATS Load testing.

    Unable to capture the Citrix network response time using OATS Load testing. Here is the scenario " in our project users logs into Citrix network and select the Hyperion application and does the Transaction and the Clients wants us to simulate the same scenario for load testing. We have scripted starting from Citrix Login and then launching Hyperion application. But the time taken to launch the Hyperion Application from Citrix network has not been captured whereas Hyperion Transaction time have been recorded. Can any help to resolve this issue ASAP?

    Hi keerthi,
    1. I have pasted the code for the first issue
    web
                             .button(
                                       122,
                                       "/web:window[@index='0' or @title='Manage Network Targets - Oracle Communications Order and Service Management - Order and Service Management']/web:document[@index='0' or @name='1824fhkchs_6']/web:form[@id='pt1:_UISform1' or @name='pt1:_UISform1' or @index='0']/web:button[@id='pt1:MA:0:n1:1:pt1:qryId1::search' or @value='Search' or @index='3']")
                             .click();
                        adf
                        .table(
                                  "/web:window[@index='0' or @title='Manage Network Targets - Oracle Communications Order and Service Management - Order and Service Management']/web:document[@index='0' or @name='1c9nk1ryzv_6']/web:ADFTable[@absoluteLocator='pt1:MA:n1:pt1:pnlcltn:resId1']")
                        .columnSort("Ascending", "Name" );
         }

  • Error: Unable to read footer file

    Hoping someone out there can help me. I get this error on
    everypage in my site and have no idea how to stop it.
    Error: Unable to read footer file
    The error does not show up when I preview inside dreamweaver
    but only rears its ugly head after I post the site up on the
    internet. I have searched for hours through the Dreamweaver menus
    and can not find these elusive footers and have no idea where they
    are coming from or what footer file it is trying to read.. Please
    help. This probably has a simple solution and I am just not able to
    understand it. Thank you.

    sdrouillard wrote:
    > This probably has a simple solution and I am just not
    able to understand
    > it.
    Possibly, but without a URL we can't comment. Post it, and
    we'll see.
    At a guess, sounds like an include file is missing. Are you
    on some sort of
    free hosting plan where the host puts some adverts in the
    footer? If that
    file is removed from your site directory you might get the
    error you've
    mentioned (at least, that was the case on the only other time
    I've seen this
    error)
    Regards,
    Pete.
    Peter Connolly
    http://www.acutecomputing.co.uk
    Derby
    UK
    Skype ID: acutecomputing

  • TcpListener not working on Azure: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host

    Hi Everybody,
    i'm playing a little bit with Windows Azure and I'm blocked with a really simple issue (or maybe not).
    I've created a Cloud Service containing one simple Worker Role. I've configured an EndPoint in the WorkerRole configuration, which allows Input connections via tcp on port 10100.
    Here the ServiceDefinition.csdef file content:
    <?xml version="1.0" encoding="utf-8"?>
    <ServiceDefinition name="EmacCloudService" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition" schemaVersion="2014-01.2.3">
    <WorkerRole name="TcpListenerWorkerRole" vmsize="Small">
    <Imports>
    <Import moduleName="Diagnostics" />
    <Import moduleName="RemoteAccess" />
    <Import moduleName="RemoteForwarder" />
    </Imports>
    <Endpoints>
    <InputEndpoint name="Endpoint1" protocol="tcp" port="10100" />
    </Endpoints>
    </WorkerRole>
    </ServiceDefinition>
    This WorkerRole is just creating a TcpListener object listening to the configured port (using the RoleEnvironment instance) and waits for an incoming connection. It receives a message and returns a hardcoded message (see code snippet below).
    namespace TcpListenerWorkerRole
    using System;
    using System.Net;
    using Microsoft.WindowsAzure.ServiceRuntime;
    using System.Net.Sockets;
    using System.Text;
    using Roche.Emac.Infrastructure;
    using System.IO;
    using System.Threading.Tasks;
    using Microsoft.WindowsAzure.Diagnostics;
    using System.Linq;
    public class WorkerRole : RoleEntryPoint
    public override void Run()
    // This is a sample worker implementation. Replace with your logic.
    LoggingProvider.Logger.Info("TcpListenerWorkerRole entry point called");
    TcpListener listener = null;
    try
    listener = new TcpListener(RoleEnvironment.CurrentRoleInstance.InstanceEndpoints["Endpoint1"].IPEndpoint);
    listener.ExclusiveAddressUse = false;
    listener.Start();
    LoggingProvider.Logger.Info(string.Format("TcpListener started at '{0}:{1}'", RoleEnvironment.CurrentRoleInstance.InstanceEndpoints["Endpoint1"].IPEndpoint.Address, RoleEnvironment.CurrentRoleInstance.InstanceEndpoints["Endpoint1"].IPEndpoint.Port));
    catch (SocketException ex)
    LoggingProvider.Logger.Exception("Unexpected exception while creating the TcpListener", ex);
    return;
    while (true)
    Task.Run(async () =>
    TcpClient client = await listener.AcceptTcpClientAsync();
    LoggingProvider.Logger.Info(string.Format("Client connected. Address='{0}'", client.Client.RemoteEndPoint.ToString()));
    NetworkStream networkStream = client.GetStream();
    StreamReader reader = new StreamReader(networkStream);
    StreamWriter writer = new StreamWriter(networkStream);
    writer.AutoFlush = true;
    string input = string.Empty;
    while (true)
    try
    char[] receivedChars = new char[client.ReceiveBufferSize];
    LoggingProvider.Logger.Info("Buffer size: " + client.ReceiveBufferSize);
    int readedChars = reader.Read(receivedChars, 0, client.ReceiveBufferSize);
    char[] validChars = new char[readedChars];
    Array.ConstrainedCopy(receivedChars, 0, validChars, 0, readedChars);
    input = new string(validChars);
    LoggingProvider.Logger.Info("This is what the host sent to you: " + input+". Readed chars=" + readedChars);
    try
    string orderResultFormat = Encoding.ASCII.GetString(Encoding.ASCII.GetBytes("\xB")) + @"MSH|^~\&|Instrument|Laboratory|LIS|LIS Facility|20120427123212+0100||ORL^O34^ORL_O34| 11|P|2.5.1||||||UNICODE UTF-8|||LAB-28^IHE" + Environment.NewLine + "MSA|AA|10" + Environment.NewLine + @"PID|||patientId||""""||19700101|M" + Environment.NewLine + "SPM|1|sampleId&ROCHE||ORH^^HL70487|||||||P^^HL70369" + Environment.NewLine + "SAC|||sampleId" + Environment.NewLine + "ORC|OK|orderId|||SC||||20120427123212" + Encoding.ASCII.GetString(Encoding.ASCII.GetBytes("\x1c\x0d"));
    writer.Write(orderResultFormat);
    catch (Exception e)
    LoggingProvider.Logger.Exception("Unexpected exception while writting the response", e);
    client.Close();
    break;
    catch (Exception ex)
    LoggingProvider.Logger.Exception("Unexpected exception while Reading the request", ex);
    client.Close();
    break;
    }).Wait();
    public override bool OnStart()
    // Set the maximum number of concurrent connections
    ServicePointManager.DefaultConnectionLimit = 12;
    DiagnosticMonitor.Start("Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString");
    RoleEnvironment.Changing += RoleEnvironment_Changing;
    return base.OnStart();
    private void RoleEnvironment_Changing(object sender, RoleEnvironmentChangingEventArgs e)
    // If a configuration setting is changing
    LoggingProvider.Logger.Info("RoleEnvironment is changing....");
    if (e.Changes.Any(change => change is RoleEnvironmentConfigurationSettingChange))
    // Set e.Cancel to true to restart this role instance
    e.Cancel = true;
    As you can see, nothing special is being done. I've used the RoleEnvironment.CurrentRoleInstance.InstanceEndpoints to retrieve the current IPEndpoint.
    Running the Cloud Service in the Windows Azure Compute Emulator everything works fine, but when I deploy it in Azure, then I receive the following Exception:
    2014-08-06 14:55:23,816 [Role Start Thread] INFO EMAC Log - TcpListenerWorkerRole entry point called
    2014-08-06 14:55:24,145 [Role Start Thread] INFO EMAC Log - TcpListener started at '100.74.10.55:10100'
    2014-08-06 15:06:19,375 [9] INFO EMAC Log - Client connected. Address='196.3.50.254:51934'
    2014-08-06 15:06:19,375 [9] INFO EMAC Log - Buffer size: 65536
    2014-08-06 15:06:45,491 [9] FATAL EMAC Log - Unexpected exception while Reading the request
    System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host
    at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)
    --- End of inner exception stack trace ---
    at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)
    at System.IO.StreamReader.ReadBuffer(Char[] userBuffer, Int32 userOffset, Int32 desiredChars, Boolean& readToUserBuffer)
    at System.IO.StreamReader.Read(Char[] buffer, Int32 index, Int32 count)
    at TcpListenerWorkerRole.WorkerRole.<>c__DisplayClass0.<<Run>b__2>d__0.MoveNext() in C:\Work\Own projects\EMAC\AzureCloudEmac\TcpListenerWorkerRole\WorkerRole.cs:line 60
    I've already tried to configure an internal port in the ServiceDefinition.csdef file, but I get the same exception there.
    As you can see, the client can connect to the service (the log shows the message: Client connected with the address) but when it tries to read the bytes from the stream, it throws the exception.
    For me it seems like Azure is preventing the retrieval of the message. I've tried to disable the Firewall in the VM in Azure and the same continues happening.
    I'm using Windows Azure SDK 2.3
    Any help will be very very welcome!
    Thanks in advance!
    Javier
    En caso de que la respuesta te sirva, porfavor, márcala como válida
    Muchas gracias y suerte!
    Javier Jiménez Roda
    Blog: http://jimenezroda.wordpress.com

    hi Javier,
    I changed your code like this:
    private AutoResetEvent connectionWaitHandle = new AutoResetEvent(false);
    public override void Run()
    TcpListener listener = null;
    try
    listener = new TcpListener(
    RoleEnvironment.CurrentRoleInstance.InstanceEndpoints["Endpoint"].IPEndpoint);
    listener.ExclusiveAddressUse = false;
    listener.Start();
    catch (SocketException se)
    return;
    while (true)
    IAsyncResult result = listener.BeginAcceptTcpClient(HandleAsyncConnection, listener);
    connectionWaitHandle.WaitOne();
    The HandleAsync method is your "While (true)" code:
    private void HandleAsyncConnection(IAsyncResult result)
    TcpListener listener = (TcpListener)result.AsyncState;
    TcpClient client = listener.EndAcceptTcpClient(result);
    connectionWaitHandle.Set();
    NetworkStream netStream = client.GetStream();
    StreamReader reader = new StreamReader(netStream);
    StreamWriter writer = new StreamWriter(netStream);
    writer.AutoFlush = true;
    string input = string.Empty;
    try
    char[] receivedChars = new char[client.ReceiveBufferSize];
    // LoggingProvider.Logger.Info("Buffer size: " + client.ReceiveBufferSize);
    int readedChars = reader.Read(receivedChars, 0, client.ReceiveBufferSize);
    char[] validChars = new char[readedChars];
    Array.ConstrainedCopy(receivedChars, 0, validChars, 0, readedChars);
    input = new string(validChars);
    // LoggingProvider.Logger.Info("This is what the host sent to you: " + input + ". Readed chars=" + readedChars);
    try
    string orderResultFormat = Encoding.ASCII.GetString(Encoding.ASCII.GetBytes("\xB")) + @"MSH|^~\&|Instrument|Laboratory|LIS|LIS Facility|20120427123212+0100||ORL^O34^ORL_O34| 11|P|2.5.1||||||UNICODE UTF-8|||LAB-28^IHE" + Environment.NewLine + "MSA|AA|10" + Environment.NewLine + @"PID|||patientId||""""||19700101|M" + Environment.NewLine + "SPM|1|sampleId&ROCHE||ORH^^HL70487|||||||P^^HL70369" + Environment.NewLine + "SAC|||sampleId" + Environment.NewLine + "ORC|OK|orderId|||SC||||20120427123212" + Encoding.ASCII.GetString(Encoding.ASCII.GetBytes("\x1c\x0d"));
    writer.Write(orderResultFormat);
    catch (Exception e)
    // LoggingProvider.Logger.Exception("Unexpected exception while writting the response", e);
    client.Close();
    catch (Exception ex)
    //LoggingProvider.Logger.Exception("Unexpected exception while Reading the request", ex);
    client.Close();
    Please try it. For this error message, I suggest you could refer to this thread (http://stackoverflow.com/questions/6173763/using-windows-azure-to-use-as-a-tcp-server
    ) and this post (http://stackoverflow.com/a/5420788).
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • My App Store won't allow me to download any apps. It says such and such app is unable to download try again later  every time. I have enough storage all my devices are up to date on all updates  please help

    My App Store won't allow me to download any apps. It says such and such app is unable to download try again later  every time. I have enough storage all my devices are up to date on all updates  please help

    I am a librarian at a 1:1 iPad school and we are having this problem with all ~3000 student iPads as well at ~300 teacher iPads.  This is extremely frustrating.  I have tried suggested fixes found on other discussion boards but none have worked.

  • When I open my gmail in firefox, it instantly directs my gmail to the gmail calendars. I am unable to read my gmail on firefox, but I can read it on safari

    When I open my gmail in firefox, it instantly directs my gmail to the gmail calendars. I am unable to read my gmail on firefox, but I can read it on safari. Please help.
    == User Agent ==
    Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16

    Is there a solution for this?
    I just opened Firefox for the first time in a couple of weeks and am experiencing the same problem. I see my Gmail inbox briefly before being redirected to the calendar. Clicking the back button produces the same result.
    Very frustrating.

  • I am unable to restore my backups from my Time Machine

    MacBook Pro – My reformatted system that won't restore from my time machine - HELP PLEASE
    I loaded Lion when it first came     out and all my troubles started. (It was the same on my 24” iMac).     Mail particularly hardly worked on either machine after loading up     Lion but that's another story and I wish I had never upgraded to      Lion.
    I am now in China and took my     MacBook Pro with me
    To avoid mail problems I     eventually used web-mail as all I saw was the coloured spinning     wheel all day long otherwise
    Gradually the machine got slower     and slower and I saw that coloured wheel more and more
    Eventually a message came up to     say my Bootable Drive was almost full.
    I checked and it wasn't full of MY     documents.  I see on this forum it's an Apple problem - reformatting and restoring user files will not help the problem
    On 1st November I did a     Time Machine backup that completed OK
    Since then I had removed ALL     documents safely to my Sony Vaio that we bought instead of another     Apple Mac.
    Despite removing ALL documents and      emptying the trash for two users the HDD continued to fill up     rapidly
    I decided to do one more last     backup on Time Machine so I could reformat the system – This     backup never completed
    I had to reformat the system as it     was totally not useable by now
    I had expected to put a Snow     Leopard DVD in and restore my system without any problem - I have done this before on my iMac
    I was unable to point the restore     to my time machine as it has a WD lock partition and Apple restores     don't recognise the drive may be locked!
    No problem I thought, as I will do     it later through the tools utility called Migration Assistant
    I have tried several times with     Leopard and Snow Leopard but cannot get the utility to work, as it     is obviously picking up the corrupt “LAST” backup (This is a shortcut to the 6th November uncompleted backup
    I tried to move the 1st November one to the last and move the other out as “”Corrupt”,     but we are not allowed to change time machine files.  Brilliant idea     but Apple stopped it!
    So, I loaded Snow Leopard and got     it to see my Time Machine Files and restored first the Applications     – No problem
    Then Library – This failed as     “You haven't permission” - What!  Why?  This is MY Laptop and MY     files.  Apple have to sort out this permission problem.  I have had     it three and a half years and it has driven me mad.  It's a flawed     way of working in my opinion.  It took me three years to empty the     trash because of it.
    I then tried to restore the "System" folder which also has a library folder and that failed the same  - Why     doesn't Time Machine restore what it's told to?  Is it because I     called the MacBook Pro  something different?  It saw the backup     files OK and gave me the option of the previous MacBook or my iMac     that I also had on the same drive. I chose the MacBook but it would     NOT restore the system.
    Conclusion
    So, I am stuck in China without my     MacBook Pro and unable to restore my system and unable to retrieve     the 1st November backup which was taken properly.
    This means that I cannot run any     programmes and do any work
    I have wasted two weeks altogether     on all the combined problems and without a usable system
    Any ideas how to restore back to     the 1st November please?  Thanks in advance!

    UpdateAfter Advice from Apple
    RESTOREPROBLEMS
    I spoke from China on the1st December to a very helpful Senior Apple Technical person.  He gave me my guidelines for a successful restore and we hung up.
    Unfortunately, the backup hadn't enough space, so I repartitioned the hard drive and THEN followed his instructions.
    At 6 am there was amessage to say it had restored OK (See screen-shot to say it wassuccessful) and so, I pressed OK to restart the MacBook Pro.
    All I got was the same as before - a grey spinning wheel.
    To cut a very long storyshort, I wasted the whole day trying to make a backup work to no avail. I came to the conclusion that this is yet another example of Lion not working, as I have never had this problem with Leopard and Snow Leopard.
    I then got a screen shot of a message never seen before and that may help Apple ….
    So, I sent them that screen-shot. Restarting did nothing of course.
    Timeto stop the nonsense!
    To cut my losses of many days wasted time over the last 5 weeks, I gave up trying to restore and as I have all the data safely tucked away on an external drive, Irebuilt the MacBook Pro with just Leopard.
    I then put all theApplications back on one by one and it runs perfectly. Luckily I also had these with me in China!
    Ablisteringly quick system on the old Leopard
    In fact, Pages and AdobeCS4 are how they were when we purchased the machine 3.5 years ago -Blisteringly quick.
    I have a mega large Pages Newsletter about China that I think was over 20 Mb before I shrank it, as it had many photos. This brought the MacBook running Lion to it's knees. On my rebuilt MacBook Pro running Leopard, it ran blisteringly quickly,even before shrinking it.
    I managed to finish thenewsletter that I had started on the 21st October and we bulk emailedit out as a PDF 1st December from my MacBook Pro running Leopard.
    In fact, the machine isrunning so well, that I think I will stick with Leopard.
    LION
    I always suspected the problem with Lion was it was constantly doing SAVES all the time that were in the foreground and not the background that I was unable to type in productively. My own opinion is that the developers had been trying to be TOO clever with Lion and for a busy person like me it crippled my productivity that went down by 50% and then eventually to ZERO %.
    CONCLUSION
    I would like to thank the Apple Technical person for his efforts on my behalf and felt that he should receive this update to close the case.
    I stated that hopefully he can pass my observations to the LION TEAM Management or to whoever in Apple needs to see this feedback. The dozen or so problems with Lion have already caused us to go and buy a Sony Vaio instead of another MacBook Pro.
    This anti-Apple attitude is by a person that for over 3 years was utterly and completely soldon Apple. No more, as Lion killed all my enthusiasm for Apple. My colleague as well. I asked the Apple Technical person to PLEASE pass this on!  Whether he passed the report on I will never know!

  • UNABLE TO LOCATE THE THE LABVIEW RUN-TIME ENGINE.LVBROKERAUX71

    UNABLE TO LOCATE THE THE LABVIEW RUN-TIME ENGINE.LVBROKERAUX71 REQUIRES A VERSION 7.1 (OR COMPATIBLE) LABVIEW RUN-TIME ENGINE。PLEASE CONTACT THE VENDOR OF LVBROKERAUX71 TO CORRECT THIS PROBLEM
    Uninstalled DAQ and reinstalled.  MAX still throws an error. 
    Any Isead besides uninstalling 3/4 of my software?
    Merry Christmas!
    Matthew Fitzsimons
    Certified LabVIEW Architect
    LabVIEW 6.1 ... 2013, LVOOP, GOOP, TestStand, DAQ, and Vison

    To clean up your system, you will need to uninstall the LabVIEW 7.1 run-time engine, and the "LVBroker," and the "LVBrokerAux71" components using the MSI Blast utility.  To obtain this utility, please create a service request for phone or e-mail support, and contact one of our Applications Engineers about this issue.  Thank you!

  • We're sorry, but we are unable to complete your request at this time. Please try again in a few minutes or start over now.

    Trying to send my iPhone 5 in for repair, keep getting this error:
    "We're sorry, but we are unable to complete your request at this time.
    Please try again in a few minutes or start over now.
    (system.99)"
    Tried using different browsers, and waiting few minutes, no joy : (
    Any Ideas?

    Yeah, it kept doing it when I was trying to change the delivery address, changed it on my apple main apple profile adress and then it worked on the repair page.

  • When I start the program I instantly see this message:  "Adobe Bridge encountered a problem and is unable to read the cache, please try purging the central cache in cache preferences to correct the situation".  I have tried this and it only results in a s

    When I start the program I instantly see this message:  "Adobe Bridge encountered a problem and is unable to read the cache, please try purging the central cache in cache preferences to correct the situation".  I have tried this and it only results in a stalled/locked program.  I have tried restarting my machine multiple times and tried reconfiguring how the cache is managed.  Do you have anyone who could walk me through each step to correct this problem which just started two days ago.  I have owned this program for at least a year now...

    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Music Downloads - unable to read or write to disk.

    Hi, I'm new to iPods, and when I try to download music
    I get the message Unable to update iPod, unable to read / write to disk....
    Originally I had no problems now unable to download more than one song at a time, and only the manually... it's taking ages...
    Does anyone have any ideas? I've restored, reset everything and downloaded the latest software....

    Hi,
    Unless you are using OCR (optical character recognition) software when doing the scan, the result of scanning a document is only an image, a picture of the document. Since you only have a picture of the document at this point, the only thing that you can do with it in Word is to insert the image into the document. As an image, you won't be able to edit or search the text that appears in the image. You need to run OCR software to examine the image and convert the images of the characters into editable text. If you are already using OCR software, reply back and let me know which application you are using, and I'll try to help you further.
    Hope this helps,
    Ken

  • Trying to access Netflixs and pick movie but I get "Unable to load this content at this time"

    trying to access Netflixs and pick movie but I get "Unable to load this content at this time"

    This earlier posting worked for me:
    "This worked for me without having to reset my Apple TV universe: Press Menu and Down Arrow keys simultaneously for 6 seconds until the light flashes rapidly."
    Thank you!

  • "Unable to read file" error in Excel 2010 when downloading .xls file from IE11

    We have lots of reports that have links for our users to be able to download report results in Excel format. We accomplish this by using the Excel mime type in our .asp pages. Sporadically, we are seeing "Unable to read file" errors in Excel 2010
    after choosing Open from the IE11 save dialog. Choosing Save/Save As and the file will open just fine.
    Also, we can sometimes cause the error to occur more frequently by switching windows during the time when the file is downloading.
    If the file is opened directly from /Temporary Internet Files then it opens just fine.
    Window 7 64-bit
    Thanks in advance!

    Hi,
    I found you replied in a similar thread, did you try the workaround (Reset the IE) that provided there? Did you change a browser to test?
    Then, I suggest we use Process Monitor to do further troubleshooting. Please collect all the actions of IE.exe and Excel.exe, and check the if there are some
    error message/code during you open XLS file from IE 11.
    Hope it's helpful.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Unable to read attribute of type TABLE

    Hello IDM Gurus,
    I was having some trouble reading data in the source tab from a temporary table created in a FROM AD Pass; specifically I am unable to read from an attrribute of type TABLE, which is being used for the memberOf attribute when reading members of a group from AD. I don't get any errors in the FROM Pass, nor do I get any errors when trying to read all other data from the temporary table; I'm able to read all data except the memberOf attribute of type TABLE; I've tried different variations of SELECT statements as well as different possible values in the destination tab but it still hasn't resulted in valid memberOf values from the temporary table.
    I thought this would be a lot simpler than it's turned out to be; I would appreciate any help I could get on this issue.
    Thanks a lot in advance!
    Best regards,
    Sandeep

    Hi Achim,
    Thank you for your quick response! I was actually able to spend a bit of time on the table itself and after experimenting a bit I managed to work out a query to correlate the memberOf values with the appropriate keys from the two separate tables in the same pass.
    Thanks again for your suggestions!
    Best regards,
    Sandeep

Maybe you are looking for

  • Issues with my connection when gaming (Insurgency)

    Hello, I just bought the MSI GT72 2QE. I am very pleased with de specs like the Geforce GTX 980m and the i4710hq but there is an issue that is bothering me some days now. When i am playing my beloved game Insurgency, i get ping spikes all the time. S

  • Jpeg files on camera are not recognized by iphoto and won't import

    Kodak EasyShare Z712 IS is connected via USB and recognized by iPhoto, however none of these files are importing because the files are unreadable and in an unrecognized format. An example file name and ext that is not importing is "100_2327.JPG". I d

  • Quickie: Write to measurement file VI, how to create new file?

    I am using the write to measurement file express VI in my code and I have wired into it a control that sets the location to save the measurement file The only problem is the measurement file has to exist first!! I cant for example, from the front pan

  • Bad bind variable & best practice for delete

    I am working with three tables and very new to SQL. I need to create a procedure that will accept an ID and go through two sub tables and delete child records. Item is the main table. I am passing in the ID into the procedure and I want to use it as

  • Images in Finder/Coverflow SERIOUSLY pixelated

    Has anyone had issues with coverflow in Finder seriously pixelating images? I'm having it in random folders (but not all) and I cannot find any rhyme or reason for it. Is Leopard generating previews and just not done yet maybe? Here's an example of w