Test script creation

Hi,
Please let me know the purpose of 'System Data Container' while creating a test script.
Thanks & Regards,
Divya
Edited by: Divya Y on Mar 10, 2009 5:47 AM

Hello Divya,
This is required to connect to the target system on which the application resides.
Script is residing in the central system and throught SDC where there is RFC containing the target system login information the script connects to the target system to check the application on the target system.
You can create the RFC in SM59 and add it to the SDC created in SECATT.
Hope it answers ur question.
Thanks & Best regards,
Ajay

Similar Messages

  • Error During ECATT test script creation

    Hi,
    I am creating test script using SECATT t.cde. I select traget system and click on Pattern Button and provide input as follow.
    Group : UI Control
    Command : TCD (Record)
    Transaction : MM02
    When I click continue button, I am getting error "Transaction MM02 could not be found in Target System".
    I had check my RFC Configuration, its working properly.
    Please help me to solve this issue.
    Regards,
    Nisit

    Not sure what exactly you're asking, but here is a "how-to" article on eCATT creation:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/50bec015-14f1-2910-6080-9874b3499052

  • Test Scripts

    Some one please let me  know what a test script is.....and how it is written...I need to write it for the HR modules....This is in context with support stacks being applied to SBX. ...and for testing that....Please also let me know if it is the responsibility of a functional consultant....
    Message was edited by:
            Anu Rajagopal

    Hi,
    normally a test script contains information like; logical steps per given situation (input), per step an expected result (output), pre-conditions for execution of the test script, reference to requirement / design document. A separate area for test script final result incl. name of tester and sign-off the test result is required. The test script can only be marked as passed if all logical steps are finished succesfull according to the expected result(s).
    (example: [Input] Go to menu x, click on y; [output] y runned succesfully)
    The test-script is used to examine whether the system displays the desired behaviour under specific (in your case HR specific) circumstances.
    And (from my point of view) a functional consultant can be responsible for test script creation and execution. It depends on (test-) organization.
    Best regards,
    Maurice

  • How to define Export parameter as Import parameter in next test script.

    Hi Experts,
    We have defined Purchase order no. as export parameter in ME21N transaction test script.
    Test configuration for ME21N transaction executed succesfully and the Purchase order No. appeared in the last message
    is the export parameter for next test script i.e. MIGO transaction.
    However I am unable to define this export parameter as Import parameter in next test script for MIGO transaction.
    Please suggest me the method to define the same.
    Please Help...
    Thanks in Advance
    Vikas

    Vikas,
    You need to create super script which is nothing but having the both the steps (Po creation & MIGO ) in this eCatt script. This can be achieved by using the REF command as ex. below.
    Create PO
    REF ( Z_CREATE_PO , Z_CREATE_PO_1 ).
    Create MIGO
    REF ( Z_CREATE_MIGO , Z_CREATE_MIGO_1 ).
    Z_Create_PO is the actual eCatt script that you recorded to create the PO. Z_CREATE_QUOTE_1 is the interface created by SAP. Similarly you have use the REF command to call the MIGO script inside this super script.
    To pass the export parameter from PO step to MIGO, double click the Z_CREATE_PO_1and define the export variable for PO number. And do the same on the interface for MIGO step.
    Follow the instructions if you need in this help document posted by another user in this forum
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417200)ID0134775250DB00634934533836311611End?blog=/pub/wlg/3497
    Note : Cut & paste the entire link above to view the document.
    thanks
    Venkat

  • Can i integrate the test scripts existing in different systems?

    Hi Experts,
    I have a script in ERP and another script in SCM system(two different systems). Now in my master script, i want to integrate both and run as a single script. Can i do that?
    Many Thanks..
    Regards,
    Naresh

    Hi Christoph,  ALL,
    I was not clear with your explanation. let me tell you what i did and what i intend to do.
    1) I have created the sales order creation script in ERP system. Script name: zsalesXXXX.
    2) I have created the second script to run the planning profile  in other system ( SCM system). script name: zplanningXXXX.
    Then i hv created the SDC with RFC destination and target system name as ERP system name for this script.
    3) I want to run both the systems in ERP system using a single script. so, I have created a master script in ERP system. Script name:  zintegrateXXXX to run both the scripts i.e zsalesXXXX (created in ERP) and zplanningXXXX (created in SCM).
    4) In the master script, zintegrateXXXX I could include the first script zsalesXXXX using the REF command.
    5) The problem arises here when i'm trying to add/include the other script zplanningXXXX(created in SCM system) using REF command. It throws an error 'Test script 'XXXXXX' cannot be found in the local system.'
    I did all the recordings using TCD Record.
    Please advice me, Is there any other command which i should have used instead REF?
    or Anything went wrong in the steps i followed?
    Kindly advice. It would be very helpful for me.
    Regards,
    Naresh

  • Chaining of test script giving error

    hi,
    I have created 2 test scripts -
    1) sales order creation
    2) sales order change.
    in sales order creation test script i have maintained sales order number as export parameter. for this i have made VBAK_VBELN as export parameter. I have done  -
    MESSAGE ( MSG_1 ).
    TCD ( VA01 , VA01_1 ).
    ENDMESSAGE ( E_MSG_1 ).
    For 2nd test script i have maintained VBAK_VBELN as import parameter.
    Now i have created 3rd test script to chain the above 2 test scripts.
    here i have maintained VBAK_VBELN as variable parameter. In command interface i have added VBAK_VBELN as "exporting" and "importing".
    still the output of 1st test script is not read as the import parameter of 2nd test script.
    thanks & regards
    sonalika

    Hi Sonalika,
    In your 3rd eCATT, after calling your eCATT to create a sales order, please read the log and see whether VBAK_VBELN  gets updated.  Or, please use the code below right after calling your first eCATT to check whether VBAK_VBELN  gets updated, something like this:
    * This is the 3rd eCATT
    * calling the 1st eCATT
    * VBAK_VBELN should be maintained in the command interface
    * SALES_ORDER_CREATION in the EXPORTING section
    REF ( SALES_ORDER_CREATION, SALES_ORDER_CREATION_1 ).
    * log the variable VBAK_VBELN
    LOG ( VBAK_VBELN ).
    * calling the 2nd eCATT
    * VBAK_VBELN should be maintained in the command interface
    * SALES_ORDER_CHANGE_1 in the IMPORTING section
    REF ( SALES_ORDER_CHANGE , SALES_ORDER_CHANGE_1 ).
    If VBAK_VBELN does not get updated at LOG ( VBAK_VEBLN ), I would suppose something has gone wrong already in the first eCATT.  Then please double check whether the sales order has really been created successfully.
    Kind Regards, Qian
    PS.  If you do not want to add the coding line of LOG ( VBAK_VBELN ), just use debugger to find out whether VBAK_VBELN is updated after the first eCATT runs.

  • Test script

    Hi ,
    what is a test script for joiners,  movers, new hires.
    We have functional specifications RT now for SRM .
    we want to delimit SRM structure and make new org structure and replicate in srm.
    Now i want to to have test script for the Joiners movers etc.
    Can somebody explain me what is test script.
    How to do this work.
    Shruti

    Hello Manam,
    Here is the link which explains the process of  eCATT
    /people/sapna.modi/blog/2006/04/10/ecatt--an-introduction-part-i
    /people/sapna.modi/blog/2006/04/10/ecatt-scripts-creation-150-tcd-mode-part-ii
    /people/sapna.modi/blog/2006/04/10/ecatt-scripts-creation--sapgui-mode-part-iii
    /people/sapna.modi/blog/2006/04/18/ecatt-logs-part-vi
    Hope this helps.
    Regards
    Arif Mansuri

  • ECATT test script preparation

    Hi SRM Gurus,
    I would like to create an ecATT Test Script for creation of shopping cart. Can anyone, give me some inputs on this like, how to go about, steps involved.
    Thanks  & Regards,
    Ramkumar

    Hi,
      Pls refer the foll links:
    http://www.erpgenie.com/sap/ecatt/index.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/1b/e81c3b84e65e7be10000000a11402f/frameset.htm
    http://www.sapdevelopment.co.uk/testing/ecatt_qas.pdf#search=%22ecatt%20in%20SRM%22
    HTH.
    BR,
    Disha.
    Pls reward points for helpful answers.

  • Setting timeout for all the web test scripts in the solution

    Hello,
    I have around 16 web test scripts (using VSTS 2010 ultimate version) in my project (in a solution). By default the timeout set for each request is 60 sec. I need to increase the timeout to 180 sec. Currently, I am clicking on each request and modifying
    the timeout parameter from the Properties window.
    Is there any common setting for timeout available which would be acting across all the scripts?
    Thanks.

    Hello,
    We only can set Timeouts for a separate request in Visual Studio Web Test. There is no way to set Timeout for all requests in VS IDE. But you can write you own logic code using
    Timeout Property in a web test plugin to set Timeout for all requests in a web test.
    About how to write a web test plugin, please see:
    How to: Create a Web Performance Test Plug-In
    Best regards,
    Amanda Zhu <THE CONTENT IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, WHETHER EXPRESS OR IMPLIED>
    Thanks
    MSDN Community Support
    Please remember to "Mark as Answer" the responses that resolved your issue. It is a common way to recognize those who have helped you, and makes it easier for other visitors to find the resolution later.

  • Urgent need for AP and PO test scripts/scenarios and training user manuals

    Hi There,
    Can anyone send me test scripts/scenarios and training user manuals for AP and PO
    Please send me the docs as soon as possible on [email protected]
    I will really appreciate your help.
    Regards
    Kush

    Dear
    this topics must be included in the testing scenario
    1-Enter Supplier Data     Enter information for a given supplier, including supplier sites/addresses
    2-Create Invoice Batch: Enter information for Invoice Batch header
    3-Create a Standard Invoice: Enter information for a standard invoice in an invoice batch
    4-Invoice Distribution: Enter information details of a selected invoice
    5-Schedule Payment     Create Payment Schedule
    6-Create a Credit Memo: Enter information to create a credit memo
    7-Create Employee Exp:Enter information for an Employee Expense report
    8:Validate an Invoice: Validate an Invoice
    9-Account an Invoice: Create Accounting Entries for an Invoice
    10-Create a Quick Check: Enter data to create a Quick Payment
    11-Select Invoices for Payment:Enter data to create a preliminary list of invoices to pay, review the list, and do some changes.
    12-Format and Print a Payment Batch: Perform tasks required to Format a payment batch
    13-Confirm a Payment Batch:Perform tasks required to Confirm a payment batch
    14-Transfer to General Ledger

  • Importing internal table data from FM to eCATT test script

    Hi all,
    I am working on Workflow project where by i need to post invoices related to purchase orders sent as scanned imaages. Incase all the data in the incoming invoice(scanned) is correct then i am using BAPI_INCOMING_INVOICE_CREATE to post the invoice.
    But when the data is wrong, i need to give the user MIRO transaction pre-populated with the invoice details so that he manually corrects them(after verification) and posts the invoice.
    I understand MIRO is an ENJOY transaction hence BDC doesn't work properly(i have tried with all kinds of options on recording and the problem comes incase of multiple POs) hence i choose to use eCATT.
    The recording worksfine but my real problem is the PO data (multiple PO details for same invoice) is in table form. In all my previous objects related to eCATT we used to upload the file, hence no problem of importing tables.
    But now as i'll call this test script from a function module which has all the POs in the form of internal table, i need to import this into my test script.
    Please any body tell me how to proceed in this case or please suggest me a better a way to record the MIRO.
    Thank you,
    Lakshmi Narayana.S

    Hello Raj,
    First of all thank you for your inputs.
    Yes, I know about Parking an invoice. even i am using it in some scenarios.
    If everything on the invoice matches with the values in SAP then i am posting it using BAPI invoice_create also.
    But for some scenarios like if the PO on the invoice doesnot match with actual PO then i need to create a work item in the Accounts Payable user's inbox and he will change invoice data manually (after getting confirmation and correction) and post it using MIRO.
    Here i need to pre-populate the MIRO with the invoice data so that he can correct and post it.
    Hence i was trying to write a BDC and as MIRO is an Enjoy transaction i thought writing a BDC is not a good idea (i tried writing BDC but had problems) hence i am using eCATT.
    Hope i am clear about my problem. Any inputs to solve this are welcome.
    Thanks,
    Lakshmi Narayana.S

  • In eCATT, How to mention the values as  input parameter during test script

    Hi,
    1. I am just learning eCATT tool. I created a Test Script by recording my transaction. But if i want to execute the recorded transaction with different data then how to store the values.
    2. How to execute my Test Script created in one client to another client of same server. is it just by mentioning the target system or do we have to do anything in anothere client.
    Lakshmi

    Hi
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a0e0ebec-c9da-2910-689e-b1a22a621c7f
    Manoj Shakya.

  • Error opening a Test Script inUFT from Solution Manager

    This error is the subject of a call with SAP and HP but I wondered if anyone else has come across this problem.
    We work with Solution Manager 7.1 (SP11) and HP's UFT 11.53 to create automated testing. We ustilise the two free seat licences for UFT that are provided via enterprise support. We do not use HP's Quality Centre.
    On some occasions when trying to open a test script for editing UFT tries to open and then closes again. The error message below is displayed in solution manager.
    “External Test Tool Quick Test Professional Is Busy and Cannot Create a New Test Script”
    When this happens the local cache files are wiped. We have managed to salvage some of these scripts by pasting in copies of the cache file from another PC but some we had to recreate from scratch.

    If you don't have one already create a gateway instance on your Content Server.
    Change or create the RFC destination :  SAPKPROTP   type = T
    Check the radio button to start on Expicit Host 
    Enter the program = c:\winnt\sapkprotp.exe
    Enter target  host - use the hostname of the server for your Content Server
    Enter the Gateway information
    Regards,
    Brian

  • Transaction to find ecatt test script

    transaction to find ecatt test script and the table which stores ecatt test script
    transaction to find function group and the table which stores function group
    transaction to find general text and the table which stores general text
    where i should be able to change the devlopment class

    Hi Avinash,
    For ecatts check development class/package SECATT_DDIC and transaction SECATT.
    For general text transaction is SO10 and tables are STXH and STXL.
    For Object Naviagtor SE80 you can change development class.
    For function groups check ENLFDIR table.
    All transaction codes are stored in TSTC and TSTCT tables
    Thanks
    Lakshman

  • Test Scripts for financials modules

    Hi,
    I am looking for detailed test scripts covering all test scenarios for system testing in financials modules. I am interested in Purchasing, Payables, Cash Management, Projects and Fixed Assets. I also need for Receivables and Order Management.
    Do some body have this please let me know. If there is any website or download place where I can get this. Please let me know.
    I am looking for a test script to show the purpose and results clearly including the gl accounts involved and the results in debiting and crediting the accounts in various transactions while doing the test. For ex. when you validate a PO matched invoice in Payables which accounts get affected and how etc.
    Thanks in advance
    Regards,

    Pl do a search for "financials test scripts" in the forum search - this has been discussed and responded to many times before :-)
    HTH
    Srini

