Runtime TIME_OUT  error

hi
select budat belnr wrbtr sgtxt kostl hkont xref3 gjahr from bsis into table itab_data where
        budat in s_budat and gjahr in s_year and belnr in s_docno and hkont in s_hkont
              and kostl in s_kostl .
select budat belnr wrbtr sgtxt kostl hkont xref3 gjahr from bsas into table itab_data1 for all entries in
   itab_data where belnr = itab_data-belnr and gjahr = itab_data-gjahr .
this is my piece of code..
when i am executing it is giving TIME_OUT runtime error.
both the tables has huge amount of data....
can anybody suggest me how can I over come from this runtime error.
resma
Moderator message: Please Read before Posting in the Performance and Tuning Forum
Edited by: Thomas Zloch on Nov 26, 2010 1:28 PM

HI,
Try with this code
SELECT budat belnr wrbtr sgtxt kostl hkont xref3 gjahr
      FROM bsis
      INTO TABLE itab_data
      WHERE mandt = sy-mandt
      AND   bukrs IN s_bukrs " These three or two field should be made mandatory in selection screen bukrs belnr gjahr
      AND   belnr IN s_docno
      AND   gjahr IN s_year.
IF NOT s_budat[] IS INITIAL.
  DELETE itab_data WHERE NOT budat IN s_budat.
ENDIF.
IF NOT s_hkont[] IS INITIAL.
  DELETE itab_data WHERE NOT hkont IN s_hkont.
ENDIF.
IF NOT s_kostl[] IS INITIAL.
  DELETE itab_data WHERE NOT kostl IN s_kostl.
ENDIF.
IF NOT itab_data[] IS INITIAL.
  SELECT budat belnr wrbtr sgtxt kostl hkont xref3 gjahr
          FROM bsas
          INTO TABLE itab_data1
          FOR ALL ENTRIES IN itab_data
          WHERE mandt = sy-mandt
          AND   bukrs IN s_bukrs
          AND   belnr = itab_data-belnr
          AND   gjahr = itab_data-gjahr .
ENDIF.

