How to export test cases into oracle test manager

hi
present i am learning this tool help plz
how to export test cases into oracle test manager
Edited by: 799636 on Oct 5, 2010 7:11 AM

Create a script in openScript and save it to a workspace (a shared directory on the OTM server). To add an Oracle OpenScript test to OTM:
1.Select the Tests tab.
2.Click the Add button.
3.Enter a name for the test.
4.Select Oracle OpenScript in the Type field.
5.Click Find to display the Select Script dialog box.
6.Select the Repository and Workspace.
7.Select the Oracle OpenScript script that you want to add.
8.Click OK.
9.Select the owner and priority and enter any descriptive information in the Functionality and Description fields.
10.Click Save.
Regards,
Jamie

Similar Messages

  • How to import legacy claims into Oracle Trade Management using API

    Oracle has provided OZF_Claim_PUB .create_claim API to create claim but there is no documentation about mandatory fields/examples. Please provide an example usage of API.

    I haven't used this particular API, but have used similar for claims. These API's are quite well documented in the doc:
    Oracle® Marketing
    API Reference Guide
    Release 11i
    Part No. B10587-01

  • Importing existing test cases with multiple test steps into e-Manager

    When I import my excel-based test cases into e-Manager Enterprise, each test step appears as a separate test case. How can I correct this problem?

    Please try attached XLS. You need to blank out every column except for the test steps column for rows which are your test steps.

  • How to export data from a Oracle table to a delimited file?

    I know how to load delimited file into a table, but how to export
    data from a Oracle table to a delimited file?
    Thanks in advance.

    Try looking at this link, it's long but there's three different solutions discussed in it. If you look at Barbara Boehmer's
    solution in her posts in the link below you'll see that she's addressed your concerns with spool files.
    Re: utl_smtp and triggers

  • How to export image data into XDP

    Hi, All
      I'm working on a healthcare project that needs to export the doctor's signature image into XDP file from the database to fill in the Insurance company claim form. My question is how to export image data into a field node in the XDP file, we know the name of the image field which defined in the PDF form, Is it something like:
      the signature image data ?
    Should the image data in this node be base64 encoded or text encoded or something else?
    Can the image be any kind? e.g. BMP, PNG, JPEG, ..., etc?
    Thanks
    William

    Hi Andre,
    Document will be of ASCII characters right?? but image data will be in binary format. as per database concept it is stored as binary large object. But in datawarehousing the back end is also going to be some database such as Oracle or other DBs.
    which can take blob's. so it would be possible to store the binary data.
    If any one has faced this situation can reply.to this ques.
    can post the step to load image(jpg/bmp or any image format) data in to info cube??
    hi andre if u have done loading image data as you say.pls reply me if you have the steps with you.
    thanks Andre

  • Automating uploading of test case through SOLAR02 - Solution Manager

    Hi
    Currently our client is uploading hundreds of test cases into SOLUTION MANAGER manually, they have lots of test cases to be uploaded, and doing it manual is a tedious process.
    Client is requesting us to develop a program which will automate the feature of uploading the test cases into SOLUTION MANAGER.
    Detailed requirements :
    Client needs a Program to be developed in such a that, client will provide 'Project name', 'Business Scenarios' and the 'Business Process'. Also provides the folder on the desktop system with the test case file.
    Once user make this selection it(program to be developed) should upload the test document (XLS File) will be saved under a particular folder and also the manual steps maintained in the test case get uploaded.
    To meet the above requirement we are in process of debugging (tcode: SOLAR02) to check if there is any function modules or BAPI to upload the test documents and the respective test cased to develop this program, but we could not make any progress.
    Any help in this regard is highly appreciated.
    Many Many Thanks in advacne.
    Ramesh.

    Hello,
    we had this need a year ago and got the answer that it's not possible to upload several documents at one time automaticly.
    There should be a SAP partner offering a solution for it, but he could only offer it for a totaly new Solution Manager environment and not for a database which has already content in it.
    Sorry, we would also be happy to have an automated solution.
    Sonja

  • How to import csv data into Oracle using c#

    Hello,
    How to import csv data into Oracle using c #. Where data to be imported 3GB in size and number of rows 7512263. I've managed to import csv data into Oracle, but the time it takes about 1 hour. How to speed up the time it takes to import csv data into oracle. Thank you.
    This is my code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Diagnostics;
    using System.Threading;
    using System.Text.RegularExpressions;
    using System.IO;
    using FileHelpers;
    using System.Data.OracleClient;
    namespace sqlloader
    class Program
    static void Main(string[] args)
    int jum;
    int i;
    bool isFirstLine = false;
    FileHelperEngine engine = new FileHelperEngine(typeof(XL_XDR));
    //Connect To Database
    string constr = "Data Source=(DESCRIPTION=(ADDRESS_LIST="
    + "(ADDRESS=(PROTOCOL=TCP)(HOST= pt-9a84825594af )(PORT=1521 )))"
    + "(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=o11g)));"
    + "User Id=xl;Password=rahasia;";
    OracleConnection con = new OracleConnection(constr);
    con.Open();
    // To Read Use:
    XL_XDR[] res = engine.ReadFile("DataOut.csv") as XL_XDR[];
    jum = CountLinesInFile("DataOut.csv");
    FileInfo f2 = new FileInfo("DataOut.csv");
    long s2 = f2.Length;
    int jmlRecord = jum - 1;
    for (i = 0; i < jum; i++)
    ShowPercentProgress("Processing...", i, jum);
    Thread.Sleep(100);
    if (isFirstLine == false)
    isFirstLine = true;
    else
    string sql = "INSERT INTO XL_XDR (XDR_ID, XDR_TYPE, SESSION_START_TIME, SESSION_END_TIME, SESSION_LAST_UPDATE_TIME, " +
    "SESSION_FLAG, VERSION, CONNECTION_ROW_COUNT, ERROR_CODE, METHOD, HOST_LEN, HOST, URL_LEN, URL, CONNECTION_START_TIME, " +
    "CONNECTION_LAST_UPDATE_TIME, CONNECTION_FLAG, CONNECTION_ID, TOTAL_EVENT_COUNT, TUNNEL_PAIR_ID, RESPONSIVENESS_TYPE, " +
    "CLIENT_PORT, PAYLOAD_TYPE, VIRTUAL_TYPE, VID_CLIENT, VID_SERVER, CLIENT_ADDR, SERVER_ADDR, CLIENT_TUNNEL_ADDR, " +
    "SERVER_TUNNEL_ADDR, ERROR_CODE_2, IPID, C2S_PKTS, C2S_OCTETS, S2C_PKTS, S2C_OCTETS, NUM_SUCC_TRANS, CONNECT_TIME, " +
    "TOTAL_RESP, TIMEOUTS, RETRIES, RAI, TCP_SYNS, TCP_SYN_ACKS, TCP_SYN_RESETS, TCP_SYN_FINS, EVENT_TYPE, FLAGS, TIME_STAMP, " +
    "EVENT_ID, EVENT_CODE) VALUES (" +
    "'" + res.XDR_ID + "', '" + res[i].XDR_TYPE + "', '" + res[i].SESSION_START_TIME + "', '" + res[i].SESSION_END_TIME + "', " +
    "'" + res[i].SESSION_LAST_UPDATE_TIME + "', '" + res[i].SESSION_FLAG + "', '" + res[i].VERSION + "', '" + res[i].CONNECTION_ROW_COUNT + "', " +
    "'" + res[i].ERROR_CODE + "', '" + res[i].METHOD + "', '" + res[i].HOST_LEN + "', '" + res[i].HOST + "', " +
    "'" + res[i].URL_LEN + "', '" + res[i].URL + "', '" + res[i].CONNECTION_START_TIME + "', '" + res[i].CONNECTION_LAST_UPDATE_TIME + "', " +
    "'" + res[i].CONNECTION_FLAG + "', '" + res[i].CONNECTION_ID + "', '" + res[i].TOTAL_EVENT_COUNT + "', '" + res[i].TUNNEL_PAIR_ID + "', " +
    "'" + res[i].RESPONSIVENESS_TYPE + "', '" + res[i].CLIENT_PORT + "', '" + res[i].PAYLOAD_TYPE + "', '" + res[i].VIRTUAL_TYPE + "', " +
    "'" + res[i].VID_CLIENT + "', '" + res[i].VID_SERVER + "', '" + res[i].CLIENT_ADDR + "', '" + res[i].SERVER_ADDR + "', " +
    "'" + res[i].CLIENT_TUNNEL_ADDR + "', '" + res[i].SERVER_TUNNEL_ADDR + "', '" + res[i].ERROR_CODE_2 + "', '" + res[i].IPID + "', " +
    "'" + res[i].C2S_PKTS + "', '" + res[i].C2S_OCTETS + "', '" + res[i].S2C_PKTS + "', '" + res[i].S2C_OCTETS + "', " +
    "'" + res[i].NUM_SUCC_TRANS + "', '" + res[i].CONNECT_TIME + "', '" + res[i].TOTAL_RESP + "', '" + res[i].TIMEOUTS + "', " +
    "'" + res[i].RETRIES + "', '" + res[i].RAI + "', '" + res[i].TCP_SYNS + "', '" + res[i].TCP_SYN_ACKS + "', " +
    "'" + res[i].TCP_SYN_RESETS + "', '" + res[i].TCP_SYN_FINS + "', '" + res[i].EVENT_TYPE + "', '" + res[i].FLAGS + "', " +
    "'" + res[i].TIME_STAMP + "', '" + res[i].EVENT_ID + "', '" + res[i].EVENT_CODE + "')";
    OracleCommand command = new OracleCommand(sql, con);
    command.ExecuteNonQuery();
    Console.WriteLine("Successfully Inserted");
    Console.WriteLine();
    Console.WriteLine("Number of Row Data: " + jmlRecord.ToString());
    Console.WriteLine();
    Console.WriteLine("The size of {0} is {1} bytes.", f2.Name, f2.Length);
    con.Close();
    static void ShowPercentProgress(string message, int currElementIndex, int totalElementCount)
    if (currElementIndex < 0 || currElementIndex >= totalElementCount)
    throw new InvalidOperationException("currElement out of range");
    int percent = (100 * (currElementIndex + 1)) / totalElementCount;
    Console.Write("\r{0}{1}% complete", message, percent);
    if (currElementIndex == totalElementCount - 1)
    Console.WriteLine(Environment.NewLine);
    static int CountLinesInFile(string f)
    int count = 0;
    using (StreamReader r = new StreamReader(f))
    string line;
    while ((line = r.ReadLine()) != null)
    count++;
    return count;
    [DelimitedRecord(",")]
    public class XL_XDR
    public string XDR_ID;
    public string XDR_TYPE;
    public string SESSION_START_TIME;
    public string SESSION_END_TIME;
    public string SESSION_LAST_UPDATE_TIME;
    public string SESSION_FLAG;
    public string VERSION;
    public string CONNECTION_ROW_COUNT;
    public string ERROR_CODE;
    public string METHOD;
    public string HOST_LEN;
    public string HOST;
    public string URL_LEN;
    public string URL;
    public string CONNECTION_START_TIME;
    public string CONNECTION_LAST_UPDATE_TIME;
    public string CONNECTION_FLAG;
    public string CONNECTION_ID;
    public string TOTAL_EVENT_COUNT;
    public string TUNNEL_PAIR_ID;
    public string RESPONSIVENESS_TYPE;
    public string CLIENT_PORT;
    public string PAYLOAD_TYPE;
    public string VIRTUAL_TYPE;
    public string VID_CLIENT;
    public string VID_SERVER;
    public string CLIENT_ADDR;
    public string SERVER_ADDR;
    public string CLIENT_TUNNEL_ADDR;
    public string SERVER_TUNNEL_ADDR;
    public string ERROR_CODE_2;
    public string IPID;
    public string C2S_PKTS;
    public string C2S_OCTETS;
    public string S2C_PKTS;
    public string S2C_OCTETS;
    public string NUM_SUCC_TRANS;
    public string CONNECT_TIME;
    public string TOTAL_RESP;
    public string TIMEOUTS;
    public string RETRIES;
    public string RAI;
    public string TCP_SYNS;
    public string TCP_SYN_ACKS;
    public string TCP_SYN_RESETS;
    public string TCP_SYN_FINS;
    public string EVENT_TYPE;
    public string FLAGS;
    public string TIME_STAMP;
    public string EVENT_ID;
    public string EVENT_CODE;
    I hope someone can give me a solution. Thanks

    The fastest way is to use external tables or sql loader (sqlldr). (If you use external tables or sql loader, you don't use C# at all).

  • How to export report output into excel.

    Hi all
    how to export report output into excel sheet can any on give me answer step by step please as soon as possible
    kk

    Hi Prashanth,
    If you are executing Query from WAD  ---> Right click on Table (only on Characteristics Data)  --> Enhanced Menu ---> Export as --> CSV file or MS Excel
    assign points if this helps,
    Thanks,
    Sudhakar

  • Please help -  How to export HTML file into MS word format

    How to export HTML file into MS word file without any change
    in design format?
    As I have been trying to do that but problem is coming in
    formating. Table's witdth and height get disturbed in MS word when
    I import the html file.
    What I do after creating HTML in dreamweaver I save that file
    into .txt format in dreamweaver. and then import it in MS Word. And
    I tried too much for it but invain.
    Please help me in finding the way of solution.
    Please help me as my job is in trouble. It's very urgent
    pleeease help me. I'll be thankful to you.

    Just open the HTML file in Word.
    Walt
    "apollo321" <[email protected]> wrote in
    message
    news:gavbhd$6j4$[email protected]..
    > How to export HTML file into MS word file without any
    change in design
    > format?
    >
    > As I have been trying to do that but problem is coming
    in formating.
    > Table's
    > witdth and height get disturbed in MS word when I import
    the html file.
    >
    > What I do after creating HTML in dreamweaver I save that
    file into .txt
    > format
    > in dreamweaver. and then import it in MS Word. And I
    tried too much for it
    > but
    > invain.
    >
    > Please help me in finding the way of solution.
    >
    > Please help me as my job is in trouble. It's very urgent
    pleeease help me.
    > I'll be thankful to you.
    >

  • Upload of Test Cases in SAP Solution Manager.

    Hello,
    I am trying to create a project and its component in SAP Solution Manager with 12 Test Plans. The Test Plans have different number of test cases. I do not have the Test cases now, but I shall have them in future. I currently have the following data.
    Test Plan ID
    Module
    Business Process
    Business Area
    Sub Business Area
    Test Case Description
    Test Case Details
    Transaction Codes
    Priority of Test Cases
    Can I create a structure of a project in the development system in which I have 12 Test Plans and n number of Test Cases under every Test Plan? The structure would have place holder for each test case in which I can upload the Test Cases later. Is that possible?
    Regards,
    Namrata.

    Hi Namrata,
    Yes, you can create project structure before using solar01 tcode. later once your test cases (either manual or automatic) are ready then you can upload them using solar02 on test cases tab,
    refer Link Test Case to Transactions/Reports - Configuration - SAP Library
    Assignments - SAP Solution Manager - SAP Library
    Thanks
    Jansi

  • How we export report data into excel in report 10g

    hi can any one tell me
    how we export report data into excel in report 10g (except spreadsheet)

    We can use TEXT_IO Package

  • Import vmdk into Oracle VM Manager 3.0.2

    Hi,
    Can someone please tell me how I can import a vmware virtual machine into Oracle VM Manager 3.0.2
    Thanks
    Ger

    Hi,
    I have exported the vmware VM and places it in Assemblies
    When I try to create a template for it it does not show any names in "Assemebly Virtual Machines"
    "Refresh Selected Assembly" give the follwoing errors in /var/log/ovs-agent.log :
    [root@nldvnr01ovms01 ~]# [2011-11-24 23:38:02 15867] DEBUG (OVSServices:57) dispatch function get_assembly_config to server https://oracle:******@13.206.238.171:8899/api/1
    [2011-11-24 23:38:03 15868] DEBUG (OVSCommons:124) get_assembly_config: ('0004fb000003000058271d4af7a471b2', 'nldvnr01ux021')
    [2011-11-24 23:38:03 15868] ERROR (OVSCommons:143) catch_error: Cannot find OVF descriptor file.
    Traceback (most recent call last):
    File "/opt/ovs-agent-3.0/OVSCommons.py", line 141, in wrapper
    return func(*args)
    File "/opt/ovs-agent-3.0/vm.py", line 966, in get_assembly_config
    ovf_filename = find_ovf_descriptor(unpacked_path)
    File "/opt/ovs-agent-3.0/vm.py", line 948, in find_ovf_descriptor
    raise RuntimeError('Cannot find OVF descriptor file.')
    RuntimeError: Cannot find OVF descriptor file.
    [2011-11-24 23:38:03 15867] ERROR (OVSServices:61) dispatch error: get_assembly_config: <Fault 1: 'exceptions.RuntimeError:Cannot find OVF descriptor file.'>
    [2011-11-24 23:38:03 15867] ERROR (OVSCommons:143) catch_error: <Fault 1: 'exceptions.RuntimeError:Cannot find OVF descriptor file.'>
    Traceback (most recent call last):
    File "/opt/ovs-agent-3.0/OVSCommons.py", line 141, in wrapper
    return func(*args)
    File "/opt/ovs-agent-3.0/OVSServices.py", line 59, in dispatch
    return getattr(sp, func)(*args)
    File "/opt/ovs-agent-3.0/utils/xmlrpclib.py", line 1099, in __call__
    return self.__send(self.__name, args)
    File "/opt/ovs-agent-3.0/utils/xmlrpclib.py", line 1386, in __request
    verbose=self.__verbose
    File "/opt/ovs-agent-3.0/utils/xmlrpclib.py", line 1150, in request
    return self._parse_response(h.getfile(), sock)
    File "/opt/ovs-agent-3.0/utils/xmlrpclib.py", line 1289, in parseresponse
    return u.close()
    File "/opt/ovs-agent-3.0/utils/xmlrpclib.py", line 746, in close
    raise Fault(**self._stack[0])
    Fault: <Fault 1: 'exceptions.RuntimeError:Cannot find OVF descriptor file.'>
    What's wrong ?
    Hope someone can help me.
    Thanks,
    Ger

  • Import guest OS into Oracle VM manager template

    I am getting ready to install the Oracle VM Manager template on my Oracle Virtual Server. Originally I had the VM manager on a separate machine than the OVS. I have decided that I want to free up that machine and use the VM manager template. From the instructions on installing the template it does not seem that difficult. My question is since I currently already have a few guest OS's running on my current Manager how do I import those into the VM manager template when I get it installed. Because the VM manager template will be in the running pool with the other guest OS so how does it register those guest os's that have been previously created?
    Thanks

    If your servers are already registered with an Oracle VM Manager, the template will not work -- it's designed to create a new server pool, which will fail. If you want to switch to the template, dismantle the pool first (but don't delete the VMs!) and then run the template installer script. It will automatically create a pool and add the server on which you start the VM. You can then add the remaining server(s) and then import the existing VMs.

  • How to approve a credit in Oracle Credit Management

    I create a lease application from Oracle Lease and Finance Managment. How to approve a credit in Oracle Credit Management?

    Solved.
    I create a layout variant and transport it.
    Thanks.

  • How to integrate Microsoft project to Oracle Project Management?

    Dear All,
    How to integrate Microsoft project to Oracle Project Management?
    I tried to find Oracle Project button in Microsoft Project to send Project plan to oracle projects. But I didn’t not found any button like Oracle project to upload.
    Can anyone please let me know what the prerequisites to integrate and how to import the same data in oracle Project Management Module from Microsoft Project?

    Hi,
    Please see "Oracle Project Management User Guide", Chapter 5.
    Applications Releases 11i and 12
    http://www.oracle.com/technology/documentation/applications.html
    The following documents should be also helpful.
    Note: 277096.1 - **FAQ Integration with Microsoft Projects**
    Note: 236522.1 - Oracle Project Management Release & Installation Notes
    Note: 236585.1 - Oracle Project Management Documentation
    Note: 804746.1 - Is It Possible To Use Microsoft Projects Integration Without Oracle Project Management?
    Regards,
    Hussein

Maybe you are looking for

  • Fields in infocube and DSO?

    Hi Experts,                  I need some information regarding maximum number of fields in infocube and DSO?      According to my knowledge, in Infocube - characteristics --248                                                                         

  • Payment Method Supplement issue

    Hi, Is there anyone help me to resolve the issue of using Payment method Supplement. We can use this indicator at the vendor master level or override it at the time of invoice entry.  I tried to use this indicator at the time of posting the vendor in

  • I lost the ability to CHOOSE to open or save a pdf link

    Until a few weeks ago, when clicking on a pdf file I had the choice between saving the file on disk or opening it Acrobat 9. Now I don't have the choice anymore: Firefox only wants to save pdf files. Can anybody solve the problem? == This happened ==

  • Editing tools and search option stopped working after IOS Update

    Hi All, Since the last IOS & Adobe Reader Update I have been unable to edit or search within existing PDF using the Adobe Reader iPad App.   I have noticed the document now shows as protected on the Iphone Adobe Reader App but does not give me any op

  • Material document number and financial document number

    Hai Friends, How can i link material document number and financial document number