Display Infocube Content produces Runtime Errors = TIME_OUT

Hi,
Upon trying to display content of an InfoCube (200 records only), I received the following error:
Runtime Errors         TIME_OUT                                                     
Date and Time          13.12.2007 11:16:24                                                                               
Short text                                                                               
Time limit exceeded.                                                                               
What happened?                                                                     
     The program "CL_SQL_RESULT_SET=============CP" has exceeded the maximum        
      permitted runtime without                                                     
     interruption and has therefore been terminated.                                                                               
Error analysis                                                                     
     After a specific time, the program is terminated to make the work area         
     available to other users who may be waiting.                                   
     This is to prevent a work area being blocked unnecessarily long by, for        
     example:                                                                       
     - Endless loops (DO, WHILE, ...),                                              
     - Database accesses with a large result set                                    
     - Database accesses without a suitable index (full table scan)                                                                               
The maximum runtime of a program is limited by the system profile              
     parameter "rdisp/max_wprun_time". The current setting is 600 seconds. If this  
      time limit is                                                                 
     exceeded, the system attempts to cancel any running SQL statement or           
     signals the ABAP processor to stop the running program. Then the system        
     waits another 60 seconds maximum. If the program is then still active,         
     the work process is restarted.                                                                               
Trigger Location of Runtime Error                                             
    Program                                 CL_SQL_RESULT_SET=============CP  
    Include                                 CL_SQL_RESULT_SET=============CM006
    Row                                     32                                
    Module type                             (METHOD)                          
    Module Name                             NEXT_PACKAGE                                                                               
Source Code Extract                                                                               
Line  SourceCde                                                                               
2 *                                                                       
    3 * Fetches the next bulk of rows into an internal table.                 
    4 *                                                                       
    5                                                                         
    6   DATA:                                                                 
    7     sql_code       TYPE i,                                              
    8     sql_msg        TYPE dbsqlmsg.                                       
    9                                                                         
   10   FIELD-SYMBOLS:                                                        
   11     <line> TYPE ANY,                                                    
   12     <outtab> TYPE STANDARD TABLE.                                       
   13                                                                         
   14                                                                         
   15   IF me->cursor = c_invalid_cursor.                                     
   16 *   result set has already been closed                                  
   17     RAISE EXCEPTION TYPE cx_sql_exception                               
   18       EXPORTING invalid_cursor = 'X'.                                   
   19   ENDIF.                                                                
   20                                                                         
   21 * check that a reference to the output table has been set by            
      22 * a preceeding call of SET_PARAM_TABLE; in this case the attribute  
   23 * LINE_REF contains a reference to a data structure of the          
   24 * table's line type                                                 
   25   IF me->itab_ref IS INITIAL.                                       
   26     RAISE EXCEPTION TYPE cx_parameter_invalid                       
   27           EXPORTING parameter = 'ITAB_REF'.                         
   28   ENDIF.                                                            
   29   ASSIGN me->itab_line_ref->* TO <line>.                            
   30   ASSIGN me->itab_ref->* TO <outtab>.                               
   31                                                                     
>>>>>   CALL 'C_DB_FUNCTION' ID 'FUNCTION' FIELD 'DB_SQL'                 
   33                        ID 'FCODE'    FIELD c_fcode_next_package     
   34                        ID 'CONNAME'  FIELD me->con_ref->con_name    
   35                        ID 'CONDA'    FIELD me->con_ref->con_da      
   36                        ID 'CURSOR'   FIELD me->cursor               
   37                        ID 'BOUND'    FIELD me->outvals_bound        
   38                        ID 'OUTVALS'  FIELD me->parameters->param_tab
   39                        ID 'OUTTAB'   FIELD <outtab>                 
   40                        ID 'LINE'     FIELD <line>                   
   41                        ID 'UPTO'     FIELD upto                     
   42                        ID 'ROWCNT'   FIELD rows_ret                 
   43                        ID 'SQLCODE'  FIELD sql_code                 
   44                        ID 'SQLMSG'   FIELD sql_msg.                 
   45                                                                     
   46   IF sy-subrc = 0.                                                  
   47 *   some rows fetched                                               
   48     ADD rows_ret TO rows_fetched.                                   
   49                                                                     
   50 *   set the OUTVALS_BOUND flag; this avoids "reassignement" of the  
   51 *   output variables the next time this method is called, i.e. the                                             
