Runtime Error : ASSERTION_FAILED while clicking on shop button to create SC

Hi Experts.
We are using SRM 7.0
When i am clicking on shop button to create shopping cart getting
RUNTIME ERROR : ASSERTION_FAILED
Termination occurred in the ABAP program "/SAPSRM/CL_CH_WD_GAF_FACTORY==CP" -
in "SET_GAF_PROVIDER".
The main program was "SAPMHTTP ".
In the source code you have the termination point in line 29.
Please suggest what should I do ?
Thanks and Regards
Bumhwan oh

Hi Venkatesh.
Thanks for your reply.
But Note 1341605 has nothing to do with what we are discussing.
My problem is why runtime error result when I click Shop button in Employee Self-Service.
Here is source code in method SET_GAF_PROVIDER.
  IF io_fpm_gaf IS NOT BOUND. "SRM 6.0 coding (without FPM)
Get Class Name from explicit configuration (stored in mapped context)
    lo_context_node = io_wd_context_node->get_child_node( name = 'CONFIGURATION_NODE' ).
    lo_context_element = lo_context_node->get_element(  ).
    lo_context_element->get_attribute(
      EXPORTING
        name =  `CLASS_NAME`
      IMPORTING
        value = lv_class_name ).
    CATCH SYSTEM-EXCEPTIONS create_object_class_not_found = 4.
      CREATE OBJECT lo_gaf_provider
        TYPE
          (lv_class_name)
        EXPORTING
          io_wd_context_node = io_wd_context_node.
    ENDCATCH.
    " Cause: The class specified in the TYPE addition does not exist
    " [..]  handle exception / abort use case
      ASSERT FIELDS 'GAF Provider Class Name is not valid' lv_class_name
           CONDITION  sy-subrc = 0.

