Integration of ECATT with HP QTP

Hi All,
We are in the process of _integrating the "SAP eCatt" with "QTP"._
Request you all to share your experience and knowledge in this. How best we can use it??
It will be really helpful.
Regards,
Venkat

Hi,
I have done one project on with eCATT invoking QTP scripts by passing data between the tool tools .
1) Performance wise it will be slow as you will calling QTP scripts from eCATT .
2) There are few issues related to format compatibility when you try to pass special characters between eCATT and QTP .
3) To start with , kindly go through this article , i hope it will help you /people/community.user/blog/2007/01/15/integrating-ecatt-mercury-qtp-part-2
regards
Harsha

Similar Messages

  • ECATT vs Mercury QTP

    Hi all,
    Please, let me know the differences between
    eCATT vs Mercury QTP,
    Thanks,
    kalyan chakravarthy

    Hi Kalyan,
    SAP eCATT is a automation tool meant for functional testing in SAP. It comes with WAS. Latest version is WAS 6.40. It is made in ABAP.
    QTP is Mercury's tool, which is a third party tool for automation testing. The language used here is VB Script.
    Both the tools are good. But the only drawback with eCATT as of now is that it can execute web based SAP transactions except web dynpro. So if the testing of SRM, CRM etc is involved, one is forced to use QTP.
    QTP takes the wrapping of eCATT and executes in SAP.
    If only SAPGUI based transactions are involved in testing than eCATT is the best tool to be used. And if web based transactions are also involved, forced to go for QTP.
    Hope this clears your query.
    PS If the answer solves your query, plz close the thread by rewarding each reply.
    Regards
    Sapna Modi

  • Getting Error while integrating Crystal reports with Java

    Hi All,
    I am getting below error while integrating crystal report with java
    [java] os.arch = x86
    [java] java.lang.NoSuchMethodError: com.crystaldecisions.Utilities.d.<init>
    (Ljava/awt/Image;I)V
    [java] at com.crystaldecisions.Utilities.af.try(Unknown Source)
    [java] at com.crystaldecisions.Utilities.af.a(Unknown Source)
    [java] at com.crystaldecisions.Utilities.af.<init>(Unknown Source)
    [java] at com.businessobjects.crystalreports.viewer.applet.g.a(Unknown
    Source)
    [java] at com.crystaldecisions.ReportViewer.ReportViewer.start(Unknown
    Source)
    [java] at ReportViewerFrame.<init>(ReportViewerFrame.java:51)
    [java] at JRCViewReport.launchApplication(JRCViewReport.java:29)
    [java] at JRCViewReport$1.run(JRCViewReport.java:50)
    [java] at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:
    178)
    [java] at java.awt.EventQueue.dispatchEvent(EventQueue.java:443)
    [java] at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDi
    spatchThread.java:190)
    [java] at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
    atchThread.java:144)
    [java] at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.j
    ava:138)
    [java] at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.j
    ava:130)
    [java] at java.awt.EventDispatchThread.run(EventDispatchThread.java:98)
    Any help can be appreciated
    Kalyan

    Hi All,
    For got to mention i am using crystal reports XI release 2 with JDK1.4.
    Kalyan

  • Problem in Integration of Apex with R12

    Hello,
    I followed the paper apex-ebs-extension-white-paper-345780.pdf to do Integration of Apex with R12. but stuck on one step.
    I am done with all the steps in R12. Now if i click the menu in R12, its going to my existing Apex aplication but still asking username and password.
    Can anyone help me out in what exactly I need to change in Apex Authentication scheme in Apex. Right now I am using Authentication scheme as Application Express.
    Please help me out
    Thanks in advance
    Ananya
    Edited by: Ananya on 26 Dec, 2011 8:51 PM

    Hi Mini,
    Thanks a lot for ur replies. But it is not working for me. I am not able to figure out whats going wrong.
    My Requirement is to redirect to the first page of my application without asking for the APEX login page from the EBS menu.
    So summarizing whatever I steps i have followed:-
    (1) Created Profile and function in APPS as given in "apex-ebs-extension-white-paper-345780.pdf"
    (2) I created the following package in APPS schema
         CREATE OR REPLACE PACKAGE APPS.XXAPX_SECURITY_PKG AUTHID DEFINER AS
         FUNCTION generate_hash (
         p_string IN VARCHAR2
         , p_offset IN NUMBER DEFAULT 0) RETURN VARCHAR2;
         FUNCTION validate_hash (
         p_string IN VARCHAR2
         , p_hash IN VARCHAR2
         , p_delay IN NUMBER DEFAULT 5) RETURN BOOLEAN;
         END XXAPX_SECURITY_PKG;
         CREATE OR REPLACE PACKAGE BODY APPS.XXAPX_SECURITY_PKG AS
         g_key VARCHAR2(100);
         FUNCTION generate_hash (
         p_string IN VARCHAR2
         , p_offset IN NUMBER DEFAULT 0) RETURN VARCHAR2
         IS
         BEGIN
         IF p_string IS NULL THEN RETURN NULL; END IF;
         RETURN RAWTOHEX(UTL_RAW.cast_to_raw(
         DBMS_OBFUSCATION_TOOLKIT.MD5(
              input_string=>p_string||':'||
              TO_CHAR(SYSDATE-(p_offset/24*60*60), 'YYYYMMDD HH24MISS')||g_key)));
         END generate_hash;
         FUNCTION validate_hash (
         p_string IN VARCHAR2
         , p_hash IN VARCHAR2
         , p_delay IN NUMBER DEFAULT 5) RETURN BOOLEAN
         IS
         BEGIN
         FOR i IN 0..p_delay LOOP
         IF p_hash = generate_hash (p_string, i) THEN RETURN TRUE; END IF;
         END LOOP;
         RETURN FALSE;
         END validate_hash;
         BEGIN
         SELECT encrypted_user_password INTO g_key
         FROM FND_USER WHERE user_name = 'SYSADMIN';
         END XXAPX_SECURITY_PKG;
    (3) Created a function in the APPS schema:-
         create or replace FUNCTION ebs_authenticate (
         p_username IN VARCHAR2
         , p_password IN VARCHAR2) RETURN BOOLEAN
         AS
         BEGIN
         IF apps.XXAPX_SECURITY_PKG.validate_hash (p_username, p_password) THEN RETURN TRUE; END IF;
         RETURN (apps.FND_WEB_SEC.validate_login (p_username, p_password) = 'Y');
         END ebs_authenticate;
    (4) In my authentication scheme of my apex application i have changed it to use custom authentication to use the below function
         return apps.ebs_authenticate
    (5) Created a procedure in the APPS schema:-
         create or replace PROCEDURE apps_logon
         IS
         v_username VARCHAR2(100);
         v_password VARCHAR2(32);
         BEGIN
         wfa_sec.getsession(v_username);
         v_password := xxapx_security_pkg.generate_hash(FND_GLOBAL.user_name);
         IF v_password IS NOT NULL THEN
         APEX_CUSTOM_AUTH.login(
              P_UNAME => v_username,
              P_PASSWORD => v_password,
              P_SESSION_ID => v('APP_SESSION'),
              P_APP_PAGE => apex_application.g_flow_id||':38'
         ELSE
         RAISE_APPLICATION_ERROR(-20001, 'Password is null, session id = '||icx_sec.g_session_id);
         END IF;
         END apps_logon;
    (6) In my login page, i have created a process Get Username Cookie and with the process point: onload(Before Header)
         BEGIN
         apps.apps_logon;
         EXCEPTION WHEN OTHERS THEN NULL;
         END;
    Now I am getting this error with the login page :-
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small Content-type: text/html; charset=UTF-8 Set-Cookie: WWV_CUSTOM-F_1120314105059329_811=B4134623EB436033; path=/; Location: f?CallFromForm='Y'&p=811:38
    Please help me figure out the problem as I am struggling a lot with this from last few days :(
    Thanks in advance.

  • Best practice for integrating oracle atg with external web service

    Hi All
    What is the best practice for integrating oracle atg with external web service? Is it using integration repository or calling the web service directly from the java class using a WS client?
    With Thanks & Regards
    Abhishek

    Using Integration Repository might cause performance overhead based on the operation you are doing, I have never used Integration Repository for 3rd Party integration therefore I am not able to make any comment on this.
    Calling directly as a Java Client is an easy approach and you can use ATG component framework to support that by making the endpoint, security credentials etc as configurable properties.
    Cheers
    R
    Edited by: Rajeev_R on Apr 29, 2013 3:49 AM

  • Integrating Portal Server with MS Exchange Server

    I am trying to outline a solution for integrating MS Exchange with Portal
    Server. I realize that this can be done through the Exchange Netlet in iPS
    3.0, but this will enable Outlook client access on the users machine through
    the portal, and is not what we are looking for. What we would like to
    provide is calendar (appointments, tasks, etc.) and mail information within
    a channel on the portal. We would then provide a link to the web-based
    interface for Exchange within the channel. The interface is simple, since
    web-Exchange provides a URL, although any insight on providing SSO to the
    application would be helpful.
    Is there a way we can interface with Exchange using Java-based wrappers to
    retrieve the calendar and mail information for a specific user? It seems
    like the NetMail and iPlanet Calendar Server implementations would be
    overkill for what we are looking for.
    Any help with this would be greatly appreciated. Here are some of my
    thoughts:
    1. Since Outlook has a web-interface(provides a URL), we can obviously serve
    the web application up through the portal.
    2. iPlanet Portal Server 3.0 NetMail. This will provide us with an IMAP
    interface to the contents of the mail server, allow a user to send emails,
    read emails, create folders, change folders, etc. This seems to provide a
    full-fledge email application, which may be more than we actually need. Is
    there any way to use the Java NetMail Servlet or the NetMail Lite version to
    get what we are looking for?
    3. Using iPlanet Calendar Server for the appointments and schedule, although
    I believe that Exchange does not conform to the iCalendar protocol
    specification? Again, this is a full-fledge calendar application, and seems
    to be overkill for what we may need.
    4. Using a netlet to connect to Microsoft Exchange server, which can be done
    with Portal Server 3.0 because it implements the Microsoft Exchange/DCE
    protocol. Again, this provides Outlook client access, and I am not sure if
    this is what we want. Can we use the NetLet to capture the information
    being retrieved from exchange and display it using JSP rather than s
    5. Writing a Java wrapper to the contents of the mail server using the Java
    Mail API, although this does not solve the calendar problem. We can then
    display whatever info we want on our JSP pages using the wrapper classes.
    Sean.
    [email protected]

    4. Using a netlet to connect to Microsoft Exchange server, which can bedone
    with Portal Server 3.0 because it implements the Microsoft Exchange/DCE
    protocol. Again, this provides Outlook client access, and I am not sure if
    this is what we want. Can we use the NetLet to capture the information
    being retrieved from exchange and display it using JSP rather than sHave you actually gotten this to work? Would you mind sharing this part of
    your configuration with us?
    /Steve

  • Test inside  the table is truncated when integrating Adobe forms with WD4A

    Hi All,
    I am facing issue in table when integrating adobe forms with web dynpro for ABAP.
    Whenever the pagination happens the text in the table row cells is truncated and it starts from next row in next page. Is there any properrty of table in Form builder which I can use to allow the test to go to the next page?
    Best Regards,
    Arti.

    Hi. You should place your question in "SAP Interactive Forms by Adobe" forum. You will get advice quicker there.

  • Integrating WebLogic Server with CA SiteMinder Web Agent R6

    Hi I have searched on the topic of integrating WebLogic Server with the CA SiteMinder Web Agent R6 to provide single sign on services, and have been unable to find anything. Does anyone have any experience with this that could provide some tips, or could direct me to some documentation?

    It definitely can work. We have done the same thing in several installations. The question is "How secure does it need to be?" You will be using SM to do authentication. You will configure SSO to trust the SM header variable. If you really want to be secure you need to configure your boxes so that the http server on you SUSE box (for Portal) can only be accessed from the Reverse Proxy. If another machine can access it someone could spoof the header variable and log in as anyone they want.
    Hope this is helpful.
    Anton

  • ECATT with solution manger?.

    Hi,
    Anybody explain what is relation between eCATT with solution manger?.
    Ecatt implied with solution manager or need connect R/3
    How to integrate solution manger and ecatt?
    What is the exact functionality of Solution manger? Why going to use ecatt solution
    Manager also .
    Thanks & Regards,
    Ram

    Hi Sri ram,
    eCATT is a tool to design test scripts.. A test script built by eCATT is like a recorded transaction .. which you use to re run by supplying different test data... means if you record it once.. you can use it with different test data ..
    eCATT is part of WAS and is available in ERP and as well as Solution Manager..
    Once you build all the eCATT's in ERP you can assign them to (SOLAR02-Configuration window) the blue print.. .. there is tab test cases where you can attach a test script which you created in ERP and the variant (Test data) which is to be used while testing.. (Test script + Test data) become one test case...
    You can build test plan basing on all the test cases you attached to blueprint... STWB_2....You need select which all test cases are part of this test plan...
    Once the test plan is created you have to create test packages which are collection of test cases and you can assign testers to these test packages.....
    Once these test packages are assigned to testers the testers can access the test cases attached to them and they can run them... ecatt runs automatically and with designated data and will record the result.. Transaction STWB_WORK for testers to access the test packages...
    eCATT - is to automate testing....
    Solution Manager - Provides test work bench where you can create test plans, test packages.... allowing you to manage testing. monitoring and reporting...
    Hope this helps you to understand eCATT and relation of it with Solution manager ...
    As suggested by Srinivasan please go through Sapna's eCATT blogs.. they are just wonderful source of information for eCATT..
    Please do come back if you require any further details...
    Award points if you find this answer helpful.
    Mrutyunjay
    Edited by: Mrutyunjay Rao Dora on May 15, 2008 3:25 PM

  • List of GL required in the integration of FI With SD & MM

    Hi,
    I need a list of all the GL required for integration of FI with SD & MM.
    Please help me with the same.
    Regards,
    SAHU.

    Hi,
    As per client requirment we maintain GL account. I can give you few example.
    For SD: Sales revenue,Discount allowed
    For MM: Inventory a/c, raw material consumption a/c, GR/IR account
    Regards,
    Sreekanth

  • Integrating mod_plsql reports with Oracle Apps. A maddening dilemma.

    I'm hoping there is some guru out there that has the perfect solution to this maddening dilemma I'm facing.
    The crux of the issue is this.
    I've created mod_plsql reports that can accept a session_id with which they can set a user context based on global application contexts set in Oracle applications by users as they log in.
    At this juncture, I have not figured out a way to call those mod_plsql reports from Oracle apps using a variable session_id as defined for the user when they logged into apps.
    My client want to be able to log into Oracle apps and then go to the mod_plsql reports from the Oracle Apps menu and maintain the user session, so that the mod_plsql reports are run using VPD to constrain access to the data they are displaying to that specific user.
    The client does not have Single Sign On installed nor OID.
    I had hoped to pass a variable parameter session_id from the defined menu function that would call the mod_plsql url, but I don't see any way to pass a variable there and am becoming convinced that doing so is not an option. Can anyone confirm this?
    An alternate option I'm considering that seems like it would work is to create a JSP page that gets called from a menu function. In that JSP page, I would retrieve the session_id set in apps based on the context for the user_id that I could retrieve from fnd_global.user_id and assemble a URL with the session_id that the page would then re-route to the mod_plsql page.
    Unfortunately, I'm not versed in JSP.
    How hard would it be to create the sort of page that I'm talking about?
    Would the JSP need to part of OAF?
    Can anyone think of any other options that would take care of the issue I'm dealing with?
    Thanks.
    Kurt

    See answer on other forum: Integrating mod_plsql reports with Oracle apps. Maddening dilemma.

  • Integration of BI with Oracle EBS R12

    Hi friends,
    Im in the process of integrating oracle BI 11g with the EBS R12, by following the saurabh gautam document.
    I followed all the steps indeed in the document but it didnt worked as i can redirect to the BI 11g page soon after clicking the menu in the EBS R12, but the BI login page is appearing soon after that. Since i dont want that login page to ask and im looking for SSO with BI.
    So, soon after clicking the menu it has to go the BI home page directly. I have followed all the steps in the document but none seemed to work.
    I have followed the below steps in the EBS R12 application side.
    <li>Function
    <li>Menu
    <li>Responsibility
    <li>User
    <li>Profile
    And also setted up the change described in that document in the BI side too.
    <li>the Connection Pool for Oracle e-Business Suite database
    <li>Setting up Authentication
    <li>OBIEE Configuration Changes
    -----------Updating authenticationschemas.xml
    -----------Updating instanceconfig.xml.
    Finally i have restarted the BI server too. But while clicking the menu in EBS now it is redirecting to the BI login page instead of navigating to the BI home page.
    What might be the issue friends, is im missing something in the document that i followed.
    Brgds,
    Mini

    Hi,
    See below my thread this might be of some help to you. We could successfully integrate EBS and OBIEE.
    Logout link missing upon integrating OBIEE 11g with EBS (Not through SSO)
    Thanks,
    Sri

  • Integrating Active directory  with oracle EBS 12.1.3 with 11g R2 database

    Hi,
    can any one let me know Integrating Active directory windows 2009 R2 with oracle EBS 12.1.3 with 11g R2 database software requirements and document ids for integrating.
    Is windows 2008 active directory is cerfied with 10g OID??
    regards,
    chandrasekhar.

    Hi
    I found exact note
    Is OID 10g/11g DIP Compatible / Certified With Microsoft Active Directory 2008 / Windows 2008 R1/R2? [ID 944298.1]
    From note:
    DIP 10g latest version (10.1.4.3) and DIP 11g up to PS4 / 11.1.1.5 Patchset releases integrations are certified with MS AD 2008 R1 only.
    DIP 11g certification with AD 2008 R2 is supported only with DIP 11g PS5 / 11.1.1.6 Patchset or higher.
    Note: Although DIP below 11.1.1.6 integration (synchronization, external authentication, etc.) with MS Windows / AD 2008 R2 may work, it is not officially compatible / certified. See also Note 1076018.1.
    Regard
    Helios

  • Integration Webdynpro ABAP with Webdynpro Java in Portal

    Hi All,
    I am facing problem while integrating WDA application with WDJ. I can integrate successfuly one application and trying to invoke other one with different parameters, i am facing the problem
    There is no iView available for system "XXXX_SAP_XXX": object "xxx.xxxx.xxx.xxxx". For more information, contact your administrator.
    I am passing the parameters
    system                      
    object_type                
    object_value_name          
    operation
    Thanks in advance

    Hi Samir,
    Pls look into these threads -
    IE8 problem (WebDynpro ABAP iView call)
    WebDynpro for ABAP and IE 8.0
    Regards,
    Sen

  • New GL - Real time integration of controlling with financial accounting

    Hi,
    What are the impacts of activating new GL in already existing system. I need to use the real time integration of CO to FI functionality in new GL only. Can i activate new GL for this function only?
    Please advise
    thanks

    Hi
    Yes, by activating New GL you would have real time integration of FI with CO and you dont need reconciliation ledger as available before.
    More over at the document level itself the profit centers are written to the balance sheets accounts which was earlier done in the period end activities to transfer the profit centers to debtors and creditors etc., which is known as "Document Splitting".
    You also need assign the various GL accounts and sceaniors in Controllingwhich needs to activated with Document splitting.
    Regards,
    Suraj

Maybe you are looking for

  • Vixia HF10 no longer recognized by iMac

    I've had my Canon HF10 for about a year now and I used to be able to connect it via usb and iMovie would automatically open and I could import my HD movies. I haven't touched the HF10 since at least Thanksgiving '08 and decided to load the movies int

  • Transaction type 100 cannot be used for activity 'Acquisition from invoice'

    Hi My user got the error message : Transaction type 100 cannot be used for activity 'Acquisition from invoice receipt w/ affil. comp.' when post the invoice via MIRO t code for 98% of the total amount. The posting was is related to affiliated company

  • Problem on dual monitor system

    Hi; I have dual monitors and put Eclipse on the right monitor full screen. When I move the mouse over a variable, the pop-up is displayed in the left monitor. ??? - thanks - dave

  • Screen freezing in Lion

    Since upgrading to Lion, I've had to hard shut down (?) my computer more each day. Is this a common problem or possible virus?

  • How can I view all emails (regardless of account)

    On my Mac, I can easily view all of my inboxes at once for the 3 separate mail accounts I have (work, home and one other). On the iPhone, it seems that I have to keep going back up to the top of the Mail UI and back down into each mail account in ord