Maybe you are looking for

  • Is there a fix for Firefox being auto-redirected to known attack site from every new Google search?

    Every time I do a Google search, the first link in that search clicked will direct me to a known attack site at http://64.111.212.229/ (URL followed by lines of gibberish code). It will occur only on the first link of any new search attempted. My AV

  • PC Sync problem N70 Lotus Notes 7

    Hi to all, I cannot sync my N70 and Lotus Notes 7. I start sync and it connect but the window of PC Sync disappear and on the phone is shown Synchronising but after a while I get a message that it is timed out. Here are the details. Please help! Than

  • Oracle application server issue

    Hi, right now i m using oracle application server 10g on Hp-unix 11.11 (v1) , suddenly when the number of connection are increasing , memory usage reach to the 100% and my users got disconnected , previously it was the issue of number of connection a

  • Autocomplete / code insight features appeared in Release 919.

    The first time I ran version 919, in the SQL Worksheet pain I typed in "DBMS_" and Code Insight popped up listing the database packages starting with "DBMS_". That was very cool! Only problem is Code Insight has disappeared. I made no Raptor configur

  • Date picker validation

    Hello everyone, I need help on the following. i have date picker colum .I want a validation chk so that nobody can enter except MM/DD/YYYY) format and also nobody can cahnge the date