Runtime error : Time out

Hi experts...
I am trying to execute one program in production.. its giving me runtime error timed out....
I am giving you line on which it is showing runtime error...
Please check it n suggest me how can we optimize this code to avoid the same error...
SELECT afko~aufnr afko~aufpl afko~rueck afpo~matnr
  INTO   CORRESPONDING FIELDS OF TABLE it_temp_orders
  FROM   afko
  INNER  JOIN afpo ON
         afpo~aufnr = afko~aufnr
  WHERE  afko~aufnr  IN  s_aufnr
  AND    afko~dispo  IN  s_dispo
  AND    afpo~matnr  IN  s_matnr
  AND    afpo~dwerk  IN  s_werks
  AND    afpo~dauat  IN  s_auart.
  SORT it_temp_orders BY aufnr aufpl matnr rueck.
Regards

Hi,
break this into two select queries......
use the below code to do the same....
data : begin of fs_afko
              aufnr type afko-aufnr,
              aufpl type afko-aufpl,
              reuck type afko-reuck,
        end of fs_afko.
data : Begin of fs_afpo,
            aufnr type afpo-aufnr,
           matnr type afpo-matnr,
        End of fs_afpo.
data : t_afko type table of fs_afko,
         t_afpo type table of fs_afpo.
SELECT aufnr aufpl rueck
  INTO   TABLE t_afko
  FROM   afko
  WHERE  afko~aufnr  IN  s_aufnr
  AND    afko~dispo  IN  s_dispo.
SELECT afpo~matnr
  INTO   TABLE t_afpo
  FROM   afpo
  FOR ALL ENTRIES IN t_afko
  WHERE  aufnr  =  t_afko-aufnr
  AND    afpo~matnr  IN  s_matnr
  AND    afpo~dwerk  IN  s_werks
  AND    afpo~dauat  IN  s_auart.
loop at t_afko into fs_afko.
  loop at t_afpo into fs_afpo where aufnr = fs_afko-aufnr.
    move-corresponding fs_afko to fs_temp_orders.
    move-corresponding fs_afpo to fs_temp_orders.
    append fs_temp_orders to it_temp_orders
  endloop.
endloop.
Regards,
Siddarth

