Maximum Time out  runtime error

Hi All,
The following query is giving the error message:
SELECT mkpfbudat msegbwart msegwerks msegmatnr mseg~shkzg
         msegmenge msegmeins msegdmbtr maraextwg makt~maktx
    INTO TABLE i_src
    FROM mkpf
      JOIN mseg ON mkpfmblnr = msegmblnr
               AND mkpfmjahr = msegmjahr
      JOIN mara ON msegmatnr = maramatnr
      JOIN makt ON msegmatnr = maktmatnr
    WHERE mkpf~budat IN s_budat AND
          mseg~bwart IN s_bwart AND
          mseg~matnr IN s_matnr AND
          mseg~werks IN s_werks AND
          mara~mtart  = c_mtart AND
          makt~spras  = sy-langu.
The error message is :
The program ZMMPR_KEY_MOVEMENT has exceeded the maximum permitted runtime and therefore has been terminated. 
Can you tell me how we can improve the performance?
Thanks,
Sobhan.

Hi Sobhan,
I remember this problem, getting MBELN's for a date range and material range and BWART range, from the early 90's on an R/3 1.2.
Try it this way:
TABLES: mkpf, mseg, mara.
SELECT-OPTIONS:
  s_budat FOR mkpf-budat,
  s_bwart FOR mseg-bwart,
  s_matnr FOR mseg-matnr,
  s_werks FOR mseg-werks.
PARAMETERS:
  c_mtart TYPE mtart.
TYPES:
  BEGIN OF i_scr_t,
    mblnr LIKE mkpf-mblnr,
    mjahr LIKE mkpf-mjahr,
    budat LIKE mkpf-budat,
    bwart LIKE mseg-bwart,
    werks LIKE mseg-werks,
    matnr LIKE mseg-matnr,
    shkzg LIKE mseg-shkzg,
    menge LIKE mseg-menge,
    meins LIKE mseg-meins,
    dmbtr LIKE mseg-dmbtr,
    extwg LIKE mara-extwg,
    maktx LIKE makt-maktx,
  END OF i_scr_t,
  BEGIN OF mblnr_t,
    mblnr LIKE mkpf-mblnr,
    mjahr LIKE mkpf-mjahr,
    budat LIKE mkpf-budat,
  END OF mblnr_t,
  BEGIN OF mat_t,
    matnr LIKE mara-matnr,
    extwg LIKE mara-extwg,
    mtart LIKE mara-mtart,
    maktx LIKE makt-maktx,
  END OF mat_t.
DATA:
  lt_mblnr TYPE TABLE OF mblnr_t WITH HEADER LINE,
  lt_mat   TYPE HASHED TABLE OF mat_t WITH UNIQUE KEY matnr,
  ls_mat   LIKE LINE OF lt_mat,
  i_scr    TYPE TABLE OF i_scr_t WITH HEADER LINE.
SELECT budat mjahr mblnr FROM mkpf
  INTO CORRESPONDING FIELDS OF TABLE lt_mblnr
  WHERE mkpf~budat IN s_budat.
LOOP AT lt_mblnr.
  SELECT bwart werks matnr shkzg menge meins dmbtr
    FROM mseg
    INTO CORRESPONDING FIELDS OF i_scr
    WHERE mblnr = lt_mblnr-mblnr
      AND mjahr = lt_mblnr-mjahr
      AND bwart IN s_bwart
      AND matnr IN s_matnr
      AND werks IN s_werks.
    READ TABLE lt_mat INTO ls_mat
      WITH TABLE KEY matnr = i_scr-matnr.
    IF sy-subrc <> 0.
      ls_mat-matnr = i_scr-matnr.
      SELECT SINGLE extwg mtart FROM mara
        INTO (ls_mat-extwg, ls_mat-mtart)
        WHERE matnr = ls_mat-matnr.
      SELECT SINGLE maktx FROM makt INTO ls_mat-maktx
        WHERE matnr = ls_mat-matnr
          AND spras = sy-langu.
      INSERT ls_mat INTO TABLE lt_mat.
    ENDIF.
    IF ls_mat-mtart = c_mtart.
      i_scr-extwg = ls_mat-extwg.
      i_scr-maktx = ls_mat-maktx.
      APPEND i_scr.
    ENDIF.
  ENDSELECT.
