Handling Error caught by B1 Test Composer Tool

Hi All
I got an error message : " Unable to cast COM objects of type System._ComObject' to interface type 'SAPbouiCOM.Matrix'.
This opearation failed because the Query Interface call the COM Component for the interface with IID {DD7804DC-811B-4829-8E87-2F5C061EE59C} fails.
while selecting the row from User CFL.
Could anybody help in find out the solution.
Thanks in Advance
Regards
Nitika

Hi nitika..
I think You are doing wrong Casting ... Can u send me code...
just check if u r using Matrix then ..
oMatrix = (SAPbouiCOM.Matrix)oForm.Items.Item(ClsConstant.strSEPL_PIND_MatID).Specific;
if u r using edit box then
oEditFDate = (SAPbouiCOM.EditText)oForm.Items.Item(ClsConstant.strSEPL_RAWMPT_txt_FromDate).Specific;
hope so u will get help.....
and i accept your thanks... if problem will not solve then send me ur code..
rewards
deepak

Similar Messages

  • Functionality Testing Using B1 Test Composer Tool

    Hi,
    I would like to use B1 TC for functional testing of our add-ons. Will it be possible for me to do the functional testing(add-on's expected against add-on's actual) of the add-on using B1 TC? Could anyone explain with some examples so that I can start with B1 TC.
    Our add-on has a window that allows the user to filter and display BPs in the matrix. User can select a Payment Term from the drop down and click Refresh button. Then the BPs with matching payment term should be listed in the matrix/gird. Here I want to check whether the BPs listed is correct. How can I use B1 Test Composer to do this?
    Regards,
    Sam

    Hi Johan,
    Thanks for the response. Let me explain the scenario to be tested using B1 TC in detail. The Payment Term combo in our add-on's Payment Term Update Utility form will list the payment terms ZPNET30, NET30, -Cash Basic’ etc. On selecting one of these values (say NET30), the matrix in the form is expected to list only those BPs with matching payment term(NET30). Here I need to ensure that all the BPs listed here are having the same payment term as ‘NET30’.
    While recording this action using B1 TC, let us assume that the BPs listed in the matrix are as in the below image.
    But when I rerun the B1 TC script at some later time, the BPs list might vary because of addition of new BPs to the database or changing of payment term of the existing BPs. In this instance, the Compare Matrix function of B1 TC fails, as the expected matrix values are not the same when we re-run the script. But all the BPs listed will have the matching payment term(NET30). So B1 TC reports a bug even if the functioning of the add-on is correct.
    When I manually do the testing, I apply the filter and then load each of the BP Master Data to check whether the payment term matches the selected one in the form. Then I will change and update the payment term of the existing BP or add new BPs and again performs the filtering to check whether the search result is correct. Is there a mechanism with B1 TC to handle such scenario, like accessing each individual rows/cells of the matrix/grid and check the payment term of the BPs listed?
    Regards,
    Sam

  • Installing B1 Test Composer

    Hi Trinidad
    Thakns a lot for your first response.
    Please find here my innitial Question:
    I am Walter, a project manager from resource AG, a SAP consulting company in Switzerland.
    Here in Switzerland we are using more SAP BestPractices. Nevertheless Iu2019m interested on the test Tool which was developed in the context of SAP B1.
    I have downloaded version 2.0 an 2.3.
    With both Iu2019ve got some problems.
     V2.0: Error when starting to record: Error 80040154
     V2.3: is always asking for .NET V1.1. I have already V3.5
    On the SAP Community Network I could find your content to Version 2.0 of the Test Composer.
    Therefore Iu2019m hoping to get some support from you:
    I have Windows XP SP3, .NET 3.5 SP1, Visual Studio Express2008
    Is there a chance to get this tool running, or what is your proposal?
    Thanks a lot in advance for your help.
    Best regards.
    Now your answer:
    SAP B1 Test Composer tool needs to be run together with SAP Business One version 2007, do you have SAP B1 installed in the same machine and running before you press record?
    In SDN the latest version delivered is V2.0, where did you downloaded version 2.3?
    Maybe you will need .NET Framework 1.1 as the installer was created with VS2005, you can just install it in your machine (even if you already have .NET 3.5).
    Please find here my response to your answer:
    We do not ha a B1 system. I was on the opinion, that B1 is a "normal" SAP R/3 and based on this, I was hoping to be able ro use the Test Composer also with a SAP BestPractices installation??????
    The noxt point with the .NET 1.1!
    As I mentioned, I have .NET version 3.5. Nevertheless, the installation tool ist asking for 1.1!
    When I'm trying to install version1.1 I get the error, that a newer version already is installed on my machine!!!
    Thanks a lot in advance for your support.
    Regards.
    Walter

    Hi Walter,
    SAP Business One is an application that is not an SAP R/3 component. It is a standalone software application (connected to a database and specific license server for B1)
    The Tools that we have developed for B1 cannot be used with other SAP ERP systems and then cannot be used with SAP Best Practices.
    If you don't have SAP B1 installed in your machine you will not be able to run any of the tools published here for B1, sorry.
    There is an application called B1i that allows to connect B1 systems to SAP R/3 information for Headquarters using R/3 and subsidiaries using B1. SAP R/3 components and B1 application are completely different and separated.
    Best Regards
    Trinidad.

  • Local Module (Error-Handler) Failed the verify environment test

    When attempting to start the Messaging Server, the following error
    message occurs and the server fails to start:
    <P>
    19980226114147:Dispatch:Notification:Local Module (Error-Handler) Failed
    the verify environment test.
    <BR>Module not Loaded.
    <BR>Startup Problem:
    <BR>Module Error-Handler is required for proper operation.
    <BR>Netscape Messaging Server Exiting!
    <P>
    This problem can be caused by a corruption to the configuration file
    for the admin server that controls the Messaging server
    (install_dir/admin-serv/ns-admin.conf).
    Specifically, if the
    <B>Port</B> setting is missing, the above-mentioned error will occur.
    <P>
    Add a valid <B>Port</B> setting to the
    ns-admin.conf file and
    rerun the /etc/NscpMail start command.

    Is anyone having any idea about it...

  • Database Exception Handling Error

    Hi
    Platform: BPEL/SOA Suite 10.1.3.3
    I created an async BPEL process that does a simple insert into a database, and added error handling to ensure that database errors are trapped and interested parties notified when errors occur. To test the exception handling, I created a dummy table with an id and value column, where the value is declared as varchar2(1). Then I invoked the BPEL process with a string value longer than 1 character.
    I expected to have the process catch the error, execute a java embedded System.out.println, assign the fault details to a fault variable string, and then terminate, with the terminated process displayed in the BPEL Console. Much to my surprise, as this executed perfectly in BPEL 10.1.2, this did not happen. Instead, the java embedded System.out.println executed, but then the following error was generated and the BPEL process was sent to the Manual Recovery area.
    2007-10-18 10:52:29,879> <ERROR> <default.collaxa.cube.ws> <Database Adapter::Outbound> <oracle.tip.adapter.db.DBInteraction executeOutboundWrite> unable to execute the outbound insert operation on: DBAccessDummyTable.TestDummy
    <2007-10-18 10:52:29,879> <ERROR> <default.collaxa.cube.ws> <AdapterFramework::Outbound> file:/E:/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_Test_DummyTable_Async_1.5_709050a551839440870cf17aba79c0f7.tmp/DBAccess_DummyTable.wsdl [ DBAccess_DummyTable_ptt::insert(TestDummyCollection,TestDummyCollection) ] - Could not invoke operation 'insert' against the 'Database Adapter' due to:
    ORABPEL-11616
    DBWriteInteractionSpec Execute Failed Exception.
    insert failed. Descriptor name: [DBAccessDummyTable.TestDummy]. [Caused by: ORA-12899: value too large for column "ALE_ADAPTER"."TEST_DUMMY"."DUMMY_STRING_VALUE" (actual: 4, maximum: 1)
    Caused by Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.3.0) (Build 070608)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-12899: value too large for column "ALE_ADAPTER"."TEST_DUMMY"."DUMMY_STRING_VALUE" (actual: 4, maximum: 1)
    Error Code: 12899
    Call:INSERT INTO TEST_DUMMY (DUMMY_ID, DUMMY_STRING_VALUE) VALUES (?, ?)
         bind => [280, long]
    Query:InsertObjectQuery(<TestDummy 280 />).
         at oracle.tip.adapter.db.exceptions.DBResourceException.createEISException(DBResourceException.java:469)
         at oracle.tip.adapter.db.exceptions.DBResourceException.outboundWriteException(DBResourceException.java:510)
         at oracle.tip.adapter.db.DBInteraction.executeOutboundWrite(DBInteraction.java:963)
         at oracle.tip.adapter.db.DBInteraction.execute(DBInteraction.java:225)
         at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeRequestResponseOperation(WSIFOperation_JCA.java:485)
         at com.collaxa.cube.ws.WSIFInvocationHandler.invoke(WSIFInvocationHandler.java:435)
         at com.collaxa.cube.ws.WSInvocationManager.invoke2(WSInvocationManager.java:443)
         at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:251)
         at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:727)
    I decided to test this on my local SOA Suite, instead of deploying to the development server, and again to my surprise, the exception was caught and handled as expected, with no errors thrown. I then realized that I hadn’t set up the datasource, connection pool, and DbAdapter connection factory in Enterprise Manager for the database being used. I configured these appropriately, and once again the above error happened, this time on my local SOA Suite. I removed the connection from the DbAdapter connection factory, and the exception was once again caught and handled appropriately.
    Since our database passwords have to be changed periodically, we are required to configure the datasource etc on the server so password management can be done in one place. That being the case, I’m hoping someone can provide some ideas to help resolve this issue. I tried changing a few of the database settings in Enterprise Manager (using dataSourceName instead of xADataSourceName, setting usesBatchWriting to false instead of true) but none of these changes worked.
    Thanks

    You should look into Bridge [GOF:151] and Memento [GOF:273].
    Bridge allows you to decouple your mechanism from the implementation memento on how to propergate the decoupled exception information.

  • How to simulate a dml error in order to test try-catch code block inside a stored procedure

    Hi,
    What would be the easiest way to simulate a dml error in order to test a try catch block.
    I would like to do it with a simple command from outside the stored procedure if possible.
    I tried dropping the table that was updated but it hangs
    Thanks,
    Dani

    Dropping the table that is the target of the procedure will give you an unpleasant surprise: the CATCH block will not fire. To wit, errors like missing tables can only be caught in outer scopes, but not in the procedure where the error occurs.
    But you would add a fake constraint to a table which causes the update to fail. You need to do this in advance, not while running the procedure.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • A message will pop up (Exc in ev handl: Error: Bad NPObject as private data!) and the tab I was on will close out and reopen in a new window. Why is it happening and how do I stop it?

    Okay, I will have a window open with 4 tabs open. At first, everything is fine, but after a day or so, a message will pop up on screen saying "'''Exc in ev handl: Error: Bad NPObject as private data!'''" and after you close it out, the tab you were on will close and reopen in it's own window. I then have to shut down all both old and new windows and open a new window with my original 4 tabs again. It will work fine until a few days pass and it starts over again.

    This issue can be caused by the McAfee Site Advisor extension
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • After updating Firefox I am getting this message any time I do anything "Exc in ev handl:Error: Bad NPObject as private data"

    This error happens each time I use Mozilla. especially when I click on an extension or try to work in any of my e-mail accounts (Yahoo, Gmail, or RCN). Sometimes I am able to continue by just clicking OK and other times it prevents me from completing my task. This started happening right after I downloaded and installed your latest version of Firefox. I see others are having the same problem. Error message is "Exc in ev handl:Error: Bad NPObject as private data"

    That issue can be caused by the McAfee Site Advisor extension
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Event handler error

    I gets event handler error from the following applescript code if I leave the desktop space where "XLD" is running.
    Is there a way to avoid this error and keep running the applescript?
    tell application "System Events"
    set wnd to front window of application process "XLD"
    click button "Extract" of tool bar of wnd
    delay 1
    repeat while (name of front window of application process "XLD") = "Progress"
    end repeat
    end tell

    Do you have any Mail plug-ins installed? Mail Act-on, MailTags or whatever? If so, try disable them and then see if the scripts work.
    Alternatively, you can access the iPhoto Library from within Mail:
    Uploaded with plasq's Skitch!
    Just drag and drop to the message.
    Regards
    TD

  • In call transaction how can we handle error records.

    hai..tellme how can we handle error records in call transaction..we can get error records into one flatfile ok...then we have to execute the same bdc program with dat flat file (error records) once again...is it wright ..

    Hi,
    check this program u will get idea
    seee this prog. its will help u .
    copy and run this prog.
    TYPES : BEGIN OF t_disp ,
    vendorno(9),
    compcc(13),
    purchorg(14),
    accgroup(15),
    title(7),
    name(5),
    country(8),
    ordcurr(14),
    END OF t_disp.
    TYPES : BEGIN OF t_err,
    msgtyp LIKE bdcmsgcoll-msgtyp,
    l_mstring(250),
    END OF t_err.
    DATA: i_disp TYPE STANDARD TABLE OF t_disp,
    wa_disp TYPE t_disp,
    i_err TYPE STANDARD TABLE OF t_err,
    wa_err TYPE t_err.
    data definition
    Batchinputdata of single transaction
    DATA: bdcdata LIKE bdcdata OCCURS 0 WITH HEADER LINE.
    messages of call transaction
    DATA: messtab LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE.
    error session opened (' ' or 'X')
    DATA: e_group_opened.
    message texts
    TABLES: t100.
    PARAMETER : p_file1 LIKE ibipparms-path,
    p_cmode LIKE ctu_params-dismode DEFAULT 'N'.
    "A: show all dynpros
    "E: show dynpro on error only
    "N: do not display dynpro
    *selction screen.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file1.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    program_name = syst-cprog
    dynpro_number = syst-dynnr
    IMPORTING
    file_name = p_file1.
    AT SELECTION-SCREEN ON p_file1.
    IF p_file1 IS INITIAL.
    MESSAGE 'FILE IS NOT FOUND' TYPE 'E'.
    ENDIF.
    START-OF-SELECTION.
    PERFORM f_disp_file1.
    END-OF-SELECTION.
    PERFORM f_disp_errs.
    *& Form F_DISP_FILE1
    text
    --> p1 text
    <-- p2 text
    FORM f_disp_file1 .
    DATA: l_filename1 TYPE string.
    MOVE p_file1 TO l_filename1.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = l_filename1
    filetype = 'ASC'
    has_field_separator = 'X'
    HEADER_LENGTH = 0
    READ_BY_LINE = 'X'
    DAT_MODE = ' '
    CODEPAGE = ' '
    IGNORE_CERR = ABAP_TRUE
    REPLACEMENT = '#'
    CHECK_BOM = ' '
    IMPORTING
    FILELENGTH =
    HEADER =
    TABLES
    data_tab = i_disp
    EXCEPTIONS
    FILE_OPEN_ERROR = 1
    FILE_READ_ERROR = 2
    NO_BATCH = 3
    GUI_REFUSE_FILETRANSFER = 4
    INVALID_TYPE = 5
    NO_AUTHORITY = 6
    UNKNOWN_ERROR = 7
    BAD_DATA_FORMAT = 8
    HEADER_NOT_ALLOWED = 9
    SEPARATOR_NOT_ALLOWED = 10
    HEADER_TOO_LONG = 11
    UNKNOWN_DP_ERROR = 12
    ACCESS_DENIED = 13
    DP_OUT_OF_MEMORY = 14
    DISK_FULL = 15
    DP_TIMEOUT = 16
    OTHERS = 17
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *? prepare BDC data
    DELETE i_disp INDEX 1.
    LOOP AT i_disp INTO wa_disp .
    PERFORM bdc_dynpro USING 'SAPMF02K' '0100'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RF02K-KTOKK'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'RF02K-LIFNR'
    wa_disp-vendorno.
    'ztest_1'.
    PERFORM bdc_field USING 'RF02K-BUKRS'
    wa_disp-compcc.
    '0001'.
    PERFORM bdc_field USING 'RF02K-EKORG'
    wa_disp-purchorg.
    '0001'.
    PERFORM bdc_field USING 'RF02K-KTOKK'
    wa_disp-accgroup.
    '0001'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0110'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFA1-SPRAS'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_field USING 'LFA1-ANRED'
    wa_disp-title.
    'Mr.'.
    PERFORM bdc_field USING 'LFA1-NAME1'
    wa_disp-name.
    'test name'.
    PERFORM bdc_field USING 'LFA1-SORTL'
    'TEST NAME'.
    PERFORM bdc_field USING 'LFA1-LAND1'
    wa_disp-country.
    'in'.
    PERFORM bdc_field USING 'LFA1-SPRAS'
    'en'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0120'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFA1-KUNNR'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKS(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0210'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB1-AKONT'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0215'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB1-ZTERM'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0220'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB5-MAHNA'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0310'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFM1-WAERS'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=UPDA'.
    PERFORM bdc_field USING 'LFM1-WAERS'
    wa_disp-ordcurr.
    'inr'.
    PERFORM bdc_transaction USING 'XK01'.
    WRITE:/ WA_DISP-VendorNo,
    WA_DISP-COMPCC,
    WA_DISP-PURCHORG,
    WA_DISP-ACCGROUP,
    WA_DISP-title,
    WA_DISP-name,
    WA_DISP-country,
    WA_DISP-ORDCURR.
    CLEAR: wa_disp.
    REFRESH bdcdata.
    ENDLOOP.
    ENDFORM. " F_DISP_FILE1
    Start new screen *
    FORM bdc_dynpro USING program dynpro.
    CLEAR bdcdata.
    bdcdata-program = program.
    bdcdata-dynpro = dynpro.
    bdcdata-dynbegin = 'X'.
    APPEND bdcdata.
    ENDFORM. "BDC_DYNPRO
    Insert field *
    FORM bdc_field USING fnam fval.
    IF FVAL NODATA.
    CLEAR bdcdata.
    bdcdata-fnam = fnam.
    bdcdata-fval = fval.
    APPEND bdcdata.
    ENDIF.
    ENDFORM. "BDC_FIELD
    *& Form bdc_transaction
    text
    -->P_0322 text
    FORM bdc_transaction USING tcode.
    DATA: l_mstring(480),
    l_subrc LIKE sy-subrc.
    REFRESH messtab.
    CALL TRANSACTION tcode USING bdcdata
    MODE p_cmode
    UPDATE 'L'
    MESSAGES INTO messtab.
    l_subrc = sy-subrc.
    IF SMALLLOG 'X'.
    WRITE: / 'CALL_TRANSACTION',
    TCODE,
    'returncode:'(I05),
    L_SUBRC,
    'RECORD:',
    SY-INDEX.
    LOOP AT messtab.
    SELECT SINGLE * FROM t100 WHERE sprsl = messtab-msgspra
    AND arbgb = messtab-msgid
    AND msgnr = messtab-msgnr.
    IF sy-subrc = 0.
    l_mstring = t100-text.
    IF l_mstring CS '&1'.
    REPLACE '&1' WITH messtab-msgv1 INTO l_mstring.
    REPLACE '&2' WITH messtab-msgv2 INTO l_mstring.
    REPLACE '&3' WITH messtab-msgv3 INTO l_mstring.
    REPLACE '&4' WITH messtab-msgv4 INTO l_mstring.
    ELSE.
    REPLACE '&' WITH messtab-msgv1 INTO l_mstring.
    REPLACE '&' WITH messtab-msgv2 INTO l_mstring.
    REPLACE '&' WITH messtab-msgv3 INTO l_mstring.
    REPLACE '&' WITH messtab-msgv4 INTO l_mstring.
    ENDIF.
    CONDENSE l_mstring.
    WRITE: / messtab-msgtyp, l_mstring(250).
    *? Send this errors to err internal table
    wa_err-msgtyp = messtab-msgtyp.
    wa_err-l_mstring = l_mstring.
    APPEND wa_err TO i_err.
    ELSE.
    WRITE: / messtab.
    ENDIF.
    CLEAR: messtab, wa_err.
    ENDLOOP.
    SKIP.
    ENDIF.
    ENDFORM. " bdc_transaction
    *& Form f_disp_errs
    text
    --> p1 text
    <-- p2 text
    FORM f_disp_errs .
    SORT i_err BY msgtyp.
    LOOP AT i_err INTO wa_err.
    AT FIRST.
    WRITE : / text-002.
    ULINE.
    ENDAT.
    AT NEW msgtyp.
    IF wa_err-msgtyp = 'S'.
    WRITE : / text-003.
    ULINE.
    ELSEIF wa_err-msgtyp = 'E'.
    WRITE : / text-001.
    ULINE.
    ENDIF.
    ENDAT.
    WRITE : / wa_err-msgtyp, wa_err-l_mstring.
    CLEAR wa_err.
    ENDLOOP.
    ENDFORM. " f_disp_errs
    Regards

  • ID: How to use the test Configuration tool

    Hi all,
           I have done one simple file2file scenario and it is working fine( source file is reaching the destination).
          By using this scenario, i would like to know the use of test configuration.( which is in Integration Directory).
    I have given the input parameters what it has asked.
    Header details:-
    sender service,sender message interface and namespace.
    payload:-
    xml format( taken from message mapping)
    log result:-
    Sender Agreement
    Internal Error
    HTTP connection to ABAP Runtime failed. Error: 403 Forbidden URL: http://xxxxx:8000/sap/xi/simulation?sap-client=000 User: XIDIRUSER
    Please help me how to work with this tool.
    Regards,
    Deviprasad.

    hi deviprasad...even i face the same problem whenever i tried using test configuration tool...
    i think it means...its trying to make a connection :  HTTP connection to ABAP Runtime ......which fails due to lack of proper authorization...
    if u login to ur integration builder with a user having the proper authoriztion(i dont know exactly)...u can do the test..... coz during the test there is a connection between java and abap stack...
    pls rectify me and convey me if u get the proper answer....or if i m wrong..
    pls try to do use the test after login to IB through a user with maximum authorization....

  • Why do I get the following msg's on startup start Firefox? (1) Exc in ev handl: TypeError: oSAPlg.oRoot.log is not a function; (2) Exc in ev handl: TypeError: oSAPlg.oRoot.log is not a function; (3) Exc in ev handl: Error: Bad NPObject as private data!

    I get the following msg's. This happening more often, and when I back out to restart it may take a couple of times so that I do not get the error msg's?
    Exc in ev handl: TypeError: oSAPlg.oRoot.log is not a function
    Exc in ev handl: Error: Bad NPObject as private data!

    This issue can be caused by the McAfee Site Advisor extension
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • B1TC (Business One Test Composer) is available!

    B1TC (Business One Test Composer) is an automation
    testing tool for B1. It provides a simple way to record
    and replay scenarios for testing purposes, but it can
    also be employed in many other use cases. It complements
    B1DE and B1TE to form a complete set of development and
    testing tools.
    You can download it from SDN at
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/20cc36a1-b156-2910-eeb5-ac489e306242.
    As usual the setup comes with the source code as well,
    under the SDN license schema. The setup contains all the
    user documentation and also internal design details.
    We have created a SDN Blog for B1TC at
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/5004. [original link is broken] [original link is broken] [original link is broken] [original link is broken]
    This blog lists the latest news and limitations found in
    the current version of the tool. You can also use this
    blog to give us feedback: we are interested in your
    opinion!

    Strange...
    I have installed Intrastat addon in my machine and I started it.
    I have B1 2005 SP01 PL12 and instrastat version is 6.80.01.30 (the last one I have found)
    Are you working with the same versions?
    If I try to record the same actions as you:
    1. Click on Sales-A/R menu
    2. Click on Sales Order menu
    (it opens Sales Order form)
    3. Stop recording
    I can only see 3 lines (your first 3) and not the Set Matrix lines...
    In the matrix columns for the UDFs I cannot see any Formatted search associated... if I press Shift + alt + F2 there is not FS.
    The only explanation can be the B1 or addon version?
    Or do you have an extra configuration?
    Regards
    Trinidad.

  • Test Configuration Tool: Sender Agreement Not Found

    Hi, All:
    We have new XI3.0 setup and I just want to test simple file to file scenario, but the file was picked up by sender file adapter, however, there is no message sent to Integration server.
    When I use Test Configuration Tool, the sender agreement is green, however, it also mention Sender Agreement Not Found, see below:
    ================================================
    Sender Agreement
    ================================================
    futhermore, Interface Mapping is not found either. Actually, Interface has been created on IR. Sender Agreement also created in ID.
    Anyone who has idea about these two errors ?
    Thanks in advance
    Liang

    Hi, Raj and Srinivas:
    Thanks for your reply.
    First of all, all the objects are activated,  secondly, when create sender agreement, I just need to input the Sender Service Name / Sender Interface / Sender Interface Namespace. Then finally select commnication channel.
    For any Receiver sides, they are grey out, I am not able to input anything.
    So, there is no "*" in any fields.
    I doubt if there is any setup wrong, especially for adapter engine, maybe some modules that are not functional for file adapter engine, since I also see other problems,  I might post them as separate thread.
    In Adapter monitor page, I did not see the adapter.
    In RWB, if I use IE, there is Error in the page, using Firefox, it is OK.
    Thanks And Regards !
    Liang

  • JSPM error when we are updating core-tools component.

    Hi Gurus,
    We are updating Service Pack on Java (GRC) System. In JSPM when we are updating core-tools component we are getting the below error message. Could any one let me know whats going wrong.
    Let me know if you have any questions.
    Jan 31, 2011 10:46:50... Info: Error handling strategy: OnErrorStop
    Jan 31, 2011 10:46:50... Info: Prerequisite error handling strategy: OnPrerequisiteErrorSkipDepending
    Jan 31, 2011 10:46:50... Info: Update strategy: UpdateLowerOrChangedVersions
    Jan 31, 2011 10:46:50... Info: Starting deployment prerequisites:
    Jan 31, 2011 10:46:50... Info: Loading selected archives...
    Jan 31, 2011 10:46:50... Info: Loading archive '/usr/sap/trans/EPS/in/CORETOOLS07P_2-20002784.SCA'
    Jan 31, 2011 10:46:53... Info: Selected archives successfully loaded.
    Jan 31, 2011 10:46:54... Info: Actions per selected component:
    Jan 31, 2011 10:46:54... Info: Update: Selected development component 'com.sap.engine.visualadmin'/'sap.com'/'SAP AG'/'7.0107.20100816112037.0000'/'0' updates currently deployed development component 'com.sap.engine.visualadmin'/'sap.com'/'SAP AG'/'7.0103.20081111105857.0000'/'0'.
    Jan 31, 2011 10:46:54... Info: Update: Selected development component 'tc/template_config_tool'/'sap.com'/'SAP AG'/'7.0107.20100428095633.0000'/'0' updates currently deployed development component 'tc/template_config_tool'/'sap.com'/'SAP AG'/'7.0103.20081105084616.0000'/'0'.
    Jan 31, 2011 10:46:54... Info: Update: Selected development component 'IAIKSecurityFS'/'sap.com'/'SAP AG'/'7.0106.20091119090313.0000'/'0' updates currently deployed development component 'IAIKSecurityFS'/'sap.com'/'SAP AG'/'7.0103.20081105085706.0000'/'0'.
    Jan 31, 2011 10:46:54... Info: Update: Selected development component 'tc/sapinst/fs'/'sap.com'/'SAP AG'/'7.0107.20100817122315.0000'/'0' updates currently deployed development component 'tc/sapinst/fs'/'sap.com'/'SAP AG'/'7.0103.20081111152535.0000'/'0'.
    Jan 31, 2011 10:46:54... Info: Update: Selected software component 'CORE-TOOLS'/'sap.com'/'SAP AG'/'1000.7.01.7.2.20100818104542''/'0' updates currently deployed software component 'CORE-TOOLS'/'sap.com'/'SAP AG'/'1000.7.01.3.0.20081208163400''/'0'.
    Jan 31, 2011 10:46:54... Info: Update: Selected development component 'com.sap.engine.client'/'sap.com'/'SAP AG'/'7.0107.20100816112037.0000'/'0' updates currently deployed development component 'com.sap.engine.client'/'sap.com'/'SAP AG'/'7.0103.20081111105857.0000'/'0'.
    Jan 31, 2011 10:46:54... Info: Update: Selected development component 'com.sap.engine.configtool'/'sap.com'/'SAP AG'/'7.0107.20100816112037.0000'/'0' updates currently deployed development component 'com.sap.engine.configtool'/'sap.com'/'SAP AG'/'7.0103.20081111105857.0000'/'0'.
    Jan 31, 2011 10:46:54... Info: Update: Selected development component 'com.sap.engine.deploytool'/'sap.com'/'SAP AG'/'7.0107.20100816112037.0000'/'0' updates currently deployed development component 'com.sap.engine.deploytool'/'sap.com'/'SAP AG'/'7.0103.20081111105857.0000'/'0'.
    Jan 31, 2011 10:46:54... Info: No action: Selected development component 'com.sapportals.supportplatformSDA'/'sap.com'/'SAP AG'/'7.0103.20081105090112.0000'/'1' will not be redeployed. Only the previous development component 'com.sapportals.supportplatformSDA'/'sap.com'/'SAP AG'/'7.0103.20081105090112.0000'/'0' will be updated in the SDM repository.
    Jan 31, 2011 10:46:55... Info: Ending deployment prerequisites. All items are correct.
    Jan 31, 2011 10:46:55... Info: Starting: Update: Selected development component 'IAIKSecurityFS'/'sap.com'/'SAP AG'/'7.0106.20091119090313.0000'/'0' updates currently deployed development component 'IAIKSecurityFS'/'sap.com'/'SAP AG'/'7.0103.20081105085706.0000'/'0'.
    Jan 31, 2011 10:46:55... Info: ***** Begin of File-System Deployment IAIKSecurityFS *****
    Jan 31, 2011 10:46:55... Info: Deploy Action is UPDATE
    Jan 31, 2011 10:46:55... Info: Update - no information about previously deployed files available. Deploy new files only.
    Jan 31, 2011 10:46:55... Info: Deploying Fileset SAP Java Cryptography Toolkit / SAPJavaCryptographyToolkit to /usr/sap/D19/SYS/global/security/lib
    Jan 31, 2011 10:46:55... Error: Error: Could not extract file engine/info/IAIKSecurityFS.list from archive /usr/sap/D19/JC19/SDM/root/origin/sap.com/IAIKSecurityFS/SAP AG/0/7.0106.20091119090313.0000/tc_sec_java_crypto_fs_lib.sda
    Jan 31, 2011 10:46:55... Error: Additional error message is:
    Jan 31, 2011 10:46:55... Error: /usr/sap/D19/SYS/global/security/lib/engine/info/IAIKSecurityFS.list (Permission denied)
    Jan 31, 2011 10:46:55... Error: Error deploying Fileset SAP Java Cryptography Toolkit to /usr/sap/D19/SYS/global/security/lib
    Thanks,
    Shankam

    Hi Sowjanya,
    I gave full access to the file but still no luck.
    Here is the log error message:
    Starting Deployment of CORE-TOOLS
    Aborted: software component 'CORE-TOOLS'/'sap.com'/'SAP AG'/'1000.7.01.4.0.20090417021948''/'0':Failed deployment of SDAs:development component 'IAIKSecurityFS'/'sap.com'/'SAP AG'/'7.0104.20090220131743.0000'/'0' : abortedPlease, look at error logs above for more information!
    Deployment of CORE-TOOLS finished with Error (Duration 1031 ms
    Starting Deployment of CORE-TOOLS
    Aborted: software component 'CORE-TOOLS'/'sap.com'/'SAP AG'/'1000.7.01.4.0.20090417021948''/'0':Failed deployment of SDAs:development component 'IAIKSecurityFS'/'sap.com'/'SAP AG'/'7.0104.20090220131743.0000'/'0' : abortedPlease, look at error logs above for more information!
    Deployment of CORE-TOOLS finished with Error (Duration 1031 ms
    Help plzzz..
    Thanks,
    Shankam

Maybe you are looking for

  • ASSET MANAGEMENT CONTROL

    Dear Colleagues, At the company where I work,Users for Asset control are using; KO01 - To create an investment order. ZAFE_0002 - To set up capital project (Customised Application) KO88 - for Settlement of investment order. AS01 - For creation of ass

  • ALV Layout set fields stored in Which table?

    HI All, I Developed ALV Report,and created Layout for that . I want to know where the all fields for particular layout set are stored?

  • Need help with setting up a photolibrary on server that can be accessed/edited by multiple users

    Hi: I would like to develop an in-house photolibrary for our graphics department. The goal is to be able to add keywords to all our images so that we could have a more dynamic means of searching through our countless scanned images. Lightroom works g

  • HR Processes and Forms, Delimit multiple entries from IT0014

    Hello, I am trying to delimit multiple records in infotype 0014 with the backend service SAP_PA. I am only able to delimit the first record of this infotype while the rest of the records remain unchanged. If anyone has any info on how to delimit all

  • Use sap webdispatcher with multiple hosts

    I need to support 2 different senerios with our SAP Webdispatcher.  I need to have some users accessing services on our backend ECC system using SSL between the SAP Web Dispatcher and the client.  I have another group of users that need to use a diff