Similar Messages

  • Runtime Error: "Time out" for RFC.

    Hi,
      During RFC, I am getting a runtime error stating "Timeout error".  Even while the job is run in background I am getting this error. Seems like the time for RFC task is set to 600 secs.
    How to resolve this and is there any way we can see time limit set for different tasks?
    thanks,
    Arun

    Hi,
       More info:  I am using multithreading or mass processing technique, so the logic has to be written in FM which has RFC enabled. So while the task is in process in background it exceeds the time limit set for RFC i.e 600secs.
    Sample code:
        CALL FUNCTION 'ZZ_ABC'
          STARTING NEW TASK gv_task
          DESTINATION IN GROUP gv_grp
          PERFORMING rcvb_endprocess ON END OF TASK
          EXPORTING
            e_batch_date = gv_batch_date
    FORM rcvb_endprocess                                        "#EC CALLED
                  USING gv_task  TYPE any.                      "#EC NEEDED
      RECEIVE RESULTS FROM FUNCTION 'ZZ_ABC'
       TABLES
            t_receivables = it_receivables.
      gv_rcvd = gv_rcvd + 1.
    ENDFORM.                    " RCVB_ENDPROCESS

  • C-runtime error occured "Out of Memory"

    Cannot display the selected records when an end user clicks the (>*) button next to the record count. Instead of displaying all the records based on the prompted selection criteria, the record count (28,338) is shown by itself without the data after a few minutes of waiting. Above the record count and selected prompts, "!error: A C-runtime error occurred (Out of Memory)" is shown twice. No data.
    So long as the end user does not click the (>*) button next to the record count, everything works okay. End user can download the entire set of selected records to a tab-delimited .csv file without any problem. End user can also scroll thru the 28,338 records, one page at a time. Using more restrictive selection criteria, I can view several thousand records at a time. No problem until the (>*) button is clicked when 28,338 records are requested.
    We recently doubled the memory on our desktops from 1GB to 2GB. No help attempting to display all records.
    Problem reproduced at will in both OBIEE 10.1.3.3.2 and 10.1.3.4.1 environments using either IE 8.0 or Firefox 3.6 on Windows XP Pro.
    How can we reconfigure our environment to display the 28,338 records on a desktop without running Windows XP out of memory?

    The C:\OracleBIData\tmp directory on the desktop appears empty before, during and after the query.
    In addition in Windows Task Manager, the Networking tab for the Local Area Connection shows a steady, but less than 0.5%, activity stream for the duration. CPU use and paging is also minimal.
    Edited by: bobatx on Dec 23, 2010 10:04 AM

  • I get error time out connection

    i want to upgrade my ipad 1 software (i have 4.2.1 version and i want to upgrade it to a next version, as Itunes store suggests me every time i open it) but after the usual time of 13 minutes upgrade, i get this error: time out connection, contact your provider or control your connection (but it does function elsewhere)
    how can i solve it? (excuse my bad english)

    For me it worked when I switched the virus protection off while doing the installation. After you run the installation you then switch the virus protection back on.
    Hope it works for you too!

  • Runtime error(Time limit exceeds)after executing select query

    Dear experts, whenever i executing the select query in this zprogram i am getting runtime error that time limit exceeds.i am using inner join and into table.after that also i am geetting error. how can i resolve it??
    SELECT LIKP~VBELN LIKP~WADAT_IST LIKP~VEHICLE_NO LIKP~TRNAME
              LIKP~VEHI_TYPE LIKP~LR_NO LIKP~ANZPK LIKP~W_BILL_NO
              LIKP~SEALNO1                                       " Seal NO1
              LIKP~SEALNO2                                       " Seal NO2
              LIPS~LFIMG
              VBRP~VBELN VBRP~VGBEL VBRP~MATNR VBRP~AUBEL VBRP~FKIMG
              VBAK~AUART
              VBRK~FKART VBRK~KNUMV VBRK~FKSTO
              FROM LIKP INNER JOIN LIPS ON LIKP~VBELN EQ LIPS~VBELN
                        INNER JOIN VBRP ON LIKP~VBELN EQ VBRP~VGBEL
                        INNER JOIN VBAK ON VBRP~AUBEL EQ VBAK~VBELN
                        INNER JOIN VBRK ON VBRP~VBELN EQ VBRK~VBELN
              INTO TABLE  I_FINAL_TEMP
              WHERE LIKP~VSTEL = '5100' AND
                 LIKP~WADAT_IST IN S_WADAT  AND
                    VBRP~AUBEL IN S_AUBEL AND
                    VBAK~AUART IN ('ZJOB','ZOR') AND
                    VBRK~FKART IN S_FKART AND
    *               VBRK~FKART IN ('ZF8','ZF2','ZS1') AND
                    VBRK~FKSTO NE 'X'.
    When I am debugging the select query.the cursor will not go to next step.after 15-20 minutes i am getting runtime error(time limit exceeds).
    how can i resolve it for that scenario??

    Looks like whole SD flow you trying to fetch in single query
    First you check the database statistic of these table are upto date in system ( Check with basis team )
    if this query was working fine earlier.
    Most of table involved are huge volume tables which queried with any primary key
    Any secondary index on created for LIKP on VSTEL WADET ?
    My suggestion would be split the selection queries and make use of primary or existing secondary index to fetch the desired result if possible. For testing purpose split the queries and find which is taking more time and which needs index by taking squel trace in ST05.
    Also take ST05 trace of this query in debugger ( New debugger -> special tool -> trace > ST05/SE30)

  • Distiller Start Error, Time-out occured

    We are using Acrobat distiller 7 in our Formscape/Bottomline
    Project. The incoming file is a pdf  from JDE OneWorld XE.  WHen Formscape tries to create the pdf, it has an error that says "Distiller start error. time-out occured." 
    Has anyone else had this issue? What could be causing it? and How do I fix it? Distiller 9 doesn't work with Formscape/Bottomline.  I haven't tried 8

    This forum is for issues relating to Distiller Server, not Acrobat Distiller. Please repost in the Acrobat Windows forum.

  • HT5622 When I tried to use my saved credit card, I made an error & it didn't work. Now, although the error is corrected, I keep getting a message that the card is declined. Can I fix this, or will the error time out?

    When I tried to use my saved credit card, I made an error & it didn't work. Now, although the error is corrected, I keep getting a message that the card is declined. Can I fix this, or will the error time out?

    Hello KGDJ,
    Thanks for using Apple Support Communities.
    When there is a mismatch between the iTunes Store's records and your credit card company's records, you will receive an error message
    For more information on this, take a look at:
    iTunes Store: My credit card's security code or zip code does not match my bank's records
    http://support.apple.com/kb/ts1646
    If the issue persists, contact your credit card company and verify that they and any company they use to process credit card authorizations have the correct information on file.
    Best of luck,
    Mario

  • Query0;Runtime error time limit exceeded,with parallel processing via RFC

    Dear experts,
    I have created a report on 0cca_c11 cube and while running my report when i give cost center group which contains many cost centers , my report executes for long time and at last gives message
    "Error while reading data;navigation is possible" and
    "Query0;Runtime error time limit exceeded,with parallel processing via RFC"
    please tell me what is the problem and how can i solve this
    Regards
    Shweta

    hI,
    Execute the Query in RSRT with Execute and Debug option.
    Select SQL statements toknow where exactly it's taking time.
    Let us know the details once you done.
    Reg
    Pra

  • Error time out to connect FTP server

    Hi Experts,
    I am getting the error in receiver communication channel (FTP) as :
    An error occurred while connecting to the FTP server ''. The FTP server returned the following error message: 'com.sap.aii.adapter.file.ftp.FTPEx: The control connection to the FTP server ""  timed out while reading the server reply.'. For details, contact your FTP server vendor.
    Getting this error for a particular interface. Changed the time out parameter but not working.
    the same IP address is used for same receiver but different interface and it is in green status.
    tried to restart the adapter but same time out error.
    Same configuation is done for two receiver channels .. but getting above error for a particular interface.Please help.
    Thanks,
    Swapnashree

    Hi Swapna,
        If you are facing problem with only one interface then you make some dummy changes in configuration(ID) to that perticular channel and activate.
    After doing this you just restart your communication channel and check if you have any luck.....
    Also check if you have permissions ......for the user and folder which you are accing in your channel...
    Naveen.

  • At 1,71 gb error "time out of the apparatus"

    while putting music on my ipod touch i get the account that the apparatus
    is in a time out
    after restarting, redownloading and resetting and again copying the music i still get the same error at exact 1,71 gb
    can anyone help me?

    Hey hans,
    Make sure you have the latest version of iTunes installed.
    http://www.apple.com/itunes/download/
    Try the tips in this article:
    http://docs.info.apple.com/article.html?artnum=301267
    Jason

  • Versamail error: Time out reading body

    I have Versamail version 3.1B
    When I select "get " for my AOL email, I receive an error message "Time out reading body"
    When this occurs I do not receive any of my email's. I am able to send email, however.
    My software version on the phone is 1.12-SPCS
    Post relates to: Treo 650 (Sprint)

    eagerly awaiting message regarding this problem. Having it still in 2008 with my palm t/x
    Post relates to: Palm TX

  • Network Error Times Out: -1001

    Hello: I am running an iMac G5 using Mac OS X Version 10.4. When I use my Software Update in my System Preferences to checck for new updates, I find them fine. When I tried to update my OS X, it will start to download, and then half way through the process, i get the error message, "Network Error Timed Out: -1001." It asks me to check my internet connection and then retry. I am using my airport express, and I reset it. I connect just fine to the internet and was able to download several other updates. The only time I have this problem is when I try to download 10.4.7. I researched similar issues, and they were not helpful. Anyone have the same problem and resolvedd it? Please help!!! Thanks.

    Hi, m.
    1. See "Troubleshooting Automatic Software Update in Mac OS X."
    2. Trash the com.apple.SoftwareUpdate.plist file in your Home > Library > Preferences folder.
    FYI: Before installing software updates, you may wish to consider the advice in my "Installing Software Updates" FAQ. Taking the steps therein before installing an update often helps avert problems and gives you a fallback position in case trouble arises.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Runtime error - Time managers workplace

    To All Experts,
    I configured time managers workplace ... but when i clik on the time managers workplace .. it turrns me into the screen of "RUNTIME ERROR"  Can u please tell me wht seeting i changed in GUI so that I can rectify my error.
    any documents on it will be great help.
    Thanks and Regards
    Jaydeep jadhav

    conf issue

  • Run time error(Time out) in KEI1 transaction code

    Hi All,
    When i go to KEI1 transaction code -> select A1 structure -> double clicking on Assignment Lines -> selecting Input price variance
    -> double clicking on Source is resulting in timeour error.
    Please help me in resolving the issue in ECC6.0  EHP 4.
    Thanks in Advance,
    Durga Naresh

    Hi,
    Come out of the Transcation code and rerun it , Run time Error would be if there there is any cost element or cost element group variant assigned in source. check weather the cost element and CE Group is created or not.bez I think you have assigned these CE or CEG in other server and transported it. so check if the respective CE or CE Group created or not .if not create them.
    Hope the above suggections helps you in clearning tht Error.
    Thanks
    Goutam

  • FTP Adapter Error time out

    Hi
    I have read that a polling files from an FTP server windows but I had some problems because the polling ejecutarce to mark the following error log
    <2009-06-01 20:44:52,822> <INFO> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Managed Connection Created
    <2009-06-01 20:44:52,822> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Adding Event Listener
    <2009-06-01 20:44:52,822> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Creating Connection
    <2009-06-01 20:44:52,822> <INFO> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Connection Created
    <2009-06-01 20:44:52,822> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Connection manager allocated connection :oracle.tip.adapter.ftp.FTPConnection@1e2d982
    <2009-06-01 20:44:52,822> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Host name is 'MyHost'.
    <2009-06-01 20:44:52,822> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Reading reply from MyHost
    <2009-06-01 20:44:52,822> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Host MyHost FTP command: USER cajero
    <2009-06-01 20:44:52,822> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP Command: USER, reply:
    331 Password required for cajero.
    <2009-06-01 20:44:52,822> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Host MyHostFTP command: PASS
    <2009-06-01 20:44:52,822> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP Command: PASS, reply:
    230 User cajerologged in.
    <2009-06-01 20:44:52,822> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Host MyHost FTP command: PASV
    <2009-06-01 20:44:52,822> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP Command: PASV, reply:
    227 Entering Passive Mode (192,168,0,150,15,190).
    <2009-06-01 20:44:52,822> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Passive: ip = 192.192.0.192, port = 4030
    <2009-06-01 20:44:52,822> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Connecting to MyHost:4030
    <2009-06-01 20:44:52,838> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Host MyHost FTP command: NLST C:\pub\cashier
    <2009-06-01 20:44:52,838> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP Command: NLST, reply:
    125 Data connection already open; Transfer starting.
    <2009-06-01 20:44:52,838> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Control socket being read by [JCA-work-instance:FTP Adapter-4]
    <2009-06-01 20:44:52,931> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Control socket read failed by [JCA-work-instance:FTP Adapter-4] DATA=[TIMEDOUT] in [93 msecs]
    <2009-06-01 20:44:52,931> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Sending event: 1 with: oracle.tip.adapter.ftp.FTPConnection@1e2d982
    <2009-06-01 20:44:52,931> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTPManagedConnection::destroy called, closing physical socket
    <2009-06-01 20:44:52,931> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Clearing Event Listeners
    <2009-06-01 20:44:53,088> <DEBUG> <default.collaxa.cube.activation> <AdapterFramework::Inbound> afterDelivery() is invoked
    <2009-06-01 20:44:53,088> <DEBUG> <default.collaxa.cube.activation> <AdapterFramework::Inbound> Committing JTA transaction com.evermind.server.ApplicationServerTransactionManager@1961a07
    I have already changed the timeout of transactions in the following files:
    SOA_HOME\j2ee\oc4j_soa\config\transaction-manager.xml
    greater thanorion-ejb-jar.xml
    SOA_HOME\j2ee\oc4j_soa\application-deployments\orabpel\ejb_ob_engine\orion-ejb-jar.xml
    less than transaction-manager.xml
    SOA_HOME\bpel\domains\domain_name\config\domain.xml
    less than orion-ejb-jar.xml
    but the error continues. I need your help pls be grateful
    Greetings

    JDT
    In making the execution of an interface that executes the method SynchRead and review the log. I realized that the same brand message timeout single interface that works well.
    <2009-06-02 13:37:50,177> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> ResourceAdapterMetaData Connection Created
    <2009-06-02 13:37:50,177> <INFO> <default.collaxa.cube.ws> <AdapterFramework::Outbound> file:/F:/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_BPEL_REGISTRO_COB_1.0_e24ce5bd36c213c5eba6a75bc9f44618.tmp/FTPArchivosICOMS.wsdl [ SynchRead_ptt::SynchRead(Empty,Pagos) ] - Using JCA Connection Pool - max size = <unbounded>
    <2009-06-02 13:37:50,193> <INFO> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Managed Connection Created
    <2009-06-02 13:37:50,193> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Adding Event Listener
    <2009-06-02 13:37:50,193> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Creating Connection
    <2009-06-02 13:37:50,193> <INFO> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Connection Created
    <2009-06-02 13:37:50,193> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Connection manager allocated connection :oracle.tip.adapter.ftp.FTPConnection@1f8aab0
    <2009-06-02 13:37:50,193> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Creating FTPInteraction
    <2009-06-02 13:37:50,224> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Creating an FTPSender
    <2009-06-02 13:37:50,224> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP Sender created
    <2009-06-02 13:37:50,224> <INFO> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTPInteraction Created
    <2009-06-02 13:37:50,224> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP outbound adapter interaction invoked : oracle.tip.adapter.ftp.outbound.FTPReadInteractionSpec@13a6c6f
    <2009-06-02 13:37:50,224> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FileInteraction::PROPS ====>{}
    <2009-06-02 13:37:50,224> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Considering header for filename, output filename from header: PGLINEAS1-090508133556.txt
    <2009-06-02 13:37:50,224> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Considering header for directoryName, directoryName from header: Cashier
    <2009-06-02 13:37:50,224> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP Agent Determined
    <2009-06-02 13:37:50,224> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTPSource::Local Temp Directory is F:\product\10.1.3.1\OracleAS_1\j2ee\home\fileftp\temp_ftp\localhost_default_BPEL_REGISTRO_COB~1.0_\outbound
    <2009-06-02 13:37:50,224> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP Host: myHost
    <2009-06-02 13:37:50,224> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP Post: 21
    <2009-06-02 13:37:50,224> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP Username: myuser
    <2009-06-02 13:37:50,224> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP Keep Connections: true
    <2009-06-02 13:37:50,224> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP outbound adapter read file interaction invoked.
    <2009-06-02 13:37:50,224> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Outbound File Adapter received request to read file with parameters: { Directory=Cashier, FileName=PGLINEAS1-090508133556.txt, DeleteFile=false}, headers=[_directory=[Cashier], _filename=[PGLINEAS1-090508133556.txt], _props=[{}]]
    <2009-06-02 13:37:50,240> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Creating Temp File mDGwM+l2LhBE8Qq9VFaD1Q== Local Path: F:\product\10.1.3.1\OracleAS_1\j2ee\home\fileftp\temp_ftp\localhost_default_BPEL_REGISTRO_COB~1.0_\outbound Remote Dir: Cashier
    <2009-06-02 13:37:50,240> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Calling getContentsAsStream() on FTPAgent: myHost: type = FTP, host = myHost:21, username = myuser
    directory = null, mode = STREAM, fileType = ASCII, maxRetries = 0 Localfile: PGLINEAS1-090508133556.txt Path: F:\product\10.1.3.1\OracleAS_1\j2ee\home\fileftp\temp_ftp\localhost_default_BPEL_REGISTRO_COB~1.0_\outbound\mDGwM+l2LhBE8Qq9VFaD1Q== Remote Dir: Cashier
    <2009-06-02 13:37:50,240> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Host name is 'myHost'.
    <2009-06-02 13:37:50,240> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Reading reply from myHost
    <2009-06-02 13:37:50,255> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Host myHost FTP command: USER myuser
    <2009-06-02 13:37:50,255> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP Command: USER, reply:
    331 Password required for myuser.
    <2009-06-02 13:37:50,255> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Host myHost FTP command: PASS
    <2009-06-02 13:37:50,255> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP Command: PASS, reply:
    230 User myuser logged in.
    <2009-06-02 13:37:50,255> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTPAgent::absoluteFilePath called with[Cashier], file=[PGLINEAS1-090508133556.txt]
    <2009-06-02 13:37:50,255> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Host myHost FTP command: PASV
    <2009-06-02 13:37:50,255> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP Command: PASV, reply:
    227 Entering Passive Mode (192,168,0,150,4,46).
    <2009-06-02 13:37:50,255> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Passive: ip = 192.192.0.192, port = 1070
    <2009-06-02 13:37:50,255> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Connecting to myHost:1070
    <2009-06-02 13:37:50,255> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Host myHost FTP command: TYPE I
    <2009-06-02 13:37:50,255> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP Command: TYPE, reply:
    200 Type set to I.
    <2009-06-02 13:37:50,271> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Host myHost FTP command: RETR Cashier\PGLINEAS1-090508133556.txt
    <2009-06-02 13:37:50,271> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> FTP Command: RETR, reply:
    125 Data connection already open; Transfer starting.
    <2009-06-02 13:37:50,287> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Control socket being read by [AJPRequestHandler-HTTPThreadGroup-64]
    <2009-06-02 13:37:50,380> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Control socket read failed by [AJPRequestHandler-HTTPThreadGroup-64] DATA=[TIMEDOUT] in [93 msecs]
    <2009-06-02 13:37:50,380> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Returning local file: mDGwM+l2LhBE8Qq9VFaD1Q== Path: F:\product\10.1.3.1\OracleAS_1\j2ee\home\fileftp\temp_ftp\localhost_default_BPEL_REGISTRO_COB~1.0_\outbound\mDGwM+l2LhBE8Qq9VFaD1Q==
    <2009-06-02 13:37:50,427> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Created translator : oracle.tip.pc.services.translation.xlators.nxsd.NXSDTranslatorImpl@112ff56
    <2009-06-02 13:37:50,459> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Completed translation for : Cashier\PGLINEAS1-090508133556.txt
    Thank you...
    Edited by: user10655677 on Jun 2, 2009 9:57 AM

