BAPI Runtime Error DBIF_RSQL_INVALID_REQUEST with module "KONV_BEARBEITEN"

Hi Experts
I am trying to create a sales order using BAPI FM BAPI_SALESORDER_CREATEFROMDAT1. After executing the program it shows in output screen that the sales order created and also displays the newly created sales order number. But when I want to check the order from VA03 it shows Express document "Update was terminated" received by author AAA, where AAA is login name.
I also analysis the sort dump for which the update process was terminated. I give the error details
Runtime Errors         DBIF_RSQL_INVALID_REQUES
Error analysis
    An invalid request was made to the SAP database interface in a statement
     in which the table "KONV " was accessed.
Below are the module name and report from where the error is coming.
Function Module name  RV_SALES_DOCUMENT_ADD
Program Name  SAPLV45U
Include  LV45UF0K
Row  26
Source code from Rruntime Error
  Line  SourceCde
1 *****************************************************************
    2 *  Unterroutinen RV-Auftragsabwicklung alphabetisch sortiert:
    3 *  ----------------------------------------------------------
    4 *  Buchstabe K:
    5 *
    6 *****************************************************************
    7
    8 *----------------------------------------------------------------
    9 *       FORM KONV_BEARBEITEN
   10 *----------------------------------------------------------------
   11 FORM KONV_BEARBEITEN.
   12
   13   CHECK: FKONV_GEAENDERT NE SPACE OR
   14          VORGANG = CHARH.
   15
   16   IF VORGANG NE 'H'.
   17     DELETE FROM KONV WHERE KNUMV = VBAK-KNUMV.
   18 ENHANCEMENT-POINT KONV_BEARBEITEN_10 SPOTS ES_SAPLV45U.
   19   ENDIF.
   20
   21   LOOP AT FXKOMV.
   22     FXKOMV-MANDT = VBAK-MANDT.
   23     FXKOMV-KNUMV = VBAK-KNUMV.
   24     MODIFY FXKOMV.
   25   ENDLOOP.
>>>>>   INSERT KONV FROM TABLE FXKOMV.
   27   IF SY-SUBRC NE 0.
   28     MESSAGE A100 WITH
   29   ENDIF.
   30
   31 ENHANCEMENT-POINT KONV
   32 ENDFORM.
   33 *eject
Below is my source code.
*& Report  Z_BAPI_SALESORDER
REPORT  z_bapi_salesorder.
* Sales document type
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 2(20) v_text FOR FIELD p_auart.
PARAMETERS: p_auart TYPE auart OBLIGATORY.
SELECTION-SCREEN END OF LINE.
* Sales organization
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 2(20) v_text1 FOR FIELD p_vkorg.
PARAMETERS: p_vkorg TYPE vkorg OBLIGATORY.
SELECTION-SCREEN END OF LINE.
* Distribution channel
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 2(20) v_text2 FOR FIELD p_vtweg.
PARAMETERS: p_vtweg TYPE vtweg OBLIGATORY.
SELECTION-SCREEN END OF LINE.
* Division.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 2(20) v_text3 FOR FIELD p_spart.
PARAMETERS: p_spart TYPE spart OBLIGATORY.
SELECTION-SCREEN END OF LINE.
SKIP 1.
* Sold-to
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 2(20) v_text4 FOR FIELD p_sold.
PARAMETERS: p_sold  TYPE kunnr OBLIGATORY.
SELECTION-SCREEN END OF LINE.
* Ship-to
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 2(20) v_text5 FOR FIELD p_ship.
PARAMETERS: p_ship  TYPE kunnr.
SELECTION-SCREEN END OF LINE.
SKIP 1.
* Material
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 2(20) v_text6 FOR FIELD p_matnr.
PARAMETERS: p_matnr TYPE matnr   OBLIGATORY.
SELECTION-SCREEN END OF LINE.
* Quantity.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 2(20) v_text7 FOR FIELD p_menge.
PARAMETERS: p_menge TYPE dzmengc  OBLIGATORY.
SELECTION-SCREEN END OF LINE.
* Plant
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 2(20) v_text9 FOR FIELD p_plant.
PARAMETERS: p_plant TYPE werks_d OBLIGATORY.
SELECTION-SCREEN END OF LINE.
* Data declarations.
DATA: v_vbeln            LIKE vbak-vbeln.
DATA: header             LIKE bapisdhead.
DATA: headerx            LIKE bapisdhead1x.
DATA: item               LIKE bapiitemin  OCCURS 0 WITH HEADER LINE.
DATA: itemx              LIKE bapisditemx OCCURS 0 WITH HEADER LINE.
DATA: partner            LIKE bapipartnr  OCCURS 0 WITH HEADER LINE.
DATA: return             LIKE bapireturn1    OCCURS 0 WITH HEADER LINE.
DATA: lt_schedules_inx   TYPE STANDARD TABLE OF bapischdlx
                         WITH HEADER LINE.