Similar Messages

  • TIME_OUT error while trying to execute a report

    Hi all,
    When I try to exceute a Z report using a particular variant, it displays the output.
    However, when another person tries to run the same Z report using the same variant, it gives a TIME_OUT error.
    ABAP runtime errors    TIME_OUT
    Time limit exceeded.
    Please let me know the reason for this.
    Thanks and regards,
    Anishur

    Hi Anishur,
    Is the TIME OUT occuring on the same client as you are running the report?  And if so, does the user have the same authorisation as you?  The TIME OUT will occur if the program is handling more data, if you are seeing different performance it will be down to the amount of data process.
    As others have suggested, look at improving the performance of the report.
    Regards,
    Nick

  • BI 7.01 BEx report/workbok Time_Out Errors

    Hi,
    Our BEx reports/workbooks are failing with time_out error's. Below are the time_out error details: BEx workbooks are executed through VB Script.
    Some days they run fine and some days they time_out.
    The program "CL_RSDRH_HIER_CACHE===========CP" has exceeded the maximum
    permitted runtime without
    interruption and has therefore been terminated.
    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" " "
    "CL_RSDRH_HIER_CACHE===========CP" or "CL_RSDRH_HIER_CACHE===========CM00D"
    "ADD_MEM"
    Other time_out error's as below:
    1) The program "SAPLRSDRC_SPLIT" has exceeded the maximum permitted runtime
    without
    interruption and has therefore been terminated.
    Termination occurred in the ABAP program "SAPLRSDRC_SPLIT" - in "SELAGGR_GET2".
    The main program was "SAPMSSY1 ".
    In the source code you have the termination point in line 1101
    of the (Include) program "LRSDRC_SPLITF01".
    2) The program "CL_RSDRH_HIER_CACHE===========CP" has exceeded the maximum
    permitted runtime without
    interruption and has therefore been terminated.
    Termination occurred in the ABAP program "CL_RSDRH_HIER_CACHE===========CP" -
    in "CHECK".
    The main program was "SAPMSSY1 ".
    In the source code you have the termination point in line 80
    of the (Include) program "CL_RSDRH_HIER_CACHE===========CM001".
    3) The program "SAPLRSDRC_SPLIT" has exceeded the maximum permitted runtime
    without
    interruption and has therefore been terminated.
    Termination occurred in the ABAP program "SAPLRSDRC_SPLIT" - in
    "SELDR_TO_AGGROBJ".
    The main program was "SAPMSSY1 ".
    In the source code you have the termination point in line 214
    of the (Include) program "LRSDRC_SPLITF01".
    4) The program "SAPLSENA" has exceeded the maximum permitted runtime without
    interruption and has therefore been terminated.
    Termination occurred in the ABAP program "SAPLSENA" - in "FLUSH_PACKAGE".
    The main program was "SAPMSSY1 ".
    In the source code you have the termination point in line 229
    of the (Include) program "LSENAF01".
    Recently we have increased the parameter "rdisp/max_wprun_time" from 5400 to  7200 Seconds.
    Pl. advise.

    Hello,
    I think this is quite easy.
    Execute the report SAP_DROP_TMP_TABLES (via SE38 transaction) and the issue should be solved.
    For more details, see notes 698280 and 1139396.
    Let me know if persist.
    Best Regards,
    Edward John

  • TIME_OUT error while executing an ABAP report

    Hi All,
    I have an ABAP report in which the code looks like below
    LOOP AT pernr_tab . " *Internal table consists of  around 25k records* 
       IF last_run_date IS INITIAL. " Initial Load
          PERFORM fill_data USING pernr_tab-pernr last_run_date CHANGING lv_flag.
          lv_flag = 'x'.
          initial_count = initial_count + 1.
        ELSE.
          PERFORM fill_data USING pernr_tab-pernr last_run_date CHANGING lv_flag.
          IF pernr_tab-status EQ '3' AND pernr_tab-begda GE today. " Future Hire records during delta load
            lv_flag = 'x'.
          ENDIF.
          IF lv_flag EQ 'x'.
            delta_change_count = delta_change_count + 1.
          ENDIF.
        ENDIF.
        IF lv_flag = 'x'. "initial load or changes in some infotype for delta load
          PERFORM append_data.
          CLEAR: p0000_tab[],p0000,p0001_tab[],p0001,p0002_tab[],p0002,p0006_tab[],p0006,p0006_phone,
    p0007_tab[],p0007,p0027_tab[],p0027,p0032_tab[],p0032,p0105_tab_usr[],p0041_tab[],p0041.
          CLEAR: p0105_usr,p0105_tab_ven[],p0105_ven,p0105_tab_mgr[],p0105_mgr,p0709_tab[],p0709,pos_id,
    functional_title,p0521_tab[],p0521,p2001_tab[],p2001,corporate_band_code,corporate_title_code,wa_pernr_tab.
        ENDIF.
      ENDLOOP.
    inside the loop i am fetching data from 10 different infotypes and adding into another internal table.When I execute this program it is giving TIME_OUT error.Is there any way i can resolve this issue(I dont want to run this program in the background)
    Thanks
    Bala Duvvuri
    Edited by: Bala Duvvuri on Jul 13, 2010 8:25 AM
    Edited by: Thomas Zloch on Jul 13, 2010 4:58 PM - line width reduced

    fill_data
    reading 10 infotypes
    call function 'HR_READ_INFOTYPE'
      exporting
    *     TCLAS                 = 'A'
        pernr                 = p_pernr_tab_pernr
        infty                 = '0000'
       begda                 = '18000101'
       endda                 = '99991231'
    *   bypass_buffer         = 'X'
      tables
        infty_tab             = p0000_tab
    exceptions
       infty_not_found       = 1
       others                = 2
      if sy-subrc <> 0.
      endif.
      if p0000_tab[] is not initial.
        sort p0000_tab by endda  descending.
        read table p0000_tab into p0000 index 1.
        if p0000-aedtm ge last_run_date.
          lv_flag = 'X' ." Infotype 0 has been changed
        endif.
      endif.
    append_data
    assigning 50 different fields from above infotypes to ls_emp_data
    ls_emp_data-functional_title = functional_title.
      ls_emp_data-last_update = today.
      if ( p2001-awart = '5006' and p2001-begda <= today and p2001-endda >= today ) or
    ( p0521-atzph = 'AB' AND p0521-begda <= today AND p0521-endda >= today ).
        ls_emp_data-absent = text-007.
      ELSE.
        ls_emp_data-absent = text-008.
      ENDIF.
      ls_emp_data-corporate_band_code = corporate_band_code.
      ls_emp_data-corporate_title_code = corporate_title_code.
      APPEND ls_emp_data TO lt_emp_data.
      CLEAR:ls_emp_data,lv_flag.
    Thanks
    Bala Duvvuri
    Edited by: Thomas Zloch on Jul 14, 2010 2:48 PM - code tags added

  • I'm trying to download office 365 small business package, and every time I try the website it says there is a runtime service error in the '/' application. Is this my mac or is it the website, and how can I fix it?

    I'm trying to download office 365 small business package, and every time I try the website it says there is a runtime service error in the '/' application. Is this my mac or is it the website, and how can I fix it?

    If a phone is sold from one friend to another and wants to use it on a different carrier the friend can contact the carrier it was sold by to request it unlocked.  I know AT&T, Verizon, and Sprint will give you the steps to unlock it as long as the original contract it was bought under has been completed.  eBay/Craigslist is really not the best place to try to get "unlocked phones" from, if it turns out the phone isn't unlocked then I'm really sorry you got stuck with that one and as stevejobsfan said above I would report them immediately and see if you can recover your money.  I sell phones for a living and this happens a lot

  • TIME_OUT error with /sapapo/rtsinput_cube

    We are in the process of cutting over to a new
    planning area ZPA2 with data from a backup InfoCube
    (ZIC21), and the /sapapo/rtsinput_cube program
    is failing with a TIME_OUT error.
    The overall job finishes with a success message,
    although data is only partially loaded in to the
    planning area. When you look at the spool, the first
    steps are green, then the job times out for the
    subsequent steps.
    We ran this first with 3 key figures being loaded
    from cube to planning area for approx 1/5 of 464000
    CVCs for 5 years in monthly buckets only.
    This errored with SAPSQL_INVALID_FIELDNAME message as
    well as the TIME_OUT error message, and data was
    loaded partially in the ZPA2 planning area (only 2
    months).
    We then reduced the time horizon from 5 years of
    months to be only 1 year in months.
    This errored with the TIME_OUT error message. Again,
    data was partially loaded in to the planning area
    (about 7 of the 12 months was loaded).
    The prime issue is with the constant time out.
    Has anyone any idea how to solve this problem ?

    not sure what version you are using but if you are on the latesr versions, its a good idea to use parallel processing - you can find it on the additonal settings tab
    you can also set it to copy only the specified period (previously it copied the whole bucket in the planning area to cover the time period)
    if you are in versions that dont support this - then you can create parallel jobs that get triggered by an event or use a process chain and run this in parallel. As long as you dont overlap the periods it should be fine
    you should also ask your basis team to check the time out set up for the application and get it extended (you can see this in rz11 i think and choosing the correct parameter - would leave it to the basis folks to help in this) Alternately check your processing power and see if you can get it increased

  • ITunes crashes when doing a power search. I get a Microsoft Visual C   Runtime Library Error message: Program C:\Program Files (x86)\iTunes\iTunes.exe R6025.  Pure virtual functional call.  If I select ok, Windows 7 pops up with iTunes has stopped working

    iTunes crashes when doing a power search. I get a Microsoft Visual C   Runtime Library Error message: Program C:\Program Files (x86)\iTunes\iTunes.exe R6025.  Pure virtual functional call.  If I select ok, Windows 7 pops up with iTunes has stopped working and then it shuts iTunes down.  Anyone else every have this issue.  Any ideas on a fix?
    Thanks,

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • B575: Microsoft Visual C++ Runtime Library Error on Startup? Please Help!

    This came out of the blue, I just started up my laptop and out of no where my Windows 7 Ultimate transperancy graphics are gone and I can't connect to the internet! I get this message on startup saying 'Microsoft Visual C++ Runtime Library Error', for controlhandler.cpp and I have no clue what it is! I tried a clean boot and safemode boot, and it is the same thing! Please help
    Solved!
    Go to Solution.

    hi ironmax,
    As a last resort, you can:
    1. Press the One Key Recovery button to restore the unit from factory settings or
    2. Create a recovery disc and use this disc to restore the system from factory
    Note:
    Backup important before doing a factory reset
    Regards,
    neokenchi
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Microsoft Visual C++ Runtime Library Error in T430S during HP printer install

    I just bought a T430S Windows 8 and I'm having problems installing the software and drivers for my HP Photosmart D-110-a printer. I've owned the printer for a year and it was no problem installing the software that it came with on my previous Dell Windows 7. Every time I try to install from the CD-Rom or download the software from HP, I get a Microsoft Visual C++ Runtime Library Error message. Please someone help!
    By the way, I am able to print to the machine because I think HP printer driver was preloaded on the Start screen from Lenovo. Is it possible the reason why I can't install the software that the my HP printer came with, is because HP driver was preloaded? The issue of not being able to install the full software, is that I can't monitor ink levels or scan items from the computer.

    It looks to me like HP never made a windows8 driver for that printer. You might read this:
    http://h30434.www3.hp.com/t5/Printer-All-in-One-Software-Drivers-e-g-Windows-8/windows-8-driver-hp-p...

  • Getting time_out Error in report bcos of SQL Statement!

    Hi Experts,
    I am getting Time_out error  in my big program because of Select statement.I have checked in SQL Trace AND  fuond the message
    "SQL0104N  An unexpected token "vakey" was found following "umh
      kschl".  Expected tokens may include:  ",".  SQLSTATE=42601"
    I have given the following code and SQL statement where the error is getting occured.Please help.
    TYPES: BEGIN OF ty_vakey1,
               vakey TYPE vakey,
             END OF ty_vakey1,
             ty_t_vakey1 TYPE HASHED TABLE OF ty_vakey1 WITH UNIQUE KEY vakey.
      DATA: ih_vakey1 TYPE ty_t_vakey1,
            wa_vakey1 TYPE ty_vakey1,
            wa_vakey  TYPE ty_vakey.
      LOOP AT i_vakey INTO wa_vakey.
        wa_vakey1-vakey = wa_vakey-vakey.
        COLLECT wa_vakey1 INTO ih_vakey1.
        CLEAR wa_vakey1.
      ENDLOOP.
      IF ih_vakey1 IS NOT INITIAL.
    Here it is required to select the Key field and so cannot be used in Where condition
        SELECT knumh                                             "Condition record number
               kschl                                             "Pricing conditions
               vakey                                             "Variable Key
               datab                                             "Valid-From Date
               datbi                                             "Valid To Date
               FROM konh
               INTO TABLE i_konh
               FOR ALL ENTRIES IN ih_vakey1
               WHERE vakey EQ ih_vakey1-vakey .           "#EC CI_NOFIELD
    Here #EC CI_NOFIELD is used because the key field of the table konh ( ie knumh)
    is to be selected and so is not used in the WHERE condition above
        IF sy-subrc NE c_0.
    No data found for specified criteria
          MESSAGE i036.
          LEAVE LIST-PROCESSING.
        ENDIF.
    Thanks&Regards,
    Sarkar

    Check if i_konh definition matches the fields in the SELECT statement.
    Also, since you're not using the primary key when selecting from KONH table, such program by design is going to run forever and may time out eventually. Usually KONH is a very large table. Not sure what's the purpose of this program, but I'm pretty sure there must be some other way to program this. There are actually some standard FMs that read the conditions.
    A secondary index might help, but only as a last resort.

  • Runtime environment error when starting MaxDB

    Hi,
    I downloaded SAPNetWeaver04SneakPreviewSlimSP11.zip edition from the SDN. I followed the preinstallation directions very closely and believe I have the correct environment set up.  However, during the installation process I ran into the following error when the program tries to start the MaxDB server:
    ERR
    -24994,ERR_RTE: runtime environment error
    1,'J2E' has stopped unexpectedly, (view 'Application Event Log')
    Unfortunately, I'm not able to view the Application Event Log because Windows gives me an error message saying: Unable to complete the operation on 'Application'.  The interface is unknow.
    Here is the text from my XSERVER.PRT file:
    Date       Time       TID(hex) Typ MsgID Label    Message-Text
    2006-01-04 12:19:37      0xB20     19705 CONNECT  Loading default TCPIP-DLL, ( 'sqltcp.dll')
    2006-01-04 12:19:37      0xB20     19707 CONNECT  WINSOCK: 2.0, SQLTCP-DLL: 7.5.0
    2006-01-04 12:19:37      0xB20     19751 XSERVER  started, 'W32/INTEL 7.5.0    Build 007-123-057-359'
    2006-01-04 12:19:37      0xB20     19898 ENVIRON  Environment dump start
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   ALLUSERSPROFILE=C:\Documents and Settings\All Users
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   ANT_HOME=C:\apache-ant-1.6.5
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   CLASSPATH=C:\Program Files\Java\j2re1.4.2_09\lib\ext\QTJava.zip
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   CommonProgramFiles=C:\Program Files\Common Files
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   COMPUTERNAME=LOCALHOST
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   ComSpec=C:\WINDOWS\system32\cmd.exe
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   FP_NO_HOST_CHECK=NO
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   JAVA_HOME=C:\j2sdk1.4.2_09
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   NUMBER_OF_PROCESSORS=1
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   OS=Windows_NT
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   Path=C:\j2sdk1.4.2_09\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbe
    2006-01-04 12:19:37      0xB20     19898 ENVIRON    m;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\Microsoft
    2006-01-04 12:19:37      0xB20     19898 ENVIRON     Office\OFFICE11\Business Contact Manager\IM;C:\Program Files\Microsoft SQL Serv
    2006-01-04 12:19:37      0xB20     19898 ENVIRON    er\80\Tools\Binn\;C:\Program Files\Microsoft Office\OFFICE11\Business Contact Ma
    2006-01-04 12:19:37      0xB20     19898 ENVIRON    nager\;C:\apache-ant-1.6.5\bin;C:\Program Files\QuickTime\QTSystem\;
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   PROCESSOR_ARCHITECTURE=x86
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   PROCESSOR_IDENTIFIER=x86 Family 6 Model 13 Stepping 8, GenuineIntel
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   PROCESSOR_LEVEL=6
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   PROCESSOR_REVISION=0d08
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   ProgramFiles=C:\Program Files
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   QTJAVA=C:\Program Files\Java\j2re1.4.2_09\lib\ext\QTJava.zip
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   SonicCentral=C:\Program Files\Common Files\Sonic Shared\Sonic Central\
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   SystemDrive=C:
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   SystemRoot=C:\WINDOWS
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   TEMP=C:\WINDOWS\TEMP
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   TMP=C:\WINDOWS\TEMP
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   USERPROFILE=C:\Documents and Settings\SAPServiceJ2E
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   windir=C:\WINDOWS
    2006-01-04 12:19:37      0xB20     19898 ENVIRON   NTALT_SYMBOL_PATH=c:\sapdb\programs\symbols
    2006-01-04 12:19:37      0xB20     19898 ENVIRON  Environment dump completed
    current write position -
    Any help would be greatly appreciated.

    Hello Roland,
    Thank you for your reply.
    Unfortunately, those files were not created during the installation process.  I search the location you specified plus I searched the entire hard drive but the files could not be located.
    The only file I found in \sapdb\data\wrk\<SID> was a file called dbm.prt.  The file contained the following:
    Date       Time     TID(hex)   Typ MsgID      Label    Message
    2006-01-04 22:20:58 0x000014e4              0 DBM      command db_start
    2006-01-04 22:21:00 0x000014e4 ERR     -24994 DBM      ERR_RTE: runtime environment error
                        0x000014e4 ERR     -24994 DBM      1,'J2E' has stopped unexpectedly, (view 'Application Event Log')
    2006-01-04 22:21:02 0x00001588              0 DBM      command db_start
    2006-01-04 22:21:04 0x00001588 ERR     -24994 DBM      ERR_RTE: runtime environment error
                        0x00001588 ERR     -24994 DBM      1,'J2E' has stopped unexpectedly, (view 'Application Event Log')
    Is there another log file that might be able to help?
    Thank you for your assistance.

  • ITunes Error 7, (windows error 1114) runtime library error R6034

    Need help, update failed, iTunes Error 7, (Windows error 1114) runtime library error R6034, lost iTune library.

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • Visual C++ runtime library error when generating printed documentation from RH9

    I just upgraded a project from RH 7 to RH 9. I tried generating printed documentation in Word from it, but as soon as the Printed Documentation dialog opened, a Visual C++ Runtime Library error displayed. RoboHelp stopped working and I had to restart.
    I tried using one of the sample projects -- same thing happened.
    I then created a brand-new project. This time, opening the Printed Documentation dialog worked. I selected "Generate Word Doc" and the .docx extension, since I have Word 2010,  and tried to generate printed documentation. However, the following message then displayed: Cannot find Microsoft Word installed on your system.
    So I have two questions:
    - How can I avoid crashing RoboHelp when generating printed documentation?
    - How can I ensure that RoboHelp finds the Word 2010 installation on my system?
    Thanks for any help!
    OK, just played around a bit more and I was able to help myself on the first question:
    - I created a new Printed Documentation Layout in the Single Source Layouts pane, and from there I was able to generate .pdf files, without encountering the Visual C++ runtime error.
    - But the "Cannot find Microsoft Word installed on your system." msg still pops up when I try to generate .docx files. (When I generate .doc files, they have no content.)
    Message was edited by: mizotto

    First the fact that the problem is with old layouts suggest they were using an old template.
    The PDF creation relies on a Word document being created in the background. The fact that you cannot generate a good doc or docx makes it odd that you get a PDF. The PDF is OK I take it?
    I'm wondering if you have not applied the 901 patch and are running Word 2010 64 bit?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • FME Runtime Library Error: flvmuxoutpin.cpp

    I am trying to publish a stream from a USB webcam. I get the
    following error when I press the "Start" button.
    Assertion failed!
    Program: FlashMediaEncoder.exe
    File:.\flvmuxoutpin.cpp
    Line: 1044
    Expression: stop_reftime >= start_reftime
    For information on how your program can cause an assertion
    failure, see the Visual C++ documentation on asserts
    You can see a screenshot here:
    FME
    Runtime Library Error
    When I use a firewire connected camcorder, I do NOT get this
    error. Any advice? This is a repeatable issue.

    hi ironmax,
    As a last resort, you can:
    1. Press the One Key Recovery button to restore the unit from factory settings or
    2. Create a recovery disc and use this disc to restore the system from factory
    Note:
    Backup important before doing a factory reset
    Regards,
    neokenchi
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Runtime dump error getting while goods posting

    Hi,gurus
      When in MB1C i am trying to post goods.While saving i got message 49 number ranges should be defined.I done it clear in FBN1.So when i am saving posting goods i am getting runtime dump error.So how can i solve this problem
    Regards,
    Suresh

    Hi,
    Check in Transaction OMBT whether maintained number ranges against WA.
    WA     Goods issue
    WE     Goods receipt
    WI     Inventory document
    WL     Goods issue/delivery
    Rewards if it helps
    Regards
    Goutham

Maybe you are looking for