ENDLOOP.
It does not look very high performing, but in fact, it used only 1/2 an hour instead of 3 days of the version, that corresponds to yours. Yes, I know, a lot changed since 1.2 in the database interface, but just try it and you will see. And forget joining MKPF and MSEG. No database will handle this in a real system.
If you find my answer useful, please don't forget the reward.
Regards,
Juergen
Message was edited by: Juergen Wurth

Similar Messages

  • Load from ODS into InfoCube gives TIME-OUT runtime error after 10 minutes ?

    Hi all,
       We have a full load from ODS into InfoCube and it was working fine till the last week upto with 50,000 records. Now, we have around 70,000+ records and started failing with TIME_OUT runtime error.
       The following is from the Short Dump (ST22):
       The system profile "rdisp/max_wprun_time" contains the maximum runtime of a
    program. The current setting is 600 seconds. Once this time limit has been exceeded, the system tries to terminate any SQL statements that are currently being executed and tells the ABAP processor to terminate the current program.
      The following are from ROIDOCPRMS table:
       MAXSIZE (in KB) : 20,000
       Frequency       :  10
       Max Processes : 3
      When I check the Data Packages under 'Details' tab in Monitor, there are four Data Packages and the first three are with 24,450 records.  I will right click on each Data Package and select 'Manual Update' to load from PSA. When this Manual Update takes more than 10 minutes it is failing with TIME_OUT again.
      How could I fix this problem, PLEASE ??
    Thanks,
    Venkat.

    Hello A.H.P,
    The following is the Start Routine:
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line  -
    TABLES: /BIC/AZCPR_O0400, /BIC/AZCPR_O0100, /BIC/AZCPR_O0200.
    DATA: material(18), plant(4).
    DATA: role_assignment like /BIC/AZCPR_O0100-CPR_ROLE, resource like
    /BIC/AZCPR_O0200-CPR_BPARTN.
    $$ end of global - insert your declaration only before this line   -
    The follow definition is new in the BW3.x
    TYPES:
      BEGIN OF DATA_PACKAGE_STRUCTURE.
         INCLUDE STRUCTURE /BIC/CS8ZCPR_O03.
    TYPES:
         RECNO   LIKE sy-tabix,
      END OF DATA_PACKAGE_STRUCTURE.
    DATA:
      DATA_PACKAGE TYPE STANDARD TABLE OF DATA_PACKAGE_STRUCTURE
           WITH HEADER LINE
           WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    FORM startup
      TABLES   MONITOR STRUCTURE RSMONITOR "user defined monitoring
               MONITOR_RECNO STRUCTURE RSMONITORS " monitoring with record n
               DATA_PACKAGE STRUCTURE DATA_PACKAGE
      USING    RECORD_ALL LIKE SY-TABIX
               SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
      CHANGING ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line        -
    fill the internal tables "MONITOR" and/or "MONITOR_RECNO",
    to make monitor entries
       clear DATA_PACKAGE.
       loop at DATA_PACKAGE.
          select single /BIC/ZMATERIAL PLANT
             into (material, plant)
             from /BIC/AZCPR_O0400
             where CPR_EXT_ID = DATA_PACKAGE-CPR_EXT_ID
             and ( MATL_TYPE = 'ZKIT' OR MATL_TYPE = 'ZSVK' ).
           if sy-subrc = 0.
              DATA_PACKAGE-/BIC/ZMATERIAL = material.
              DATA_PACKAGE-plant = plant.
              modify DATA_PACKAGE.
              commit work.
           endif.
           select single CPR_ROLE into (role_assignment)
                         from /BIC/AZCPR_O0100
                         where CPR_GUID = DATA_PACKAGE-CPR_GUID.
            if sy-subrc = 0.
              select single CPR_BPARTN into (resource)
                         from /BIC/AZCPR_O0200
                         where CPR_ROLE = role_assignment
                         and CPR_EXT_ID = DATA_PACKAGE-CPR_EXT_ID.
                   if sy-subrc = 0.
                      DATA_PACKAGE-CPR_ROLE = role_assignment.
                      DATA_PACKAGE-/BIC/ZRESOURCE = resource.
                      modify DATA_PACKAGE.
                      commit work.
                   endif.
              endif.
           clear DATA_PACKAGE.
           endloop.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    $$ end of routine - insert your code only before this line         -
    Thanks,
    Venkat.

  • Update JRE 1.4.2_08  to JDK 1.5.0_11 get "Time Out 61" Error on MI Client

    Hi,
    we have updated our System to SPS 14 (MW+BE) to make our clients vista ready. I have create a new setup package and updated the Java version of the client to jdk 1.5.0_11. After Starting the client I get the "Time Out 61 Error". The Startup Output seems to be good, all variables are set. And I dont know what to do.
    Her is the Output from the Startup.bat
    If anyone have a clou that can help me, makes me very glad.
    C:\Program Files\SAP\MobileInfrastructure>startup.bat
    C:\Program Files\SAP\MobileInfrastructure>SET JAVA_HOME=1
    C:\Program Files\SAP\MobileInfrastructure>REM SET JAVA_HOME=
    C:\Program Files\SAP\MobileInfrastructure>REM SET ME_HOME=
    C:\Program Files\SAP\MobileInfrastructure>REM SET JAVA_EXE=
    C:\Program Files\SAP\MobileInfrastructure>REM SET JAVA_OPTIONS=-mx256m
    C:\Program Files\SAP\MobileInfrastructure>SET _OLDCP=
    C:\Program Files\SAP\MobileInfrastructure>set _MEJARS=
    C:\Program Files\SAP\MobileInfrastructure>copy /b "C:\Program Files\SAP\MobileIn
    frastructure\SetMejar.txt" + "C:\Program Files\SAP\MobileInfrastructure\listOfJa
    rs.txt" "C:\Program Files\SAP\MobileInfrastructure\setMeJar.bat"
    C:\Program Files\SAP\MobileInfrastructure\SetMejar.txt
    C:\Program Files\SAP\MobileInfrastructure\listOfJars.txt
            1 file(s) copied.
    C:\Program Files\SAP\MobileInfrastructure>call "C:\Program Files\SAP\MobileInfra
    structure\setMeJar.bat"
    C:\Program Files\SAP\MobileInfrastructure>SET _MEJARS=C:\Program Files\SAP\Mobil
    eInfrastructure\lib\db2ejdbc.jar;C:\Program Files\SAP\MobileInfrastructure\lib\c
    rimson.jar;C:\Program Files\SAP\MobileInfrastructure\lib\jasper.jar;C:\Program F
    iles\SAP\MobileInfrastructure\lib\jaxp.jar;C:\Program Files\SAP\MobileInfrastruc
    ture\lib\MEg.jar;C:\Program Files\SAP\MobileInfrastructure\lib\pinstall.jar;C:\P
    rogram Files\SAP\MobileInfrastructure\lib\servlet.jar;C:\Program Files\SAP\Mobil
    eInfrastructure\lib\system\jdk13\iaik_javax_crypto.jar;C:\Program Files\SAP\Mobi
    leInfrastructure\lib\system\jdk13\iaik_jce.jar;C:\Program Files\SAP\MobileInfras
    tructure\lib\system\jdk14\iaik_jce.jar;C:\Program Files\SAP\MobileInfrastructure
    \lib\system\xalan.jar;C:\Program Files\SAP\MobileInfrastructure\lib\webserver.ja
    r;
    C:\Program Files\SAP\MobileInfrastructure>set _SSLJARS=
    C:\Program Files\SAP\MobileInfrastructure>if exist "C:\Program Files\SAP\MobileI
    nfrastructure\lib\jsse.jar" set _SSLJARS=C:\Program Files\SAP\MobileInfrastructu
    re\lib\jsse.jar
    C:\Program Files\SAP\MobileInfrastructure>if exist "C:\Program Files\SAP\MobileI
    nfrastructure\lib\jcert.jar" set _SSLJARS=;C:\Program Files\SAP\MobileInfrastruc
    ture\lib\jcert.jar
    C:\Program Files\SAP\MobileInfrastructure>if exist "C:\Program Files\SAP\MobileI
    nfrastructure\lib\jnet.jar" set _SSLJARS=;C:\Program Files\SAP\MobileInfrastruct
    ure\lib\jnet.jar
    C:\Program Files\SAP\MobileInfrastructure>set _IAKJARS=
    C:\Program Files\SAP\MobileInfrastructure>if exist "C:\Program Files\SAP\MobileI
    nfrastructure\lib\system\jdk13\iaik_jce.jar" set _IAKJARS=C:\Program Files\SAP\M
    obileInfrastructure\lib\system\jdk13\iaik_jce.jar
    C:\Program Files\SAP\MobileInfrastructure>if exist "C:\Program Files\SAP\MobileI
    nfrastructure\lib\system\jdk13\iaik_javax_crypto.jar" set _IAKJARS=C:\Program Fi
    les\SAP\MobileInfrastructure\lib\system\jdk13\iaik_jce.jar;C:\Program Files\SAP\
    MobileInfrastructure\lib\system\jdk13\iaik_javax_crypto.jar
    C:\Program Files\SAP\MobileInfrastructure>set CLASSPATH=C:\Program Files\SAP\Mob
    ileInfrastructure\lib\db2ejdbc.jar;C:\Program Files\SAP\MobileInfrastructure\lib
    \crimson.jar;C:\Program Files\SAP\MobileInfrastructure\lib\jasper.jar;C:\Program
    Files\SAP\MobileInfrastructure\lib\jaxp.jar;C:\Program Files\SAP\MobileInfrastr
    ucture\lib\MEg.jar;C:\Program Files\SAP\MobileInfrastructure\lib\pinstall.jar;C:
    \Program Files\SAP\MobileInfrastructure\lib\servlet.jar;C:\Program Files\SAP\Mob
    ileInfrastructure\lib\system\jdk13\iaik_javax_crypto.jar;C:\Program Files\SAP\Mo
    bileInfrastructure\lib\system\jdk13\iaik_jce.jar;C:\Program Files\SAP\MobileInfr
    astructure\lib\system\jdk14\iaik_jce.jar;C:\Program Files\SAP\MobileInfrastructu
    re\lib\system\xalan.jar;C:\Program Files\SAP\MobileInfrastructure\lib\webserver.
    jar;;;;C:\Program Files\SAP\MobileInfrastructure\lib\system\jdk13\iaik_jce.jar;C
    :\Program Files\SAP\MobileInfrastructure\lib\system\jdk13\iaik_javax_crypto.jar;
    1\lib\tools.jar
    C:\Program Files\SAP\MobileInfrastructure>echo Using CLASSPATH: C:\Program Files
    \SAP\MobileInfrastructure\lib\db2ejdbc.jar;C:\Program Files\SAP\MobileInfrastruc
    ture\lib\crimson.jar;C:\Program Files\SAP\MobileInfrastructure\lib\jasper.jar;C:
    \Program Files\SAP\MobileInfrastructure\lib\jaxp.jar;C:\Program Files\SAP\Mobile
    Infrastructure\lib\MEg.jar;C:\Program Files\SAP\MobileInfrastructure\lib\pinstal
    l.jar;C:\Program Files\SAP\MobileInfrastructure\lib\servlet.jar;C:\Program Files
    \SAP\MobileInfrastructure\lib\system\jdk13\iaik_javax_crypto.jar;C:\Program File
    s\SAP\MobileInfrastructure\lib\system\jdk13\iaik_jce.jar;C:\Program Files\SAP\Mo
    bileInfrastructure\lib\system\jdk14\iaik_jce.jar;C:\Program Files\SAP\MobileInfr
    astructure\lib\system\xalan.jar;C:\Program Files\SAP\MobileInfrastructure\lib\we
    bserver.jar;;;;C:\Program Files\SAP\MobileInfrastructure\lib\system\jdk13\iaik_j
    ce.jar;C:\Program Files\SAP\MobileInfrastructure\lib\system\jdk13\iaik_javax_cry
    pto.jar;1\lib\tools.jar
    Using CLASSPATH: C:\Program Files\SAP\MobileInfrastructure\lib\db2ejdbc.jar;C:\P
    rogram Files\SAP\MobileInfrastructure\lib\crimson.jar;C:\Program Files\SAP\Mobil
    eInfrastructure\lib\jasper.jar;C:\Program Files\SAP\MobileInfrastructure\lib\jax
    p.jar;C:\Program Files\SAP\MobileInfrastructure\lib\MEg.jar;C:\Program Files\SAP
    \MobileInfrastructure\lib\pinstall.jar;C:\Program Files\SAP\MobileInfrastructure
    \lib\servlet.jar;C:\Program Files\SAP\MobileInfrastructure\lib\system\jdk13\iaik
    javaxcrypto.jar;C:\Program Files\SAP\MobileInfrastructure\lib\system\jdk13\iai
    k_jce.jar;C:\Program Files\SAP\MobileInfrastructure\lib\system\jdk14\iaik_jce.ja
    r;C:\Program Files\SAP\MobileInfrastructure\lib\system\xalan.jar;C:\Program File
    s\SAP\MobileInfrastructure\lib\webserver.jar;;;;C:\Program Files\SAP\MobileInfra
    structure\lib\system\jdk13\iaik_jce.jar;C:\Program Files\SAP\MobileInfrastructur
    e\lib\system\jdk13\iaik_javax_crypto.jar;1\lib\tools.jar
    C:\Program Files\SAP\MobileInfrastructure>SET PATH=C:\WINDOWS\system32;C:\WINDOW
    S;C:\WINDOWS\System32\Wbem;c:\Program Files\IBM\Client Access\Emulator\;c:\Progr
    am Files\IBM\Client Access\Shared\;c:\Program Files\IBM\Client Access\;C:\Progra
    m Files\Windows Imaging\;C:\Program Files\Java\jdk1.5.0_11\bin;C:\Program Files\
    SAP\MobileInfrastructure/bin/DB2e/
    C:\Program Files\SAP\MobileInfrastructure>"C:\Program Files\Java\1.5.0_11\bin\ja
    va.exe"  -DSERVER_IMPL="com.sap.tc.webdynpro.serverimpl.me.MEServerImplementatio
    n" -Duse.repository=noDB com.sap.ip.me.core.Startup "-home:C:\Program Files\SAP\
    MobileInfrastructure"
    The system cannot find the path specified.
    C:\Program Files\SAP\MobileInfrastructure>SET CLASSPATH=
    C:\Program Files\SAP\MobileInfrastructure>

    Hi,
    Note 1086971
    To install and launch MI Client on Windows Vista OS, install SUN JDK/JRE 1.5 Update 11 and higher.  This is because only this version of SUN J2SE supports Windows Vista OS.  For details please refer to http://java.sun.com/j2se/1.5.0/system-configurations.html.
    I think I have to install this version of Java.
    Regards Maik

  • Clock-in/out runtime error in Netweaver UI5 portal

    Dear Experts
    Following error is runtime error for the service clock-in/out in the portal
    when i click on the service,i m getting the runtime error(in ST22)
    Category                        ABAP Programming Error
    Runtime Errors              MESSAGE_TYPE_X
    ABAP Program             SAPLPT_COR_REQUEST_UIA
    Application Component  PT-RC-TE
    Date and Time              12.09.2014 16:45:43
    Error analysis
        Short text of the error message:
        No Customizing E
        Long text of the error message:
        Technical information about the message:
        Message class....... 53
        Number.............. 999
        Variable 1.......... No Customizing
        Variable 2.......... E
        Variable 3..........
        Variable 4.......... " "
    please help.
    what should i do, to fix this error

    thank you
    this issue is solved!

  • Netbeans JDBC to MSSQL 2000 Problem / No Time Out or Error

    Hello All,
    A Java/Netbeans Rookie question..(tried Google can't find answer)..
    Trying a New DB connection to MS SQL 2000 through Netbeans.
    Followed the instructions found
    HERE->http://www.netbeans.org/kb/50/using-netbeans/dbconn.html#73418
         Runtime
              -->Drivers
                   --->New connection
    I added the driver (mssqlserver.jar).
    Netbeans recognizes this.
    when I try to create a connection to a DB in SQL,
    I get an as expected "connecting to DB" message
    But, I never get a connection, nor do I get an Error, nor a time out.
    Tried intentionally a wrong user id/password to force an error, however do not get one.
    I assume the error is on the Netbeans side of house (since it's not throwing the login Error from MS SQL).
    My MSSQL server group is set up as
    Einstein\SQLGUY
         DB>Northwind
    The Netbeans DB Url I'm using is
    jdbc:sqlserver://Einstein\SQLGUY:1433;databaseName=Northwinds;
    I can Query Northwinds in SQL, so all looks o.k. In SQL.
    Thanks for the help.
    �Rookie�

    P.S.
    I do have
    msbase.jar
    msutil.jar
    mssqlserver.jar
    In my CLASSPATH
    thx.
    eom

  • Keep getting time out connection error when my macair tries to connect to Internet, but my iPad, phone and PC connect straight away. It happens on and off what could be the problem?

    Having trouble connecting to Internet with my MacBook Air. It can be fine for a few hours thins goes off and all I get it the message couldn't connect due to time out error connection. It can't be my broadband because I don't have the same problem with my other devices. Is my mac air breaking down?

    looks like this is your network connection settings problem, you'd better only keep one network adaptor online and linked, if you do not understand how to setup windows routing, this is completely not firefox problem. buddy. wish you goodluck.

  • Time out: Network error

    Hi, everyoneI have a problem with the network, the essbase server is on Sun solaris.Connection is Ok, and i can see all the application and the databases, but when trying to add a member and save to the server I get an error "Network error [10061]: Unable to connect to server. The client time out waiting to connect to the essbase agent using TCP/IP."In the essbase.cfg I have tried different values for the NETRETRYCOUNT and NETDELAY parameters and I get the same error.I`m going through two firewalls and i`m suspicious about something is happening with this.Can anyone help me?????Thanks in advanced

    we're having the same problem at my office and hyperion support staff have recomended increasing the AGENTDELAY, NETDELAY, and NETRETRYCOUNT values in the server side essbase.cfg file (try doubling or tripling them). we can't do so until we finish our current reporting cycle so i'd be curious to hear if this resolved your problem.

  • My upgrade to IOS5 for iphone 4 continually times out with error message 3259. Any ideas on why?

    My download of ios5 continually times out in itunes, quoting error message 3259. Any ideas why

    THIS WAS COPIED FROM A THREAD THAT WORKED FOR ME SO I CAN'T TAKE THE CREDIT
    Open notepad as administrator, and direct yourself to:
    C:\Windows\System32\Drivers\etc
    open the "Hosts" file:
    note the "127.0.0.1 gs.apple.com" portion near the bottom. your hosts may be different, and if so, then look for that part specifically. the problem for me, lied within the fact that just before the "127.0.0.1 gs.apple.com" part, there originally was no hash(#) with the space like the rest of the hosts file. This was all I had to fix. After editing and then SAVING the hosts file in notepad I restarted iTunes and the update went through without a hitch!
    so if you do not see the hash and space before the "127.0.0.1 gs.apple.com" part, all you have to do is put the #, and then press tab! I hope this works for some of you guys! So just to be clear, that particular line in the file should look like:
    # 127.0.0.1 gs.apple.com
    good luck!

  • Downloading 2.2.1 update times out and error message

    Trying to download 2.2.1 update. It says it will take 2 hours (about 220 MB). Then about 45 minutes into download it says session has timed out. Check network connection or try again later.
    Anyone know how I can remedy this and complete download?
    Thanks!
    Charlie

    Another question. When it says "try again later". Would the download be faster if I tried in the middle of the night when/if the apple site is not so busy? Or am I totally off the mark and that has nothing to do with the time issue?
    Is 2 hours normal for the 220 mg 2.2.1 download? Is there a reason the connection times out after 45 minutes of a 2 hr. download? Is that the apple site doing the time out or my ISP?
    Sorry for all the questions. There are apps I want to download that need the 2.2.1 and I am only at my buddies house with WiFi on the weekends.
    Thanks,
    Charlie

  • New iPad Air can't connect to iTunes; device "times out"; no error code given

    my iMac (8 months old) is running 10.8.5 with latest version of iTunes.  When I try to connect my new iPaid Air with a cable, iTunes open, after a few seconds, a windows appears saying "iTunes cannot connect to the device named Peggy's iPad because device timed out".  no error code is given.  I have restarted my computer and the iPad various times and tried different USB ports on the iMac.  I am using the original lightning cable that came with the iPad to connect.  I didn't have this problem with my old iPad 2 or with my iPod touch.  I do not have any security software installed and no firewalls, etc.  Any suggestions on what is causing this problem?  Thanks.

    You should repost this over in the "using iPad" forum.  The iPad gurus hang out there.  This is the MacBook Air forum.  Here is the link:
    https://discussions.apple.com/community/ipad/using_ipad
    Regards,
    Captfred

  • ODS ACTIVATION GIVING TIME EXCEEDING RUNTIME ERROR

    Hi experts,
    I am working on BW 3.5
    i am adding two fields in a existing ODS as i have enhanced  a Datasource with that field
    now when i am adding these 2 fields by drag and drop and than activating the ODS its giving Run time error showing TIME LIMIT EXCEEDS
    i am in BW 3.5 so please help me as HOW to add the fields in existing ODS and than Activating it
    thanks

    Hi,
    Make sure you have the sufficient authorizations to run the program RSDG_ODSO_ACTIVATE . It may run for many hours depending upon the size of the DSO. So i would recommend if you ask some basis guy to run this job as they usually have all the authorizations.
    If this approach does not work out you may have to re-import the DSO if its production. Also it will deactivate any dependent transformations and update rules.

  • DSO data Activation Time out-DATABASE ERROR-440

    Hello all,
    We are getting  error in one of our standard DSO during activation -Error-Process 000001 did not confirm within the permitted time period,we repeated process chain ,we got the same error,we activated manually -we got the same error, I need to mention that we only have 3278 records which should not take more than few seconds-minutes to activate. we reset RSODSO_SETTINGS wait time by increasing still did do it , we changed data package 10,000 ,50,000 but it didn't correct the error, we even change DSO  SID generation setting during activation to never create SID ,it didn't correct the error, we reactivated DSO,we indexed the table both new and active table but we are getting the same error, in a SM21 we are getting error DATABASE ERROR -440  [IBM][CLI Driver][DB2] NO AUTHORIZED PROCEDURE NAMED > DSO_VERSION HAVING COMPATIBLE ARGUMENTS WAS FOUND... DBA reorg and did some other things but we are still getting the same error and the are not sure what the procedure DSO_VERSION is ,Any body have any idea what that procedure is and why we are getting that in sm21 during one DSO data activation?  Has anybody had this kind of experience before? by the way we have researched on google SCN and nothing close to our scenario. By the way we ran the activation with the different settings both in dialog and background.We also got error  Background process BCTL_4Z81MSY8311QNTKRYGRDYVFXY terminated due to missing confirmation ...Any suggestions will be of great help and points will be awarded....
    Thank you.

    Error in Sm21-
    04:57:20 BTC  036 810 PRGRAU0                   BY  2 Database error -440 at EXE
    04:57:20 BTC  036 810 PRGRAU0                   BY  0 > [IBM][CLI Driver][DB2] NO AUTHORIZED PROCEDURE NAME
    04:57:20 BTC  036 810 PRGRAU0                   BY  0 > DSO_VERSION HAVING COMPATIBLE ARGUMENTS WAS FOUND
    04:57:20 BTC  036 810 PRGRAU0                   BY  1 Database error -440
    Background process BCTL_4Z9BTOI3XPN2XB0VL9IUZ08ZA terminated due to missing
    confirmation
    Message no. RSODSO_PROCESSING041
    Diagnosis
    The confirmation from the background process BCTL_4Z9BTOI3XPN2XB0VL9IUZ08ZA
    did not occur within the set time. It was thus ended by the system.
    System Response
    Background process: BCTL_4Z9BTOI3XPN2XB0VL9IUZ08ZA
    Number: 1
    Procedure
    Check the package size for the application to be processed or change the
    package size.

  • In updating to the new version of Itunes today on Windows 7 I received this warning several times. Runtime error in Microsoft Visual C  . An application has made an attempt to load incorrectly in iTunes. Loaded it auto and manually and reinstalled entire

    Sorry, wouldn't have put entire q in title if I had known. I have completely uninstalled iTunes and reinstalled it with the same result. Help! Thanks

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (100173)

  • Why do i get the VisaRead time out error ?

    I'm trying to interface a shutter control unit using a RS232C .I'm getting a read time out error.I'm using LABVIEW,->serial.vi.I tried giving the termination character to my command.But its still not working .The command format is as follows :
    [A][BBB][C...C][CR]
    [A]: Command identifier (one lower case alphabet ,ASCII code,one byte)
    [BBB]: command name (three upper case aplhabet characters ,ASCII code,three bytes)
    [C..C]: Parameter(ASCII code)
    [CR]:carraige return(0x0D)
    i run the follwing commands in LABVIEW<->serial.vi:
    rTSW
    rTSR
    and i'm getting the time out expired error.i'm even tried gving "\n" rTSW\n etc..but still i get the same error.
    Any help in this reagard is appreciated.
    Attachments:
    New_Microsoft_Word_Document.doc ‏120 KB
    New_Microsoft_Word_Document.doc ‏120 KB

    I didn't pick it up in your first posting but \n is a line feed and not a carriage return. The correct code for carriage return is \r. One way to avoid any confusion is use the constant on the string palette and use the Append to String function to add this to any command you want to send. You can also modify VISA Configure Serial Port to automatically send a termination character on writes. Add the property Serial Settingserial End Mode for Writes. If you do this, you need to specify the hex value of the termination character. For a CR, this is 0D.
    If this doesn't fix your problem, have you successfully communicated with the device using hyperterminal? If you can, that will at least tell me that the cable and commands are correct.

  • Runtime error when I add materials to Sales order

    Hi All,
    The user attempted to add materials to Order 4002262638.    When adding 05302 and 05804 to the sales order, SAP
    went to the hourglass and then created the Timed out Runtime Error message.
    The Error at SAP Standard program LZVA_PRO_ALLOF01 at statement,
    When I press enter after giving materials its getting timed out due to long execution time. Looks the select query is taking lot of execution time.
    SELECT DISTINCT vbap~vbeln
             vbap~posnr
             vbap~kwmeng
        FROM vbap INNER JOIN vbak ON vbapvbeln = vbakvbeln
                  INNER JOIN vbep ON vbapvbeln = vbepvbeln
                                 AND vbapposnr = vbepposnr
        INTO TABLE lt_vbap
        WHERE vbak~kunnr  IN r_hienr  AND
              vbap~prodh  IN r_prdha  AND
              vbap~abgru  EQ space    AND
              vbep~wadat  LE gv_datbi AND
              vbep~wadat  GE gv_datab AND
              vbep~edatu  NE '00000000' AND
            vbep~bmeng GT 0 AND
              vbap~kwmeng GT 0.
    Please let me know your ideas.
    Thanks in advance,
    Rama

    Hi,
    Check if some user exits have been written in the includes attached to main porogram in sales order.
    May be the exits arent properly written or activated
    Regards,
    Dhananjay

Maybe you are looking for

  • Problem with insets and placement within a JFrame.

    I have written some code that actively renders (at about 100 fps) to a JPanel contained within a JFrame. The size of the frame and the size of the panel are both set to 1000 by 700 (odd i know..) Everything seems to work fine and I have encountered i

  • How to get selected row of an advanced table

    Hi All, I have created an advanced table with 5 rows and i can also add rows in that. Here my requirement is i want to get the data of a row which i have selected. There are 5 rows. i have entered data into all 5 rows. Suppose i have selected 3rd row

  • Not able to connect N82 to pc in data transfer mod...

    I am not able to connect N82 in data transfer mode( other modes are working fine) though i installed latest connectivity cable driver for N82. It says that it could not find any suitable driver(after search cd provided and online). My current firmwar

  • Third party applications don`t work!!!!!!

    Hi I really need help here I have a bb 9530 verizon(my uncle`s) cause my last phone broke a bb 9300 3G.i have set up the bb but I really don't know what I'm doing so every thing works fine except third party applications because when ever I go into a

  • About sales bom

    Hi, I have some issue need your help! For example: The end user has created a sales order with sales BOM, the high level of material A is relevant for pricing and billing, but not relevant for ATP check, and item lever of material B is relevant for g