Similar Messages

  • Runtime Error : ASSERTION_FAILED while resubmit the SC to create FOD

    Hi
    We are using SRM 5.00 classic scenario.
    When i am clicking on resubmit button to create follow on document getting
    RUNTIME ERROR : ASSERTION_FAILED
    Termination occurred in the ABAP program "CL_BBP_BS_MAP_SC2RQ===========CP" -
    in "MAP_DELIVERY_ADDRESS".
    The main program was "SAPLBBP_MON_SC ".
    In the source code you have the termination point in line 20
    of the (Include) program "CL_BBP_BS_MAP_SC2RQ===========CM00J".
    Please suggest what should i do ?
    Thanks and Regards
    Ruma Paul.

    Hi Ruma,
    Please check the following OSS Notes:
    Note 1169451 - ASSERTION_FAILED: Shopping stuck in Error in transmission
    Note 980296 - ASSERTION_FAILED dump upon resubmitting the shopping cart.
    Note 996674 - Check status of shopping cart raise short dump
    Note 1027966 - ASSERTION_FAILED dump for shopping cart items in spool
    Thanks,
    Pradeep

  • Getting error message while clicking on proposal button in Automatic Py.Pr

    When trying run Automatic payment program, clicking on proposal , getting error message "Company codes SAG1/SAG1 do not appear in proposal 12.05.2010 SAG1;correct"
    Please help me in resolving this error message.

    Hi Sagar,
    This may happen when the particular line items are entered in another proposal and not exequted fully.
    So system will block these line items in old app run and will not allow in new app.
    you can over come by exequting the old APP run or deleting values in previous APP run and run new APP.
    Regards
    babu.

  • Runtime error assertion_failed

    hello,
    i am getting a runtime error 'assertion_failed' while activating the transformations.
    it says the assert condition was violated. i am attaching the error message here.
    In the running application program, the ASSERT statement recognized a
    situation that should not have occurred.
    The runtime error was triggered for one of these reasons:
    - For the checkpoint group specified with the ASSERT statement, the
       activation mode is set to "abort".
    - Via a system variant, the activation mode is globally set to "abort"
       for checkpoint groups in this system.
    - The activation mode is set to "abort" on program level.
    - The ASSERT statement is not assigned to any checkpoint group.
    i need help regarding this.
    thanks in advance.
    muralik

    Hello MuraliK,
    Plz apply note :998730.
    U need to check RSTRANRULE  table with certain combination and delete inconsistent records.
    -- Plz assign points if helpful --
    Regards,
    Mainak

  • Getting Error ASSERTION_FAILED while activating transformation.

    Hi Experts,
    I am getting an error "The ASSERT condition was violated" while activating a transformation in BI. I applied SAP NOTE 1137447 and I am still getting this error given below.
    Runtime Errors         ASSERTION_FAILED
    Date and Time          09.10.2009 16:53:20
    Short text
         The ASSERT condition was violated.
    What happened?
         In the running application program, the ASSERT statement recognized a
         situation that should not have occurred.
         The runtime error was triggered for one of these reasons:
         - For the checkpoint group specified with the ASSERT statement, the
           activation mode is set to "abort".
         - Via a system variant, the activation mode is globally set to "abort"
           for checkpoint groups in this system.
         - The activation mode is set to "abort" on program level.
         - The ASSERT statement is not assigned to any checkpoint group.
    Error analysis
         The following checkpoint group was used: "No checkpoint group specified"
         If in the ASSERT statement the addition FIELDS was used, you can find
         the content of the first 8 specified fields in the following overview:
         " (not used) "
         " (not used) "
         " (not used) "
         " (not used) "
         " (not used) "
         " (not used) "
         " (not used) "
         " (not used) "
    Trigger Location of Runtime Error
        Program                                 CL_RSTRAN_FOBU_APPL===========CP
        Include                                 CL_RSTRAN_FOBU_APPL===========CM007
        Row                                     37
        Module type                             (METHOD)
        Module Name                             GET_CODE
    Line  SourceCde
        7     l_formula_id_32   TYPE sfbeid,
        8     l_s_fobu          TYPE rsfob_s_formula,
        9     l_r_formula       TYPE REF TO cl_foev_formula.
       10
       11
       12   IF p_r_formula IS BOUND AND
       13    p_mode is not initial.
       14     CALL METHOD cl_rsar_formulas=>reset_formula_foev_object
       15       EXPORTING
       16         i_formex    = p_formex
       17         i_objvers   = p_objvers
       18         i_r_formula = p_r_formula
       19       EXCEPTIONS
       20         no_entry    = 1
       21         invalid     = 2
       22         OTHERS      = 3.
       23     ASSERT sy-subrc = 0. "invalid call
       24
       25   ENDIF.
       26
       27   CALL METHOD cl_rsar_formulas=>get_formula_foev_object
       28     EXPORTING
       29       i_formex    = p_formex
       30       i_objvers   = p_objvers
       31     RECEIVING
       32       r_r_formula = l_r_formula
       33     EXCEPTIONS
       34       no_entry    = 1
       35       invalid     = 2
       36       OTHERS      = 3.
    >>>>>   ASSERT sy-subrc = 0. "invalid call
       38
       39
       40   l_r_formula->compile( EXPORTING i_structure_prefix = 'SOURCE_FIELDS'
       41                         IMPORTING e_abap_formula = e_t_abap_source ).
       42
       43 ENDMETHOD.
    Kindly help me.
    Thanks in advance,
    With Kind Regards,
    Kannan Jagadeesan

    Try applying the following OSS Notes:
    [OSS Note 1050275 - ASSERTION_FAILED in CL_RSTRAN_FOBU_APPL->GET_CODE|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1050275] (relevant to prior to BI 7 SP14)
    [OSS Note 1115923 - Check or transfer of empty formulas causes runtime error|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1115923] (relevant to prior to BI 7 SP17).

  • Crystal Report/STRUTS: Error (404) when clicking on Control Buttons (Print, Export, Next, Previous, etc...) on report viewer

    Post Author: jwenny
    CA Forum: Deployment
    Need help badly!!!
    We are using the crystal reports plugin for STRUTS.
    We are able to display the report in the crystal report viewer.  However, when we click any control buttons (print, export, etc...), then we get:
    JSPG0036E:  Failed to find resource /Report-viewer.jsp
    We then moved Report-viewer.jsp to the WebContents folder (root directory) and got a different error when we clicked any control button:
    Error:  400 page not found
    Does anyone know how to solve this problem?  For instance, is there a setting or parameter that needs to be set?
    Greatly appreciate any help!

    HI,
    Whenever we print the viewer does an auto postback, I believe due to this some of the values are getting missed. Moreover we are referring to the viewer and reportdocument object, it seems. So can you try this simple code in an application to see if it helps:
    ReportDocument rdoc = new ReportDocument();
    rdoc.Load("C:\TASKECrystalReports\Intraday.rpt");
    rdoc.SetDatabaseLogon("uid","pwd");
    rdoc.SetParameterValues("parameter name","value");
    CrystalReportViewer.ReportSource = rdoc;
    Helps?
    Thanks.

  • Runtime error ASSIGN_TYPE_ILLEGAL_CAST while using ASSIGN key word

    Hi All,
    I'm getting a runtime error ASSIGN_TYPE_ILLEGAL_CAST while using ASSIGN keyword in the below statement,
    ASSIGN L_XVALUE(L_LENGTH) TO <TEXTLINE> TYPE 'C'. "see 581444
    Here L_XVALUE is of type X with value 'ENVIRONMENTALLY HAZARDOUS SUBSTANCE, LIQUID, N.O.S' , L_LENGTH is of type I with value 51 and <TEXTLINE> is of type C wih one character length .
    Should I have to declare <TEXTLINE> as same as that of L_XVALUE ( type X ).
    Thanks in Advance,
    Sabu.

    Decalre <TEXTLINE> as type any.

  • Exchange Office Web Apps Preview Does not work in OWA. An error occurred while the document preview was being created

    Hi,
    I have managed to configure intergration between Office Web App server 2013 and Exchange 2013 OWA.
    I have created a test users Test1 and Test 2. I have given full access on Test2 mailbox to user test 1.
    When I login to owa for user test1 and preview the attachment it works fine.
    However when I use "Open another mailbox" in OWA and open test2 mailbox and try to preview the attachments in test2 inbox it errors as
    " An error occurred while the document preview was being created. Please try again later " as follows
    I am new to office web apps server 2013 and implemented it first time. Can anyone suggest resolutions or troubleshooting ?

    Hi,
    To narrow down the cause, I’d like to recommend the following troubleshooting:
    1. Does the error appear when you directly access test 2 mailbox through OWA?
    2. Check if there is 141 error in your event log.
    3. Check whether Office web app server connects with Exchange server when the issue happens.
    Access the URL: https://hostname/hosting/discovery
    4. Grant full access permission again and check the result.
    For more information about Office web app integration with Exchange, please refer to the following article:
    http://www.msexchange.org/articles-tutorials/exchange-server-2013/management-administration/exchange-2013-office-web-apps-server-integration.html
    If you have any question, please feel free to let me know.
    Thanks,
    Angela Shi
    TechNet Community Support

  • RUNTIME ERROR! While syncing contacts from 9900 to windows contacts

    BlackBerry Desktop Software Version :- 7.1.0.37
    BlackBerry Device Software Version :- 7.1 Bundle 1646 (v7.1.0.523, Platform 5.1.0.393)
    BlackBerry Device :- Bold 9900
    Windows 7
    While syncing contacts to and fro , from the device and windows contacts, experiencing the following Runtime Error :-
    ' Microsoft Visual C++ Runtime Library
    Runtime Error!
    Program: C:\Program ...
    This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information. '

    Hi and Welcome to the Community!
    I don't find a specific KB that is exactly on point to your description...perhaps you will have better luck searching:
    http://btsc.webapps.blackberry.com/btsc/microsites/microsite.do
    Otherwise, I'd suggest this thread:
    http://supportforums.blackberry.com/t5/Desktop-Software-for-PC/Cleanly-quot-Starting-Over-quot-with-...
    It starts with a process for cleanly starting over, and there is some discussion, and there is also a post (15) with links to older Desktop Software versions, if those are needed. Note that this is not, by any means, guaranteed to work...but it has worked for many to resolve issues they are having.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Runtime Error ( EXPORT_NO_SHARED_MEMORY ) while creating order in CRM

    Hi All,
    i am getting runtime error while creating order in CRMD_ORDER. details of error is provided below
    Runtime Errors         EXPORT_NO_SHARED_MEMORY
    Exception              CX_SY_EXPORT_NO_SHARED_MEMORY
    Date and Time          29.01.2009 02:07:58
    Short text
         Der EXPORT-Datencluster ist zu groß für das SHARED MEMORY.
    What happened?
         The current program had to be terminated because
         a capacity limit has been reached.
    What can you do?
         Please make a note of the actions and input which caused the error.
         To resolve the problem, contact your
         SAP system administrator.
         Select the "Print" function to obtain a hardcopy of the
         current termination message.
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_EXPORT_NO_SHARED_MEMORY', was
          not caught in
         procedure "CRM_EVENT_PUBLISH_OW" "(FUNCTION)", 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:
    This is probably due to a very large dataset, for which there are
    insufficient resources in your installation.
    Das SHARED MEMORY kann Objekte nur bis zu einer bestimmten Maximalgröße
    speichern (1) und hat selbst eine beschränkte Größe (2).
    In diesem Fall wurde die Größe 2 überschritten.
    to correct the error
    Mit den Profilparametern rsdb/esm/buffersize_kb und
    rsdb/esm/large_object_size kann man diese Größen verändern.
    Informationen über diese Parameter erhalten Sie mit der
    Transaktion RZ11.
    Beachten Sie jedoch, dass aus Performancegründen ein einzelnes
    Objekt nicht den größten Teil des Puffers belegen darf, so dass die
    maximal zulässige Objektgröße erheblich unter der Gesamtgröße des
    Puffers liegt.
    The exception must either be prevented, caught within proedure
    "CRM_EVENT_PUBLISH_OW" "(FUNCTION)", or its possible occurrence must be
    declared in the
    RAISING clause of the procedure.
    To prevent the exception, note the following:

    Hello Sudhir,
    Have you set the user parameter CRM_EVENT_TRACE as one of your personal
    user settings? If this is the case, remove this parameter and the dump will no longer occur. The parameter is intended for test purposes only, for a report which evaluates
    which events are published and which function modules are called as a
    result of these events. However, depending on system settings, the
    allocated memory may be too low and lead to the short dump.
    (CRM_EVENT_TRACE is the report which can execute in SE38.)
    Regards, Gerhard

  • Runtime error SAPSQL_INVALID_TABLENAME while activatin Infocube

    Hi,
    I modified an Infocube.
    I saved it in a transport request.
    While activating the Infocube I get the short dump:\
    Runtime Errors         SAPSQL_INVALID_TABLENAME
    Except.                CX_SY_DYNAMIC_OSQL_SEMANTICS
    Short text
        A table name, specified in an SQL command, is unknown.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "SAPLRSDU_UTIL_DB6" had to be terminated because it
         has
        come across a statement that unfortunately cannot be executed.
    Can anyone please help.

    Hi kt,
    You may get this issue because of improper cube structure.
    Try to activate the info cube with RSDG_CUBE_ACTIVATE program.
    Hope this will resolve your issue..
    Best Regards,
    Maruthi

  • Runtime Errors: CONVT_OVERFLOW while executing transaction sm66

    Hello Everyone,
    There are two Application serevrs out of which I am getting the following error while executing transaction SM66 only in one i.eCI server but if i remote login to other system and try SM66 its working fine.
    Please suggest
    Runtime Errors         CONVT_OVERFLOW
    Exception              CX_SY_CONVERSION_OVERFLOW
    Date and Time          02.04.2011 00:41:01
    Short text
         Overflow when converting from "2.90113e+09"
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_CONVERSION_OVERFLOW', was not
          caught in
         procedure "TH_WP_DETAIL_INFO" "(FUNCTION)", 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:
         When attempting to convert the value "2.90113e+09",
         an overflow occurred.
         There is probably an error in the program
         "SAPLTHFB".
    How to correct the error
         Probably the only way to eliminate the error is to correct the program.
         You may able to find an interim solution to the problem
         in the SAP note system. If you have access to the note system yourself,
         please use the following search criteria:
         "SAPLTHFB" "CONVT_OVERFLOW"
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
        To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
        To obtain this, call the system log with Transaction SM21
        and select the "Print" function to print out the relevant
        part.
    3. If the programs are your own programs or modified SAP programs,
        supply the source code.
        To do this, you can either use the "PRINT" command in the editor or
        print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error occurred
        or which actions and input led to the error.
    The exception must either be prevented, caught within proedure
    "TH_WP_DETAIL_INFO" "(FUNCTION)", or its possible occurrence must be declared
      in the
    RAISING clause of the procedure.
    To prevent the exception, note the following:
    tem environment
    SAP-Release 700
    Application server... "POSDMCI"
    Network address...... ""
    Operating system..... "SunOS"
    Release.............. "5.10"
    Hardware type........ "sun4u"
    Character length.... 16 Bits
    Pointer length....... 64 Bits
    Work process number.. 1
    Shortdump setting.... "full"
    Database server... "POSDMDB"
    Database type..... "ORACLE"
    Database name..... "BP2"
    Database user ID.. "SAPSR3"
    Char.set.... "C"
    SAP kernel....... 700
    created (date)... "Apr 2 2006 21:14:52"
    create on........ "SunOS 5.9 Generic_117171-13
    Database version. "OCI_101 "
    Patch level. 52
    Patch text.. " "
    Database............. "ORACLE 9.2.0.., ORACLE
    SAP database version. 700
    Operating system..... "SunOS 5.9, SunOS 5.10"
    Memory consumption
    Roll.... 16192
    EM...... 8379696
    Heap.... 0
    Page.... 40960
    MM Used. 720912
    MM Free. 3466336
    Information on where terminated
        Termination occurred in the ABAP program "SAPLTHFB" - in "TH_WP_DETAIL_INFO".
        The main program was "SAPMSM66 ".
        In the source code you have the termination point in line 82
        of the (Include) program "LTHFBU26".
        The termination is caused because exception "CX_SY_CONVERSION_OVERFLOW"
         occurred in
        procedure "TH_WP_DETAIL_INFO" "(FUNCTION)", but it was neither handled locally
         nor declared
        in the RAISING clause of its signature.
        The procedure is in program "SAPLTHFB "; its source code begins in line
        1 of the (Include program "LTHFBU26 ".

    Hello Everyone,
    There are two Application serevrs out of which I am getting the following error while executing transaction SM66 only in one i.eCI server but if i remote login to other system and try SM66 its working fine.
    Please suggest
    Runtime Errors         CONVT_OVERFLOW
    Exception              CX_SY_CONVERSION_OVERFLOW
    Date and Time          02.04.2011 00:41:01
    Short text
         Overflow when converting from "2.90113e+09"
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_CONVERSION_OVERFLOW', was not
          caught in
         procedure "TH_WP_DETAIL_INFO" "(FUNCTION)", 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:
         When attempting to convert the value "2.90113e+09",
         an overflow occurred.
         There is probably an error in the program
         "SAPLTHFB".
    How to correct the error
         Probably the only way to eliminate the error is to correct the program.
         You may able to find an interim solution to the problem
         in the SAP note system. If you have access to the note system yourself,
         please use the following search criteria:
         "SAPLTHFB" "CONVT_OVERFLOW"
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
        To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
        To obtain this, call the system log with Transaction SM21
        and select the "Print" function to print out the relevant
        part.
    3. If the programs are your own programs or modified SAP programs,
        supply the source code.
        To do this, you can either use the "PRINT" command in the editor or
        print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error occurred
        or which actions and input led to the error.
    The exception must either be prevented, caught within proedure
    "TH_WP_DETAIL_INFO" "(FUNCTION)", or its possible occurrence must be declared
      in the
    RAISING clause of the procedure.
    To prevent the exception, note the following:
    tem environment
    SAP-Release 700
    Application server... "POSDMCI"
    Network address...... ""
    Operating system..... "SunOS"
    Release.............. "5.10"
    Hardware type........ "sun4u"
    Character length.... 16 Bits
    Pointer length....... 64 Bits
    Work process number.. 1
    Shortdump setting.... "full"
    Database server... "POSDMDB"
    Database type..... "ORACLE"
    Database name..... "BP2"
    Database user ID.. "SAPSR3"
    Char.set.... "C"
    SAP kernel....... 700
    created (date)... "Apr 2 2006 21:14:52"
    create on........ "SunOS 5.9 Generic_117171-13
    Database version. "OCI_101 "
    Patch level. 52
    Patch text.. " "
    Database............. "ORACLE 9.2.0.., ORACLE
    SAP database version. 700
    Operating system..... "SunOS 5.9, SunOS 5.10"
    Memory consumption
    Roll.... 16192
    EM...... 8379696
    Heap.... 0
    Page.... 40960
    MM Used. 720912
    MM Free. 3466336
    Information on where terminated
        Termination occurred in the ABAP program "SAPLTHFB" - in "TH_WP_DETAIL_INFO".
        The main program was "SAPMSM66 ".
        In the source code you have the termination point in line 82
        of the (Include) program "LTHFBU26".
        The termination is caused because exception "CX_SY_CONVERSION_OVERFLOW"
         occurred in
        procedure "TH_WP_DETAIL_INFO" "(FUNCTION)", but it was neither handled locally
         nor declared
        in the RAISING clause of its signature.
        The procedure is in program "SAPLTHFB "; its source code begins in line
        1 of the (Include program "LTHFBU26 ".

  • User gets Active X Runtime error 429 while running 10.1.3.4.1 Build 130

    Hello all,
    I have a user running BI Publisher Desktop 10.1.3.4.1 Build 130 as an addon in Word 2010. He has had multiple issues with this program in the past, one of which even forced us to reinstall his machine to resolve. He is on a clean build of Windows XP with all Microsoft updates applied for the OS and Office.
    Initially he called because he was getting a "The macro cannot be found or has been disabled because of your macro security settings" error, even though all of his macros were enabled. I found a post on the forums here telling me to run C:\Documents and Settings>del /S /A:H /A:-H *.EXD which resolved the issue. This is the post: Re: Need Help Iam getting error when i try to open my RTF file
    After doing this he went into Word 2010, clicked on add-ons, data, and load xml. He has a few files he loads up, and eventually gets a Active X Runtime error 429. I can see .net is trying to load in the background when the error is presented.
    I found another post here that sent me out to this site: http://obipro.blogspot.com/2012/06/setting-up-obiee-publisher.html On this site, error 429 is listed. The recommended fix is to "remove and reinstall dotnetfiles using setup.exe located at <C:\Program Files (x86)\Oracle\BI Publisher\BI Publisher Desktop\DotNetInstallFiles>" I found the setup.exe located in this path and ran it. .net isn't uninstalled by running this, but XMLPReportingTools4WordSetup asks if it would like to be repaired or uninstalled. I tried both, and reinstalled it. Same error. I tried uninstalling .net 3.5 and reinstalling it, same error.
    Does anyone know how to fix Active X Runtime error 429?

    Man Christian!
    1000 Thanks for your tip. I run into same issue on W2K3 with 10.1.3.4 MLR#4 (so far last MR allowed for AIA apps).
    I had the orabepl.ear file of the size as was mentioned earlier: 2.530.260 in the bpel\system and other one on the j2ee\ocj4_soa\applications folder.
    Copying did not help.
    I had to perform following steps from the <MLR#4>/custom/scripts/post.bat file which takes the file from the bpel\system,
    ADDS some another .jars in it and ONLY THEN move it to the j2ee\...\applications folder:
    copy %ORACLE_HOME%\bpel\system\j2ee\orabpel.ear %ORACLE_HOME%\bpel\system\services\lib\orabpel.ear
    copy %ORACLE_HOME%\bpel\system\j2ee\ejb\oc4j_ejb_services.jar %ORACLE_HOME%\bpel\system\services\lib\ejb_services.jar
    copy %ORACLE_HOME%\bpel\system\j2ee\ejb\ejb_ob_engine_oc4j.jar %ORACLE_HOME%\bpel\system\services\lib\ejb_ob_engine.jar
    cd %ORACLE_HOME%\bpel\system\services\lib
    %ORACLE_HOME%\jdk\bin\jar -uvf orabpel.ear ejb_services.jar ejb_ob_engine.jar
    After doing manually these steps the orabpel.ear in j2ee\...\applications has got the size: 2.798.840 which was bigger as right after patch application.
    Then I deleted the orabpel folder from the j2ee\...\aplication-deployments
    started the j2ee containe (it was named: oc4_soa ) and the BPEL Console started live well as before in 10.1.3.3
    As I did verify from other files The rest of steps from the post.bat file seems did well, only this part was not executed.
    With Best Regards,
    Alexey

  • Runtime Errors after login on ISA-shop

    Dear,
    I'm trying to put up ISA on a local server to test some things. I herefore copied the configuration of the server and adjusted the JCO-user to my user.
    After this I went to the starting page of my shop and tried to log in.
    The login will be checked, but after I login I get runtime errors.
    Now I checked the NWA and the first error that pops up is the following:
    Error occcurred in EAI layer "parameters: [client]='null' [user]='null' [language]='null' [ashost]='null' [systemnumber]='null' [mshost]='null' [gwhost]='null' [gwserv]='null' [group]='null' [systemid]='null'
    Properties: {lang=EN, passwd=?, sysnr=10, jco.client.mysapsso2=AjExMDAgABRwb3J0YWw6QWRtaW5pc3RyYXRvcogAE2Jhc2ljYXV0aGVudGljYXRpb2
    After this error, there still follow some more such as:
    Unable to retrieve shop data
    The shop could not be read from the backend; check your XCM settings.
    Also verify that the customer's sales area matches one of the shop's sales areas.
    Can this has something to do with the rights I have on the SAP-system with which I'm trying to connect as JCO-user? Or is there another reason?
    Thx for the help in advance.
    Kr,
    Maarten
    Edited by: Maarten Lenvain on Feb 18, 2009 10:15 AM

    Dear Mark,
    If I test the connection in the XCM it says that everything works fine.
    I also deployed the shopadmin locally and adjusted the XCM of this as well.
    If I go to the shopmanagement, I can't find the shops, because I get runtime errors.
    If I check the logs for this application, I notice that it are the same errors, saying:
    Unable to retrieve shop data com.sap.isa.maintenanceobject.backend.MaintenanceObjectHelperException: Unable to retrieve shop data
    No connection to backend system
    So, in the XCM he says the test work fine, but I ain't able to login properly.
    How can I check if I'm using SSO or UME?
    Kr,
    Maarten
    Edited by: Maarten Lenvain on Feb 18, 2009 11:42 AM

  • Error Messages on clicking the previous button from the review of PCR.

    Hi,
    When we fill the PCR form and review it. it works fine.
    Once i click the 'previous' button from the review stage, A pop up window with title - 'Adobe Reader' comes up which says - 'Message limit exceeded <a number> errors not reported'.
    Does this have to do with the Action methods of this button.
    This is common across all forms including the standard forms delivered by SAP.
    Any pointers or duggestions to this will be highly appreciated.
    s/m - NW2004
    reg: ISR Adobe forms
    Kindly help.
    Regards,
    Anto

    Hi Anto,
    i've seen this message too in the ISR scenario on NW2004. It is related to the Active Component Framework (ACF). Please try installing the most recent xACF file. See note 766191 for more info and a link to the file for SP18.
    kind regards,
    Marijn Sponselee

Maybe you are looking for

  • CSKA & CSKB Tables -Cost Element+ Controlling Area, Cost Element Category

    I have few questions on Chart Of Accounts and Controlling Areas and CSKA(Cost elements (data dependent on chart of accounts)) and CSKB (Cost elements (data dependent on controlling area)) Tables-- 1) One Chart Of Accounts has one or more Controlling

  • Help.... cant access object

    public void getProduct(Product item)      this.product = item;      System.out.println(this.product); public boolean orderProduct(int productCode, int orderAmount)      boolean validOrder = false;      if(this.product == null)           return validO

  • Error attempting to Login to UpShot with UpXMLLibrary

    Hi, We've been having as issue trying to login to UpShot via the API using Classic ASP. We get this error: msxml4.dll error '80070005' Access is denied. At this line of the SendXml function xmlHttp.send xmlRequest Below is the exact code of the test

  • Overall working performance of fcpx - your experiences?

    I work for a small production company on an instructional DVD project. I use FCPX 10.0.4 and with so many users around the globe I wonder if I am the only one having performance probems that really make my job hard to do. I don't have the latest iMac

  • Lion or Snow Leopard?

    So I have the standard operating system that already came on my macbook pro. But I am thinking of doing a software update and am torn wheter to go with Lion or Snow Leopard? Which one works better? And should I even get a software update?