DATA: lt_schedules_in    TYPE STANDARD TABLE OF bapisdhedu
                         WITH HEADER LINE.
* Initialization.
INITIALIZATION.
  v_text   = 'Order type'.
  v_text1  = 'Sales Org'.
  v_text2  = 'Distribution channel'.
  v_text3  = 'Division'.
  v_text4  = 'Sold-to'.
  v_text5  = 'Ship-to'.
  v_text6  = 'Material'.
  v_text7  = 'Quantity'.
  v_text9  = 'Plant'.
* Start-of-selection.
START-OF-SELECTION.
* Header data
* Sales document type
  header-doc_type = p_auart.
  headerx-doc_type = 'X'.
* Sales organization
  header-sales_org = p_vkorg.
  headerx-sales_org = 'X'.
* Distribution channel
  header-distr_chan  = p_vtweg.
  headerx-distr_chan = 'X'.
* Division
  header-division = p_spart.
  headerx-division = 'X'.
  headerx-updateflag = 'I'.
* Partner data
* Sold to
  partner-partn_role = 'AG'.
  partner-partn_numb = p_sold.
  APPEND partner.
* Ship to
  partner-partn_role = 'WB'.
  partner-partn_numb = p_ship.
  APPEND partner.
* ITEM DATA
  itemx-updateflag = 'I'.
* Line item number.
  item-itm_number = '000010'.
  itemx-itm_number = 'X'.
* Material
  item-material = p_matnr.
  itemx-material = 'X'.
* Plant
  item-plant    = p_plant.
  itemx-plant   = 'X'.
* Quantity
  item-target_qty = p_menge.
  itemx-target_qty = 'X'.
  APPEND item.
  APPEND itemx.
*   Fill schedule lines
  lt_schedules_in-itm_number = '000010'.
  lt_schedules_in-sched_line = '0001'.
  lt_schedules_in-req_qty    = p_menge.
  APPEND lt_schedules_in.
*   Fill schedule line flags
  lt_schedules_inx-itm_number  = '000010'.
  lt_schedules_inx-sched_line  = '0001'.
  lt_schedules_inx-updateflag  = 'X'.
  lt_schedules_inx-req_qty     = 'X'.
  APPEND lt_schedules_inx.
  CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT1'
    EXPORTING
      order_header_in           = header
*     WITHOUT_COMMIT            = ' '
*     CONVERT_PARVW_AUART       = ' '
   IMPORTING
     salesdocument              = v_vbeln
*     SOLD_TO_PARTY             =
*     SHIP_TO_PARTY             =
*     BILLING_PARTY             =
*     RETURN                    =
    TABLES
      order_items_in            = item
      order_partners            = partner
*     ORDER_ITEMS_OUT           =
*     ORDER_CFGS_REF            =
*     ORDER_CFGS_INST           =
*     ORDER_CFGS_PART_OF        =
*     ORDER_CFGS_VALUE          =
*     ORDER_CCARD               =
*     ORDER_CFGS_BLOB           =
     order_schedule_ex          = lt_schedules_in
* Check the return table.
  IF v_vbeln <> space.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    WRITE: / 'Document ', v_vbeln, ' created'.
  ELSE.
    WRITE: / 'Error in creating document'.
  ENDIF.
I am unable to trace the exact reason. Please help and thanks in advance.
Edited by: Joy Banerjee on Oct 12, 2009 7:47 AM

Hi Prashant,
Set the profile parameter abap/buffersize value to maximum.Get the virtual memory increased.
If it doesn't work, see in transaction db02 if there is sufficient tablespace.
Let me knoe the status of tablespaces.
Regards,
Sabita