Can someone help me to solve this problem. Thanks!

Hi,
Chk the below line from the dump in line 3 - 'Fetches the next bulk of rows into an internal table'
what that error means is the volume which u r trying to view is beyond the size of the internal table buffer and because of that it is leading to a dump.
As the previous reply suggests try to increase the size of table buffer which will help you display much larger volumes.
Selection of fewer columns would be much quicker and easier to analyse data quickly.
Regards

Similar Messages

  • Runtime Errors TIME_OUT

    guyz,
    i am facing the below issue while running DTP to load the master data attr to info object.
    previoulsy it was working perfect but from last few days its getting hanged and throwing this error.
    also records are very few around 2500.
    dont know why its getting hanged.
    Runtime Errors         TIME_OUT
    Date and Time          10/04/2011 16:35:09
    Short text
         Time limit exceeded.
    What happened?
         The program "SAPLSENA" has exceeded the maximum permitted runtime without
         interruption and has therefore been terminated.
    What can you do?
         Note down which actions and inputs caused the error.
         To process the problem further, contact you SAP system
         administrator.
         Using Transaction ST22 for ABAP Dump Analysis, you can look
         at and manage termination messages, and you can also
         keep them for a long time.
    Error analysis
         After a specific time, the program is terminated to make the work area
         available to other users who may be waiting.
         This is to prevent a work area being blocked unnecessarily long by, for
         example:
         - Endless loops (DO, WHILE, ...),
         - Database accesses with a large result set
         - Database accesses without a suitable index (full table scan)
         The maximum runtime of a program is limited by the system profile
         parameter "rdisp/max_wprun_time". The current setting is 600 seconds. If this
          time limit is
         exceeded, the system attempts to cancel any running SQL statement or
         signals the ABAP processor to stop the running program. Then the system
         waits another 60 seconds maximum. If the program is then still active,
         the work process is restarted.
    How to correct the error
        Programs with long runtime should generally be started as background
        jobs. If this is not possible, you can increase the system profile
        parameter "rdisp/max_wprun_time".
        Depending on the cause of the error, you may have to take one of the
        following measures:
        - Endless loop: Correct program;
        - Dataset resulting from database access is too large:
          Instead of "SELECT * ... ENDSELECT", use "SELECT * INTO internal table
          (for example);
        - Database has unsuitable index: Check index generation.
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "TIME_OUT" " "
        "SAPLSENA" or "LSENAF01"
        "FLUSH_PACKAGE"
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File
        (Unconverted)".
        2. Corresponding system log
           Display the system log by calling transaction SM21.
           Restrict the time interval to 10 minutes before and five minutes
        after the short dump. Then choose "System->List->Save->Local File
        (Unconverted)".
        3. If the problem occurs in a problem of your own or a modified SAP
        program: The source code of the program
           In the editor, choose "Utilities->More
        Utilities->Upload/Download->Download".
        4. Details about the conditions under which the error occurred or which
        actions and input led to the error.
    also sometimes when i try to refresh the requests in the manage option of the info object, it doesnt show the previous requests and throws the message
    Refresh of the display terminated because InfoCube/DSO cannot be locked
    Message no. RSM854
    Diagnosis
    InfoProvider 0PROD_CATEG cannot be locked with lock argument RSICCONT.
    System Response
    The display is not refreshed and contains old or incorrect data, that can come from other InfoProviders.
    Procedure
    Check why the sm12 lock is not yet released on the table RSICCONT; Where necessary delete the lock.
    With reproduction of an unauthorized lock, write a message to SAP.
    please guide.
    cheerz,
    raps.

    Dear Raps,
    The program SAPLSENA is the lock handler tool. It is doing
    enqueue/dequeue operations.
    The error should come from the program created running in this dialog
    process and calls the SAPLSENA program to create the lock.
    The problem actually occurs because an application program commits many
    separate calls of DEQUEUE function modules, and thus causes the
    dispatcher queue in the enqueue dispatcher to overflow. Such an
    application program always causes a performance problem. DEQUEUE calls
    are started asynchronously, that is, they normally do not give a
    response, and the calling program continues without waiting time.
    If an overflow of the ENQ dispatcher queue occurs in this case, locks
    are kept forever, and processes that are waiting for an enqueue
    response, will keep hanging.
    Please kindly refer to some notes for more information.
    653996     Analyzing lock situations
    142054     Processes in status stopped ENQ
    97760      Enqueue: Performance and resource consuption
    74141      Resource Management for tRFC and aRFC
    39412      How many work processes to configure
    Please check as well attached note 74141 for RFC load distribution.
    Regards,
    arvind

  • Transaction IA12:ABAP runtime errors:TIME_OUT

    Hi,
    We are executing transaction IA12.We are getting ABAP runtime errors:Time_Out.
    We have searched for a SAP note to sort the issue:SAP Note 607086 - Functional location: Problems when displaying structure list.
    Please suggest what will be the option to solve the issue.
    Thanks.

    Hi,
    searching for the FORM routine where the timeout occurs ("mara_predecessor_f50") and excluding SAP notes that are modification notes or based on the implementation of modification notes, there is only one remaining note
    Note 658930 - Structure list: Configuration not considered with BOM
    for 46C up to Support Package SAPKH46C46.
    If this is still not in your system, the note may be a solution.
    If not, I'm running out of good ideas. Then also the SAP modification notes can be your last option.
    Regards,
    Klaus

  • Lab Windows CVI call produces runtime error in VS 2012

    Making a call to CVI Lab Windows -- NI VISA Libary in Resource Template -- the  funtion viInstallHandler
    It complies/buids into a Visual Studio 2013 project.  But runiing the program on  a Windows 7 machine it produces a Runtime Error.
    Dose anyone have any answers or ideas???

    Hi jpike52,
    Actually this forum is to discuss the VS IDE, as you said that if it is related to the specific project, I'm afraid that it is not the correct forum for this issue.
    To help you find
    more appropriate
    forum, would you mind letting us know more information about it?
    For example, which language did you use in your project, C#, VB or others? Which kind of project did you create, web or WinForm or others?Please let me know more
    information, I will help you find a better development forum for it.
    Best Regards,
    Jack
    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.

  • LSO_PSV2 - Create /w Resources freezing, ABAP runtime error, TIME_OUT

    Hello Experts,
    I have an individual user that is a part of a team that manages our LSO environment. He is experiencing a problem when performing a "Create with resources" on an instructor-led course.
    After choosing this option his session just spins but never enters the course details screen as expected.
    After anywhere from 15 - 30min the session returns an ABAP runtime error of "TIME_OUT". The error details state that the time out for ABAP programs is set to 3000sec (50min). The odd thing is that the program never reaches the 50 min marks but still throws the error.
    The user is able to select the "create w/o resources" option and get to the next screen as expected.
    I have run security traces (ST01) on his account and all looks fine (rc=0)
    He is one of several people that executes this transaction but is the only user that is receiving this issue. The team is assigned to the same position and shares the same PD profile. They share the same security roles and the same ABAP program is being run.These users are a third party vendor that remote in via citrix desktop.
    I have had our Basis team exam the ABAP runtime error and what is happening behind the scenes as this runs and they see no indication that the program is retrieving data even though it processes for a long time.
    Obviously this is a complex issue, I have searched for two weeks with no success. Any thoughts, suggestions are more than welcome at this point as the user is unable to perform needed work functions.

    Any solution on this one? I have the same problem with LSO_PSV2 :/

  • Reader 9.3 produces Runtime error for all .pdf files on hard drive and email

    Does anyone have a resource that can show me how to eliminate a runtime error with Reader 9.3.1, Windows XP w/ SP3 and IE7. I have recently had all .pdf files located on my hard drive and in emails refuse to open because of this message:
    "Runtime Error!
    Program C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe
    This application has requested the Runtime to terminate it in an unusual way.  Please contact the application's support team for more information."
    So far, I have uninstalled and reinstalled Reader 9.3 from the website; added update 9.3.1 and tried to reopen files with no success.
    My organization sends a ton of .pdf files and it is not good when you can't open them for review and action.

    Hi All,
    Although I don't normally post in forums, I thought it prudent to lay this matther to rest.  I have tested the following solution:
    It appears that Adobe Reader likes to check access to each parent folder as well as the actual application data folder.  Apparantly there are other programs that also do similar things. As a result if you have your appdata redirected to \\server1\profiles\%username%\appdata adobe reader would first try directly access \\server1\profiles.  If the user does not have to Traverse folder permission, this fails. Typically you will need to change your permissions on you profile share from:
    -                   Users - Read Attributes (Apply to: This folder, subfolders and files)
    -                   Users - Read Extended Attributes (Apply to: This folder, subfolders and files)
    -                  Users - Create Folders/Append Data (Apply to: This folder, subfolders and files)
    -                   Users - Read Permissions (Apply to: This folder, subfolders and files)
    To the share permissions suggested by Microsoft in KB 274443:
    -                   Everyone - Create Folder/Append Data (Apply onto: This Folder Only)
    -                   Everyone - List Folder/Read Data (Apply onto: This Folder Only)
    -                   Everyone - Read Attributes (Apply onto: This Folder Only)
    -                   Everyone - Traverse Folder/Execute File (Apply onto: This Folder Only)
    Hopefully this helps everyone.

  • HR_ECM_INSERT_INFOTYPE produces runtime error

    Hi All,
         Good Afternoon. I have been trying to us the FM HR_ECM_INSERT_INFOTYPE or the FM HR_INFOTYPE_OPERATION
    and I am receiving runtime errors such as
    CX_HRPA_VIOLATED_ASSERTION or
    CX_SY_REF_IS_INITIAL
    it seems that the message handler is not functioning as I have expected it to function. I have tried to enqueue the pernr prior to this code, but that doesn't help either.
      CALL FUNCTION 'HR_ECM_READ_INFOTYPE'
        EXPORTING
          pernr           = p_pernr
          infty           = '0002'
          message_handler = message_handler
        IMPORTING
          infotype_tab    = p0002_tab
          is_ok           = is_ok.
      CHECK is_ok EQ true.
      SORT p0002_tab DESCENDING.
      READ TABLE p0002_tab INTO w_p0002 INDEX 1.
      MOVE sy-datum TO w_p0002-aedtm.
      CALL FUNCTION 'HR_ECM_INSERT_INFOTYPE'
        EXPORTING
          pnnnn           = w_p0002
          message_handler = message_handler
        IMPORTING
          is_ok           = is_ok.
      CHECK is_ok EQ true.
    Please advise.
    Kind Regards,
    Daniel A. La Mendola

    The FM HR_INFOTYPE_OPERATION  bombs with either
    CX_HRPA_INVALID_PARAMETER or
    CX_HRPA_VIOLATED_ASSERTION or
    CX_SY_REF_IS_INITIAL
    I believe that I am not providing some pertinent information
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
       EXPORTING
         infty         = c_infotype_0008
         number        = p0759-pernr
         validityend   = w_rec_it0008-endda
         validitybegin = w_rec_it0008-begda
         record        = w_rec_it0008
         operation     = c_actio_ins
       IMPORTING
         return        = w_return
         key           = w_infty_key.
    and that is why it bombs.
    Kind Regards,
    Daniel A. La Mendola

  • ADF application deployed to Weblogic producing runtime error

    Hi all,
    We are trying to deploy a new ADF application built by JDeveloper 11.1.1.5.0 to a standalone weblogic (*version 10.3.1.0*)
    The app deploys and runs on integrated wls without any problems, and deploys to the standalone wls without any warnings or errors, but does not run on standalone wls :(
    I checked many possible errors and tried many possible solutions, including, but not limited to;
    --> Checked tag references and page components on jsp/jspx pages, deleted unused or possibly unsupported tags from pages and taglibs from ui project (trinidad components 1.2), but still I get the error
    --> Using 2 different machines with JDev 11.1.1.5 we created test applications with same tech stack, tag libraries and tag references, deployed to standalone wls and they run without problems (!)
    --> Checked web.xml, the file contents and references are the same as of other applications whic are deployed from same environment to the same standalone wls and running without problems (these applications are referenced as "other working applications" following this line)
    --> In sessions.xml, the db connection is default, the file includes 2 references <server-platform xsi:type="weblogic-10-platform"/> and <primary-project xsi:type="xml">META-INF/tlMap.xml</primary-project>
    --> All projects (Model and view) are cleaned and rebuilt, deployment files are recreated, application ear is recreated, runtime application name and context root name ise changed, but still no luck, I get the same error
    --> Project technology stacks are checked and all tech stacks are configured same as "other working apllications" (since their technical architectures are the same)
    --> Checked application datasources; database connections of this application automatically create datasources, for connection dbconn1 there exists a datasource named dbconn1DS as a module in the deployed application. Other working applications had datasources with same name; to prevent a possible conflict in JNDI names of these datasources I changed the name of the db connection to a unique name, deleted the old connection and datasource. But still no luck, error is still SAME.
    --> Test applications (which have trinidad components 1.2 as tag library and there are references to it from page files) run on standalone wls, removing this taglib and the references does not make a difference. But the real application gives error when trinidad is removed from the tag libraries (java.lang.NoSuchMethodError: resetADFContext)
    --> Created new jspx pages which are not using backing beans and tried to access these, but I received the SAME error for these pages as well. Removed all jspx pages except the dummy test pages, and still no change.
    One final note; html pages in the project open without problems, as their url are different from the jspx files ( "host/appName/Test.html instead" of "host/appName/faces/Test.jspx" ) and when these pages open, the server log and console indicates new sessions created by this request.
    This is the famous error I get on the server log every time I try to access a jspx file:
    ####<Jul 31, 2012 9:14:12 AM EEST> <Error> <HTTP> <hostname> <ADF_SRV1> <[ACTIVE] ExecuteThread: '24' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1343715252920> <BEA-101020>
    <[ServletContext@142296767[app:KiymetliEvrak module:KiymetliEvrak path:/KiymetliEvrak spec-version:2.5]] Servlet failed with Exception
    java.lang.NullPointerException
         at oracle.adfinternal.controller.util.AdfvInterfaceImpl.addQueryParameters(AdfvInterfaceImpl.java:162)
         at oracle.adfinternal.controller.state.ControllerState.initializeUrl(ControllerState.java:708)
         at oracle.adfinternal.controller.state.ControllerState.synchronizeStatePart2(ControllerState.java:467)
         at oracle.adfinternal.controller.application.SyncNavigationStateListener.afterPhase(SyncNavigationStateListener.java:46)
         at oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$PagePhaseListenerWrapper.afterPhase(ADFLifecycleImpl.java:531)
         at oracle.adfinternal.controller.lifecycle.LifecycleImpl.internalDispatchAfterEvent(LifecycleImpl.java:120)
         at oracle.adfinternal.controller.lifecycle.LifecycleImpl.dispatchAfterPagePhaseEvent(LifecycleImpl.java:168)
         at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$PhaseInvokerImpl.dispatchAfterPagePhaseEvent(ADFPhaseListener.java:124)
         at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:70)
         at oracle.adfinternal.controller.faces.lifecycle.ADFLifecyclePhaseListener.afterPhase(ADFLifecyclePhaseListener.java:53)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:352)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:165)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:85)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:421)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:54)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:421)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.security.jps.wls.JpsWlsFilter$1.run(JpsWlsFilter.java:96)
         at oracle.security.jps.wls.JpsWlsFilter.doFilter(JpsWlsFilter.java:140)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:70)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:202)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3588)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2106)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1428)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    Could anybody please help, where to focus to see the REAL indications and solutions of this annoying error? Soon I will get this application to production environment, so any help would be appreciated.
    Thanks in advance...

    Ok, I think I should give the update, on how I struggled to solve the problem;
    --> I did NOT update the wls, since it is the production server and has many applications and services running on it , I could not take the risk of breaking those.
    --> I migrated, or rewrote the application on JDeveloper 11.1.1.1.0, rewrote the toplink map file, descriptors, pageDefs bla bla, to make it compatible with wls 10.3.1.0.
    --> Then I tested the app on JDev 11.1.1.1.0 ok, then opened the same application on JDev 11.1.1.5.0 then tested ok....
    --> And I deployed the application from JDev 11.1.1.5.0 to the standalone wls, and this is where the magic happened, the app worked without error on standalone wls 10.3.1.0
    +( Just a note: I really wonder, where is the backward, or forward compatibility of ide and server runtimes? )+
    Anyway, it is a big lesson for me about choosing the ide version for a specific server.
    Thank you...

  • IDOC Runtime error TIME_OUT has occurred

    Dears,
              We are having a Machine to Machine Order interface, where huge volume of order files are being sent to SAP from legacy system through XML files which PI interface converts as Inbound IDOCs.
    The issue we are facing here is : when huge number of order files are sent the IDOCs are stuck in 51 status due to TIME_OUT error. This is mainly because of :
    1. Huge volume of files
    2. Size of files
    which eventually leads to optimum consumption of system resources and thus leading to TIME OUT errors, where order files gets stuck under 51 status with TIME OUT errors.
    Alternative solutions : During peak season we do re run the IDOCs when the system resources are up or not busy.
    Let me know, are there any other approach which we can consdier other than below mentioned ones :
    1. Batch jobs
    2. Bang on for bigger app servers
    Your inputs and suggestions are highly appreciated.
    Regards
    Chirag Gowda

    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

  • Podcast Producer Youtube workflow fails. Script produces runtime errors

    A guide was written regarding creating a Podcast Producer workflow for YouTube. Unfortunately, the completed script (even with all of the relevant API bits installed properly) returns an exception when trying to upload the video (client ID, data API have been substituted into the script). The Java script compiles and runs. However, when it failed, I decided to toString() the exception which was called and found out that Google was returning "Bad Request," meaning something with the way the Script was trying to talk to Google was bad. The code is still the reference code with the CID/DevKey subbed in, but because of the Bad Request exception passed by Google, it fails to upload, and thus, fails entirely.
    Is there a proper working YouTube workflow anywhere?

    Apologies: I just found the Podcast Producer forum, so I'm going to mark this one as answered and repost the question in the Podcast Producer forum now that I know a specific forum for it exists.

  • Portal Runtime Error while creating  new system in portal content

    Hi
      Can anyone  solve my problem, i am geting error while creating new system in p ortal content
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/com.sap.pct/admin.templates/iviews/editors/com.sap.portal.templateSelection
    Component Name : com.sap.portal.admin.templateselectionwizard.default
    com/sap/portal/iviewserver/cache/OClass.
    Exception id: 11:29_26/12/06_0014_5891950
    See the details for the exception ID in the log file

    Hi,
    Check this link for creating system object
    http://help.sap.com/bp_epv260/EP_EN/documentation/EP/N03_BB_InstallGuide_EN_US.doc
    Regards
    Arun

  • Unable to Open Inbox in SBWP - runtime error

    Hi Gurus,
    I have a problem with my inbox - I'm experiencing runtime error (time_out) when opening it. It says 'Time limit exceeded', and 'The program 'SAPFSSO0' has exceeded the maximum permitted runtime without interruption and has therefore been terminated.
    Can anyone of the Workflow experts tell me what is the probable cause, and what do you sugggest to solve this and prevent from happening again?
    Thanks!
    Regards,
    Joyreen

    This may or may not solve your problem but gives you an idea on performance of SBWP.
    Check the Note 764707 - Performance in Business Workplace
    This note describes the factors that affect the performance in the Business Workplace, and ways in which you can improve the performance:
    The performance in the workflow inbox depends on several factors:
    1. Use of organizational objects (O, S ...) for tasks
    If agent assignment for tasks is controlled using organizational objects, a structural explosion is necessary. Complex organizational structures can mean that the time required to construct the inbox is greater. This is carried out once a day for each user when the user logs on initially, and the information is then buffered. As a result, the initial construction of the inbox takes the most time.
    2. Number of work items in the system
    The time required for selecting work items for a user increases with the number of work items that exist in the system.
    3. Number of work items that are displayed in the workflow inbox or in the subordinate views.
    4. Use of dynamic columns
    The dynamic columns are filled on a task-specific basis with content that is determined dynamically during runtime. To do this, it is necessary for the system to read the work item container and then to determine the attributes to be displayed, for example, of an business object.
    Displaying the dynamic columns greatly affects performance, since the system accesses both the work item container and application tables.
    5. Grouping according to contents, content type and sort key
    Each work item carries the two container elements WIObject_ID (dominant object) and WIGroup_ID (Grouping characteristic) to its container. Both elements are defined so that an object reference can be included.
    Grouping according to content and content type is based on the container element WIObject_ID, and grouping according to sort key is based on WIGroup_ID. For each of these grouping types, the system needs to access the container for each work item to read the object reference. In addition, the system must determine the default attribute of the respective object, which involves accessing the application tables.
    6. Showing the columns group object and work item contents
    As above, showing the two columns is based on the container elements WIObject_ID and WIGroup_ID. The system determines the values to be shown by reading the work item container and the default attribute of the relevant object.
    Solution
    1. Detail the assignment of tasks in the organizational model.
    2. Archive work items that are no longer needed (see Note 49545).
    3. In the Business Workplace, BAdIs are available for the following purposes:
    a) WF_BWP_SELECT_FILTER
    This BAdI enables you to limit the number of the work items displayed by filtering. It is mainly suited to scenarios where all users are working on the same inventory of work items (for example, call center).
    (see Note 765783)
    b) WF_BWP_DYN_COLUMN
    Hiding the dynamic columns improves performance in the Business Workplace.
    If this is not possible, you can implement the BAdI WF_BWP_DYN_COLUMN to determine the values of the dynamic columns directly from the application data. The BAdI is available with Note 848382.
    c) WF_BWP_OBJ_ATTRIBUTE
    With this BAdI, it is possible to set the default attributes of the dominant object (_WI_Object_ID) and the grouping characteristic (_WI_Group_ID). The default attributes are used for grouping according to content, and grouping according to sort key and for hiding the group object column and work item content.
    The BAdI is available with Note 848382.
    4. It is also advisable to implement Note 848382 (or one of the corresponding Support Packages) if you do not want to implement either of the BAdIs. The note also contains an optimization that affects the determination of the object references in the container elements WIObject_ID and WIGroup_ID.
    Header Data
    Regards,
    PR.

  • Runtime error in web dynpro java

    Hi friends,
    i have designed and run the project for adobe pdf form,compliation is ok...but it produce runtime error please tel me what is error how to rectify that...
    The error is
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Root Cause
    The initial exception that caused the request to fail, was:
       com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (401) Unauthorized. The requested URL was:"https://<name>.us:443/AdobeDocumentServices/Config?style=document"
        at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.handleResponseMessage(MimeHttpBinding.java:980)
        at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.call(MimeHttpBinding.java:1430)
        at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:78)
        at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:95)
        at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:385)
        ... 35 more
    Thanks in advance
    Manee R

    Hi Mani,
    To be able to use PDF forms in Web Dynproapplications:
    &#56256;&#56442;SAPNetWeaverDeveloper Studio(minimum SPS 11) is installed
    &#56256;&#56442;Adobe LiveCycleDesigner7.0 is installed
    &#56256;&#56442;Adobe Reader7.0.x is installed
    &#56256;&#56442;SAP NetWeaverWeb AS Javacompatible with the DevStudiois installed
    &#56256;&#56442;The Adobe Document Servicesare deployed and configured on the SAP J2EE Engine.
    &#56256;&#56442;The Active Component Framework(ACF) of the Interactive Forms integration is installed. (not mandatory)
    Check this.
    reg errors in webdynpro runtime
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2b6db1c4-0801-0010-faa5-ff4b4df55b45
    Regards,
    Mithu

  • WPC Runtime Error in Customer Framework Page

    Hi again,
    after successful proof of concept of WPC we have integrated some WPC Pages and iViews in our standard roles. Pages are displayed well with default framework page.
    But using customer specific framework (via portal url alias /portal/mySite and corresponding display rules) we get an error displaying wpc content in runtime:
    Cannot render container : com.sap.engine.lib.xml.util.NestedException:
    Could not load class: com.sap.nw.wpc.km.service. editor.xslt.XsltHelper
    RuntimeStandard required for extension library. -> java.lang.ClassNotFoundException:
    com.sap.nw.wpc.km.service. editor.xslt.XsltHelperRuntimeStandard Found in negative cache
    I have checked SAP Note 1133788 (Com.sap.engine.lib.xml.util.NestedException in WPC) which seems to be related, but adjusting of XSLT Helpers for Editor setting does not fix the problem.
    I mentioned that settings for standardruntime entry (com.sap.nw.wpc.km.service.editor.xslt.XsltHelperRuntimeStandard) should match to customer Alias insted of default portal, but changing these setting won't have any visible result.
    If I use default framework page with customer layout wpc runtime will work - so we have a temporary solution, but we want to avoid changing default framework page.
    Any hints or documentation?
    Many thanks in advance

    Hi Thorsten,
    maybe you should have a look at this [one.|https://forums.sdn.sap.com/thread.jspa?threadID=599765&tstart=0]
    I think it's the same thing that was mentioned in the SAP Note you provided. But maybe you extract some additional hints for yourself out of the posts.
    Let me know, if you manage to solve the problem.
    Regards,
    Marcus

  • ReadGraphicsData - not found runtime error

    I downloaded 3.6 SDK and unpacked it in the Flex 4.6 SDK folder to replace 3.5 SDK. Created new desktop project and in application file on creationComplete added   call "graphics.readGraphicsData(true);". It compiles but when I try to run it it produces runtime error: "ReferenceError: Error #1069: Property readGraphicsData not found on flash.display.Graphics and there is no default value.". What can be wrong?
    Update: If I add manually -swf-version=19 to compiler arguments it works.
    Best Regards, Aleksey

    Hi,
    Kindly try running transaction BUSP.
    Thanks and warm regards,
    Tapan.

Maybe you are looking for

  • Envy dv6 notebook - Hard drive failure - How do I get windows 8 reloaded on my Notebook

    Hard drive failed in the notebook / laptop. How do I get windows 8 back on the new drive? Hp told me they will not send or sell me recovery disks. WHat kind of crap is that? Help!

  • Download column link to SQL report

    Hi , I am using apex 4.1. I have a SQL report  with blob image column also . And along with the image i need to add download link as a column can some one please suggest me how to do it. Thanks Raghav

  • Top quote doesn't contain message info when quotin...

    v7.2.0.103 I've noticed this happening in the past few months and it's really annoying. When I'm quoting multiple people's messages, the first message I quote doesn't include a timestamp. See my screenshot. These are the messages I'm copying. Below t

  • Best way to monitor the ON time of something in a minute ?!

    Greetings everybody, I first have to thank everybody offers help to others here. I have a question regarding the Best way to monitor the ON time of something in a minute. Say I have an On/Off switch that I want to know how many seconds that it was ON

  • Can anyone help me re transferring music

    I want to copy the music that I have on my iphone and ipad into my existing itunes library but when I go to sync them it says that the music will be wiped off my device and replaced with the music from the library. Can anyone help? Thanks