Maybe you are looking for

  • Changing the ImageData attribute of a list viewnode..

    Hi, I am trying to change the Image Data attribute of a list view node after a user clicks on it. But it just doesnot get reflected in the listview. UpdateFieldFromData()/UpdateWindow() donot do the job either. I could ofcourse clone the node, change

  • Set id for dynamicly programmed link_to_action elements

    Hello. I create dynamicly a lot of link_to_action elements in an table. if i click on an element, it call the onaction-action where i get my event. now i can get the id of the link_to_url, but can i set the id for each link_to_action? thanks marcus E

  • UTILIZATION Challenge !! Credit Addicts needed !

    Hi all!  So, this is a "what if" scenario that I need help with.  My scores are climbing wildly as I pay down my cards, with a 10 point jump overnight just for bringing UTIL down on one card from $500 / 600 CL to $259 / 600 CL !!  EX FICO.  So, I wan

  • Search not finding artists in various artist albums

    Using "Search Library" in iTunes 11.0.1, if an artist is in an album of various artists, search will not find this artist even if the artist tag is filled out in the Get Info box. Same thing if you select the Artist tab at the top of the screen, arti

  • When looking at PDF's in one tab other tabs loose functionality, has this been reported?

    When I open a PDF in one tab other tabs lose functionality. This can happen within websites or within my homepage of google. For instance unable to type anything in one tab until the PDF in another tab is closed, unable to use the right mouse button