Similar Messages

  • Runtime Error DBIF_RSQL_INVALID_REQUEST

    Hi,
    I have installed SAPNW trail version, and I get this error when i log on.
    I have installed it on a Windows XP Professional.
    Here is the log on error.
    <b>Runtime Errors         DBIF_RSQL_INVALID_REQUEST                                                      
    Date and Time          24.08.2006 15:25:28                                                                               
    Short text                                                                               
    Invalid request.                                                                               
    What happened?                                                                               
    The current ABAP/4 program had to be terminated because the                                      
         ABAP/4 processor detected an internal system error.                                                                               
    Error analysis                                                                               
    An invalid request was made to the database interface                                            
         when accessing table "DOKTL ".                                                                   
         Last error logged in SAP kernel                                                                               
    Component............ "NI (network interface)"                                                   
         Place................ "SAP-Server hema_NSP_00 on host hema (wp 0)"                               
         Version.............. 38                                                                               
    Error code........... "-16"                                                                      
         Error text........... "verify own hostname '172.16.0.101:0' failed"                              
         Description.......... "NiIBindSocket"                                                            
         System call.......... "bind"                                                                     
         Module............... "nixxi.cpp"                                                                
         Line................. 3144                                                                               
    The error reported by the operating system is:                                                   
         Error number..... 10049                                                                               
    Error text....... "WSAEADDRNOTAVAIL: Can't assign requested address"                                                                               
    Trigger Location of Runtime Error                                                                    
         Program                                 SAPMSYST                                                 
         Include                                 SAPMSYST                                                 
         Row                                     2.555                                                    
         Module type                             (FORM)                                                   
         Module Name                             FILL_INFO_TAB </b>
    can anyone help me with this please. How to solve this problem.I referred to the forum but not helpful I checkeed the host file etc, but still not helpful.
    Thanks,
    Prashant.
    Message was edited by: Prashant Kumar

    Hi Prashant,
    Set the profile parameter abap/buffersize value to maximum.Get the virtual memory increased.
    If it doesn't work, see in transaction db02 if there is sufficient tablespace.
    Let me knoe the status of tablespaces.
    Regards,
    Sabita

  • How to troubleshoot runtime error (termination with short dump)

    hi all,
    i'm new comer on crm. and i got a problem when i accessed tx: segment builder (runtime error: termination with short dump).
    i've tried to troubleshoot this problem by set the java2 SDK GUI path on the client side.but it still didn't work.then i tried to activate the automation trace (just perform the procedure which wrote down on error analysis), but i confused when tried to read the trace file and still didn't get the point. FYI, i 'm using sap logon 710 and SAP crm 5.0.
    what i've should to do?
    should i have to re install my sap logon?
    i really need ur assistance!
    best regards,  
    agung

    Hi Agung,
    Please refer the following SAP Note for your information:
    <b>SAP Note: 990263</b>
    Best Regards,
    Johnny.
    Reward with points if it helps.

  • Ionic Side Menu Template - Javascript JavaScript runtime error: [$injector:nomod] Module 'ngLocale' is not available!

    I am using VS 2013 ,CTP 3.1
    When I tried to run the Ionic side menu template on Emulator 8.1, the javascript console shows below exception  -
    Exception was thrown at line 9576, column 11 in ms-appx://io.cordova.myapp8724a31325644ec29a8d2d88682b7987/www/lib/ionic/js/ionic.bundle.js
    0x800a139e - JavaScript runtime error: [$injector:nomod] Module 'ngLocale' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
    http://errors.angularjs.org/1.3.6/$injector/nomod?p0=ngLocale
    There was no code changes to any of the files.
    Please advise.

    Yes. I am using the same template.
    I am not able to attach the screenshot here.
    This is the error -
    'WWAHOST.EXE' (Script): Loaded 'Script Code (MSAppHost/2.0)'. 
    Exception was thrown at line 9576, column 11 in ms-appx://io.cordova.myapp8724a31325644ec29a8d2d88682b7987/www/lib/ionic/js/ionic.bundle.js
    0x800a139e - JavaScript runtime error: [$injector:nomod] Module 'ngLocale' is not available! You either misspelled the module name or forgot
    to load it. If registering a module ensure that you specify the dependencies as the second argument.
    http://errors.angularjs.org/1.3.6/$injector/nomod?p0=ngLocale

  • Runtime Error in HR module t-code PPOCE [upgraded 4.7 to ECC6]

    HI Gurus!
    at my client site , we have upgraded 4.7 to ECC6. Now functional consultants are testing the system.When HR consultant working on PPOCE t-code ,the patch no of SAP HR - 0007. its giving runtime error.
    Runtime Errors  CREATE_DATA_UNKNOWN_TYPE                              
    Except.     CX_SY_CREATE_DATA_ERROR          Date and Time                    19.08.2008     14:42:44          
    Short text                    
    CREATE DATA: The specified type "HRP1680" is no valid data type.                                        
    What happened?                    
    Error in the ABAP Application Program          
    The current ABAP program "SAPLRHDB" had to be terminated because it has come across a statement that unfortunately cannot be executed.                                        
    Error analysis :An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_CREATE_DATA_ERROR', was not  caught in
    procedure "FILL_I777D" "(FORM)", nor was it propagated by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the exception would occur, the current program is terminated.
    The reason for the exception is:
    The dynamically specified type "HRP1680" at CREATE DATA is no valid data type.
    The type is either unknown or an object type.
    Missing RAISING Clause in Interface          
    Program     SAPLRHDB
    Include     LRHDBF00
    Row     177
    Module type  (FORM)
    Module Name FILL_I777D
    Trigger Location of Exception               
    Program     SAPLRHDB
    Include     LRHDBF00
    Row     308
    Module type(FORM)
    Module Name     FILL_I777D
    Source Code Extract          
    Line          SourceCde
    278          **                HEADER   = FI_HEADER                    "ANDBCEK008264
    279          **           TABLES                                       "ANDBCEK008264
    280          **                FIELDTAB = FI_TAB                       "ANDBCEK008264
    281          **           EXCEPTIONS                                   "ANDBCEK008264
    282          **                OTHERS   = 4.                           "ANDBCEK008264
    283          *                                                         "ANDBCEK008264
    284          *      CALL FUNCTION 'DDIF_FIELDINFO_GET'                 "ANDBCEK008264
    285          *           EXPORTING                                     "ANDBCEK008264
    286          *                tabname        = fi_tabname              "ANDBCEK008264
    287          **               FIELDNAME      = ' '                     "ANDBCEK008264
    288          **               LANGU          = SY-LANGU                "ANDBCEK008264
    289          **               LFIELDNAME     = ' '                     "ANDBCEK008264
    290          **               ALL_TYPES      = ' '                     "ANDBCEK008264
    291          *           IMPORTING                                     "ANDBCEK008264
    292          *                x030l_wa       = fi_header               "ANDBCEK008264
    293          **               DDOBJTYPE      =                         "ANDBCEK008264
    294          **               DFIES_WA       =                         "ANDBCEK008264
    295          **          TABLES                                        "ANDBCEK008264
    296          **               DFIES_TAB      =                         "ANDBCEK008264
    297          *          EXCEPTIONS                                     "ANDBCEK008264
    298          *               not_found      = 1                        "ANDBCEK008264
    299          *               internal_error = 2                        "ANDBCEK008264
    300          *               OTHERS         = 3.                       "ANDBCEK008264
    301          *
    302          *      IF sy-subrc EQ 0.
    303          *        i777d-tbtab_tabof = fi_header-tablen - tabnr_intlen.
    304          *        i777d-pnnnn_tabof = i777d-tbtab_tabof - 8.
    305          *      ENDIF.
    306          
    307          *      ASSIGN char TO <any_field> CASTING TYPE (fi_tabname).  "ANDDDIF
    >>>>>                create data anyfield type (fi_tabname).                "ANDUNI
    309                assign anyfield->* to <any_field>.                     "ANDUNI
    310          
    311          *     we need a character view of <any_field> !!!            "ANDUNI
    312                assign <any_field> to <char_field> casting type c.     "ANDUNI
    313          
    314          *      DESCRIBE FIELD <any_field> LENGTH tablength            "ANDDDIF
    315          *                                 IN BYTE MODE.               "ANDDDIF
    316          
    317                DESCRIBE FIELD <char_field> LENGTH tablength           "ANDUNI
    318                                            IN CHARACTER MODE.         "ANDUNI
    319          
    320                <i777d>-tbtab_tabof = tablength - tabnr_intlen.        "ANDDDIF
    321                <i777d>-pnnnn_tabof = <i777d>-tbtab_tabof - 8.         "ANDDDIF
    322          
    323             ENDIF.
    324              IF <i777d>-ext_infty NE space.                             "VWMEXT
    325                READ TABLE i77id
    326                     WITH KEY infty = <i777d>-infty
    327                     BINARY SEARCH.
    i have check the table HRP1680 in SAP4.7c but in ECC 6 it is not there. So i have create that table. Is it Info-type? or i have apply OSS notes.
    regards
    Rahul
    Edited by: rahul deshmukh on Aug 20, 2008 11:52 AM

    Hello,
    I receive the same error when trying to change records of an infotype. Did you find a solution to this problem? I know your message is from 2008, but maybe you remember what you did to solve it
    Thank you!
    Iuliana

  • While executing 'Z' BAPI Runtime error CALL_FUNCTION_NOT_FOUND has occurred

    Dear Friends,
    We Customized 'Z' BAPI but not transported to QA yet,
    Is it possible to test with QA by fetch QA data by giving RFC target sys: (QA RFC Destination Name)
    If I give RFC target sys: (QA RFC Destination), I am getting Runtime error CALL_FUNCTION_NOT_FOUND has occurred. 
    How to resole this....
    What is method to check this customized BAPI with different server...../
    It is working fine for Standard BAPI.
    Regards

    But you should be able to call it in the DEV system from QA. This will prove that the RFC part works.
    Rob

  • Runtime error/s with iOS

    I've followed the build instructions for iOS in your documentation but I get an error at runtime with the following output:
    Detected an attempt to call a symbol in system libraries that is not present on the iPhone:
    stat$INODE64 called from function __os_exists in image Berkeley.
    An Apple forum member suggested that I'm not building BDB against the iPhone Simulator system libraries. I have a few questions:
    In your build instructions for iOS you refer to an $SDKROOT variable. What should this be set to for Simulator and device builds respectively?
    I found a SO post from someone who suggests that I'd need quite extensive modification of my build script to set environment variables not mentioned in your build instructions. You can see his build script in the second answer in the following link to SO:
    objective c - How can I use the Berkeley DB within an iOS application? - Stack Overflow
    If I make use of his script, I get an error that tells me gcc isn't working correctly. His post is quite old, so I'm really hoping you can elaborate on your existing guidance for iOS builds that will help me get BDB working at runtime. Just to note, following your build instructions does lead to a successful build of BDB but it fails at runtime.
    Any help at all would be great, thanks.

    Hi Ray,
    Could you try building the BDB library using the following configuration:
    export DEVROOT=/Applications/Xcode.app/Contents/Developer
    export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.1.sdk
    export SIMROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.1.sdk
    export CC=$DEVROOT/usr/bin/gcc
    export LD=$DEVROOT/usr/bin/ld
    export CXX=$DEVROOT/usr/bin/g++
    export LDFLAGS="-L$SDKROOT/usr/lib"
    export CFLAGS="-arch i386 -pipe -no-cpp-precomp -isysroot $SDKROOT -mios-simulator-version-min=7.1"
    export CXXFLAGS="-arch i386 -pipe -no-cpp-precomp -isysroot $SDKROOT -mios-simulator-version-min=7.1"
    export CPPFLAGS="-arch i386 -pipe -no-cpp-precomp -isysroot $SDKROOT -mios-simulator-version-min=7.1"
    ../dist/configure --host=arm-apple-darwin9 --prefix=$SDKROOT \
      --enable-sql --enable-debug --enable-cxx --enable-sql_compat
    With the BDB library built with this configuration, we couldn't reproduce the runtime error you mentioned in your original post on iOS simulator 7.1.

  • Runtime Error SYNTAX_ERROR with MIGO tcode

    Hi Gurus,
    I got a new issue now. while executing MIGO tcode getting SYNTAX_ERROR dump, please check below dump details..
    Category               ABAP Programming Error
    Runtime Errors         SYNTAX_ERROR
    ABAP Program           SAPLVBDOCUBATCH_DM
    Application Component  LO-BM
    Date and Time          09.01.2012 16:27:51
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "SAPLMIGO" had to be terminated because it has
        come across a statement that unfortunately cannot be executed.
        The following syntax error occurred in program "SAPLVBDOCUBATCH_DM " in include
         "LVBDOCUBATCH_DM$39 " in
        line 8:
        ""RL034" must be a flat structure. You cannot use internal tables, stri"
        "ngs, references, or structures as components."
        The include has been created and last changed by:
        Created by: "SAP "
        Last changed by: "SAP "
        Error in the ABAP Application Program
        The current ABAP program "SAPLMIGO" had to be terminated because it has
        come across a statement that unfortunately cannot be executed.
    Error analysis
        The following syntax error was found in the program SAPLVBDOCUBATCH_DM :
        ""RL034" must be a flat structure. You cannot use internal tables, stri"
        "ngs, references, or structures as components."
    i have tried to check syntax of program SAPLVBDOCUBATCH_DM and it is giving error, please help me solve this issue.
    Additional Information:ECC6.0 EHP5(recently upgraded from ECC6.0) nd DB:Oracle 10.2.0.2 OS:windows
    Thanks,
    Venkat

    Hello Team,
    This is Solved..
    As per dump when we go n check table RL034 through SE11 there one Object type is wrong so with Abaper help it got corrected then the problem was solved.
    Thanks all for your time.
    Venkat

  • C++ Runtime Error in editing module in Elements 7

    Hi all..
    I don't know if anyone has ever encountered this problem, but I cannot open the editing module because of this C++ Runtime Error, "This Application hs requested the Runtime to terminate in an unusual way .."
    It has been very frustrating. My computer is new in May '09 and I have Vista (ugh).
    Any ideas or help is greatly appreciated.
    THANKS in advance!
    gcharrold

    Unfortunately, there are many reasons why the PSE Editor might crash, and often it is hard to diagnose quickly the reason for the crash.   Here are some steps you can take to try to fix the problem:
    http://www.johnrellis.com/psedbtool/photoshopelements-6-7-faq.htm#_Troubleshooting_Editor_ crashes

  • Windows client  gives runtime error R6034 with TMMONITOR=app,svc,tran,sys::

    PLEASE REFER TO THE DUPLICATE POSTING IN THE "TUXEDO" FORUM FOR AN ANSWER TO THIS QUESTION.
    Hi,
    I'm testing TSAM on a Windows system. If I run without setting the TMMONITOR environmental variable set everything works fine, but when I set TMMONITOR=app,svc,tran,sys:: both the client and server programs give the runtime error R6034: "An application has made an attempt to load the C runtime library incorrectly". Clicking the "OK" button lets the programs continue, but the following messages appear in the ULOG:
    142539.868.TUXMODEL!tuxmodelclient.5996.5860.0: GP_CAT:1345: ERROR: pif: can't load 'libmonplugin.dll'
    142539.868.TUXMODEL!tuxmodelclient.5996.5860.0: GP_CAT:1341: ERROR: pif: can't load impl 'bea/performance/mongui' that is in InterceptorSequence for 'bea/performance/monfan'
    142539.868.TUXMODEL!tuxmodelclient.5996.5860.0: LIBTUX_CAT:6623: ERROR: TMMONITOR failed to invoke the monitoring plug-in
    142547.342.TUXMODEL!TuxModelServer.3220.728.0: GP_CAT:1345: ERROR: pif: can't load 'libmonplugin.dll'
    142547.342.TUXMODEL!TuxModelServer.3220.728.0: GP_CAT:1341: ERROR: pif: can't load impl 'bea/performance/mongui' that is in InterceptorSequence for 'bea/performance/monfan'
    142547.342.TUXMODEL!TuxModelServer.3220.728.0: LIBTUX_CAT:6623: ERROR: TMMONITOR failed to invoke the monitoring plug-in
    142547.482.TUXMODEL!TuxModelServer.3220.728.0: LIBTUX_CAT:6623: ERROR: TMMONITOR failed to invoke the monitoring plug-in
    142547.498.TUXMODEL!TuxModelServer.3220.728.0: LIBTUX_CAT:6623: ERROR: TMMONITOR failed to invoke the monitoring plug-in
    142547.498.TUXMODEL!tuxmodelclient.5996.5860.0: LIBTUX_CAT:6623: ERROR: TMMONITOR failed to invoke the monitoring plug-in
    Can anyone tell me what I need to do to overcome this problem? (I'm running Tuxedo Version 10.0 with VS2005, 32-bit, Patch Level (none) and TSAM version 1.1. Both programs were compiled with buildclient/buildserver, using Microsoft Visual C++ Express Edition 2008 (Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86)
    Thanks & kind regards,
    Malcolm.
    Edited by: Malcolm Freeman on Oct 28, 2008 11:55 AM

    As I know, the runtime rrror R6034 can be caused by Windows, not caused by TSAM, you need check your Windows system.
    guggi

  • Runtime Error: CONVT_NO_NUMBER with MM01 BDC

    Hi All,
    I am creating Material Master using Call transaction Method for MM01 Tcode.
    I am passing the value called Standard Price (MBEW-STPRS) in the BDC.
    Standard price will be like 100.00 (Hundred Rupees)
    While passing this value, I am getting Runtime Error with the following details.
    Runtime Error: CONVT_NO_NUMBER
    Unable to interpret "/" as a number.
    258 ----
    259 *        Insert field                                                  *
    260 ----
    261 FORM BDC_FIELD USING FNAM FVAL.
    >>>   IF FVAL <> NODATA.
    263     CLEAR BDCDATA.
    264     BDCDATA-FNAM = FNAM.
    265     BDCDATA-FVAL = FVAL.
    266     APPEND BDCDATA.
    267   ENDIF.
    268 ENDFORM.
    How to resolve this type of error???
    Regards
    Pavan

    I have defined field STPRS as char(13 length) in the internal table as char.
    The field NODATA is having value ' \ ' in the debugging mode.
    The code mentioned in my above post is from the standard perform statement.
    Even if i provide value as "100" in the flat file, while reaching the statment
    perform bdc_field       using 'MBEW-STPRS'
    it_mm01-stprs.
    it shows as "100.00" in the debugger.
    Any idea....????
    Regards
    Pavan

  • Runtime error 10401 with CWAOPoint1 control

    I am trying to run an older application and it fails with Runtime error 10401...the specified device is not a NI product... I am trying to run this on a laptop that does not have the hardware.  How can I get around this error so I can step through my code (VB6)?  I have the both the latest DAQMX and traditional Nidaq software installed as well as Measurement Studio 8 installed.

    The following is the subroutine used.  Its giving the error on the SingleWrite commands. VB does not report any references missing in the project.
    Sub cmdSetLEDVoltages_Click(Index As Integer)
        Select Case Index
            Case 0
                CWAOPoint1.ChannelString = "1"
                CWAOPoint1.SingleWrite cwnGlareLEDVoltage(Index).Value
                CWAOPoint1.ChannelString = "0"
                CWAOPoint1.SingleWrite cwnRefLEDVoltage(Index).Value
            Case 1
                CWAOPoint2.ChannelString = "1"
                CWAOPoint2.SingleWrite cwnRefLEDVoltage(Index).Value
                CWAOPoint2.ChannelString = "0"
                CWAOPoint2.SingleWrite cwnGlareLEDVoltage(Index).Value
        End Select
    End Sub

  • A Little Nightmare: VerifyError: Error #1014 with Modules and Spark

    Wow. This one is painful. Any help sorely appreciated. It's basically put dev on complete hold.
    Using FlashBuilder 4.5.1 with an AIR app having migrated from FlexBuilder 3.0. I just went back to the FB3.0 and i'm currently getting the same errors (which i never used to get when i dealt with modules).
    Trying to load modules via the ModuleManager. Had no problem when i used to use FlexBuilder 3.0 (about a year ago) for working in Flash. But now i get the following errors:
    VerifyError: Error #1014: Class mx.modules::ModuleBase could not be found. (WHEN TRYING to load a ModuleBase subclass).
    VerifyError: Error #1014: Class mx.modules::SkinnableContainer could not be found. (WHEN TRYING to load a spark Module subclass).
    I get progress ModuleEvents, but never get to the READY/SETUP state (or those events), because i keep getting these errors.
    I have scoured the internet. There is some advice, seems to revolve around SDK/compiler incompatibility, or perhaps setting the AIR xmlns setting in the app's xml file. But all that seems ok....
    Some Data:
    AIR version xmlns (in air app xml file): 2.6
    LIBRARY PATH:
    Component Set: MX + Spark
    Framework Linkage: Use SDK Default (Merged Into Code)
    Build Path libraries: Flex 4.5.1 - E:\Program Files\Adobe\Adobe Flash Builder 4.5\sdks\4.5.1
    SDK 4.5.1
    COMPILER:
    Flex SDK Version: Use Default SDK (currently "4.5.1")
    I can only guess that the FlashPlayer that is being accessed (or the AIR Player) is somehow an earlier version that doesn't support modules? How Do i find out what exact FlashPlayer/AIRPlayer is being used?
    This is a rather nasty situation. I can't use all the old code i have in modules unless i can access the modules!
    Any help VERY appreciated.
    Thanks.

    Oh, one more note, i believe i have the FlashPlayer version 11 installed. Could that be part of the problem?

  • Runtime error in functional module

    they given below program is a function module calling program.while am execute this program they could display the message like as
    What happened?
        Error in ABAP application program.
        The current ABAP program "YSUSFUN1" had to be terminated because one of the
        statements could not be executed.
        This is probably due to an error in the ABAP program.
        In program "SAPLYGROUP3 ", the following syntax error occurred
        in the Include "LYGROUP3U01 " in line 1:
        "The main program of the function "Y_INTERNAL1" does not begin with "FU"
        "NCTION-POOL"."
        Author and last person to change the Include are:
        Author "BASIS "
        Last changed by "BASIS "
    Error analysis
        In program "SAPLYGROUP3 ", the following syntax error occurred:
        "The main program of the function "Y_INTERNAL1" does not begin with "FU"
        "NCTION-POOL"."
    REPORT  YSUSFUN1.
    TABLES YSUSTAB1.
    DATA IT1 LIKE YSUSTAB1 OCCURS 2 .
    SELECT * FROM YSUSTAB1 INTO TABLE IT1.
    LOOP AT IT1 INTO YSUSTAB1.
    WRITE: / YSUSTAB1-NAME, YSUSTAB1-ROLLNO,YSUSTAB1-PHONENO.
    ENDLOOP.
    CALL FUNCTION 'Y_INTERNAL1'
      TABLES
        IT4           =  IT1  .
        LOOP AT IT1 INTO YSUSTAB1.
        WRITE: / YSUSTAB1-NAME, YSUSTAB1-ROLLNO, YSUSTAB1-PHONENO.
        ENDLOOP.
    2.)
    the given below program is function module definition. while at that time of execution they could display the message as
    *Syntax error in program*
    *Source code   LYGROUP3U01                                    Line     1*
      *The main program of the function "Y_INTERNAL1" does not begin with*
      *"FUNCTION-POOL".*
    FUNCTION Y_INTERNAL1.
    ""Local Interface:
    *"  TABLES
    *"      IT4 STRUCTURE  YSUSTAB1
    LOOP AT IT4.
    WRITE : IT4-name, it4-phoneno, it4-rollno.
    endloop.
    ENDFUNCTION.

    thanks
    before am gone to se80 to activate the function group , am  activate the function module only  not activate the function group .
    now am activate the function group they could not be depict the error .

  • Runtime error DBIF_RSQL_INVALID_REQUEST (table DOKTL)

    I have just installed the NW2004s Testdrive (on Ubuntu Server 10.10).
    When I log in as any user, I get a short dump DBIF_RSQL_INVALID_REQUEST saying: An invalid request was made to the database interface when accessing table "DOKTL ".
    I have seen some posts suggesting this could be due to entries in the /etc/hosts file, and I wonder whether this relates to the section in the index.html on the DVD that says:
    The file /etc/hosts should contain at least the following lines:
    Table 1: /etc/hosts 127.0.0.1      localhost      
    n.n.n.n      <HOSTNAME>.<DOMAINNAME>      <HOSTNAME>
    where "n.n.n.n" is a valid IP-adress.
    Is this the case? If so, what kind of entry must this be in /etc/hosts? This instruction in the index.html is very cryptic to me.
    Thanks,
    Martin

    Hello Siva,
    There is an entry similar to what you mentioned in /etc/hosts, which was added by the S99n4shost script. So /etc/hosts looks as follows (my hostname is nwtd):
    127.0.0.1       localhost
    127.0.1.1      nwtd
    # The following lines are desirable for IPv6 capable hosts
    ::1     localhost ip6-localhost ip6-loopback
    fe00::0 ip6-localnet
    ff00::0 ip6-mcastprefix
    ff02::1 ip6-allnodes
    ff02::2 ip6-allrouters
    192.168.155.1   n4shost
    I have tried adding a fully qualified domain name entry with nwtd on both the 127.0.1.1 and 192... lines.
    By the way, the message I see in the short dump is
    Error text........... "verify own hostname 'nwtd' failed"
    but I can ping nwtd successfully etc. What is the reason for this?

Maybe you are looking for

  • MBAM and BitLocker - How to do it in Best Practice

    Hi! I have a situation where I want to implement MBAM in our environment. What I have at the moment: 1x all-in-one MBAM server (SQL 2012R2 Standard at the same server). SCCM 2012R2 CU3 Integration GPO´s are ready and published to the correct OU (Lapt

  • A question about 4:3 and 16:9 formats

    Hello:) I have finally bought a DV camcorder and therefore try to use the iMovieHD software properly now. What I realized after some filming is that the camcorder was originally set to 16:9, which now gives me a hard time when I try to compress into

  • Preview monitor playback 'sticks' with certain types of footage.

    Hi there, I wonder if anyone could help me with this problem. I am going through a Apple certified FCP training book with a DVD of footage for video editing. I a have copied the footage onto my hard drive as recomended. However, some clips will not p

  • How to get the Net value in SD Bex query

    Dear All, We have a  key figure called Net Value in SD query 0SD_C03_.  But in validating data with ERP system to this bex the value is not matching. In this Query we are maintain sales doc category -C and Item category. Because the  Net value is dep

  • Broken sim tray- nexus s

    Hןת 2 month ago I bought in best buy LA the mobile phone - nexus s. when I came back to my country -Israel , I discovered that the sim tray is broken so I can't use it for calls. What can I do now?  thank u very much! Liran