OpenScript not recognizing Oracle Forms while recording loadtesting scripts

Hello folks,
I am trying to record loadtesting scripts for Oracle R12 forms, but OpenScript is unable to record the actions.
And yes, i did select EBS/Forms as the type of script :)
OpenScript Version: 12.1.0.1 Production
Regards,
Nishant

Hello Nishant
If you can properly record standard http application but not the forms part of EBS this is probably because something's wrong with the setup/link with JRE/Jinitiator.
What is the web browser you use?
What is the JRE / JInitiator version you use to access EBS?
Can you access without recording EBS from this desktop where you face the problem?
Can you please:
1/ run the diagnose tool (OpenScript Menu -> Help -> Diagnose) and tell us the resultl
2/ make sure you navigate once to EBS without OpenScript
Cheers
JB

Similar Messages

  • QTP not recognizing flex application while execution..but records fine

    Dear forum members, Am facing a issue with QTP & Flex. Appreciate if any one could help out with any solutions for the issue.
    Issue:
    QTP 11 & Flex application
    While recording QTP identifies the flex application and records the steps
    Browser("QuikViewWeb").FlexApplication("app").FlexApplication("QuikVie wWeb.swf").FlexCanvas("ManageViewContainerCanvas").FlexBox("index:3"). FlexCanvas("Devices").FlexButton("popUpButton").Click
    Browser("QuikViewWeb").FlexApplication("app").FlexApplication("QuikVie wWeb.swf").FlexCanvas("ManageViewContainerCanvas").FlexBox("index:3"). FlexCanvas("Devices").FlexList("criteriaList").FlexCanvas("[ ] Samsung").FlexCheckBox("Samsung").Click
    Browser("QuikViewWeb").FlexApplication("app").FlexApplication("QuikVie wWeb.swf").FlexCanvas("ManageViewContainerCanvas").FlexBox("index:3"). FlexCanvas("Devices").FlexButton("Okay").Click
    But after I record and try to playback the script, QTP does not recognize the flex objects. It fails to identify "FlexApplication("app")" object
    Anyone faced this kind of issue? Any solution for this issue?
    I'm using Win 7, 64 Bit, QTP 11 & Flex 4.5 Plugin for HP QuickTest Pro
    Please let me know if any more info is needed.
    Regards
    Nishar Ahmed

    Hi Nishar,
    I am facing the same problem. Did you find a solution to this?
    Regards

  • Dreamweaver 2004 MX is not recognizing my form elements

    Has anyone run into a problem with an insert or update server
    behavior not recognizing form elements? I created the page and now
    when I try to make any changes I get an error.
    "Column 'sccb_comments' is mapped to a form element that does
    not exist. Please map the column to an existing form element or set
    its value to 'None'."
    The problem is that the insert dialog box recognizes the
    form, but not any of the elements in it.
    I know that I need to upgrade to CS4, tell my director to
    cough up the funds.

    There must be something else happening on your page. But I
    have no idea
    what that might be. This should work. Sorry.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Reidster" <[email protected]> wrote in
    message
    news:[email protected]...
    > Murray,
    >
    > You replied,
    > "It wouldn't matter. It's perfectly valid to have
    <div> tags in side
    > <form>
    > tags. And it's not DW's preferences you need to worry
    about - it's HTML's
    > preferences, so to speak. I suspect that something else
    entirely is
    > causing the
    > problem. Without seeing your code, though, we cannot
    know what that might
    > be."
    >
    > Sometimes what should work or one would think should
    work doesn't. As in
    > my
    > case, the <div> tags inside my for was the issue.
    Here is the original
    > code
    > that did not allow me to assign form objects to fields
    in my database. The
    > server behavior also displayed an '!' in the application
    window until I
    > moved
    > the <div> tags outside of my form.
    >
    > <form name="frmEditRelease" id="frmEditRelease"
    method="POST"
    > action="<?php
    > echo $editFormAction; ?>">
    > <div id="new_prod_rel">
    > <p><select name="sccb_status"
    id="sccb_status">
    > <option value="0" <?php if (!(strcmp(0,
    > $row_rsEditRelease['sccb_status']))) {echo "SELECTED";}
    ?>>Open</option>
    > <option value="1" <?php if (!(strcmp(1,
    > $row_rsEditRelease['sccb_status']))) {echo "SELECTED";}
    > ?>>Pending</option>
    > <option value="2" <?php if (!(strcmp(2,
    > $row_rsEditRelease['sccb_status']))) {echo "SELECTED";}
    > ?>>Approved</option>
    > <option value="3" <?php if (!(strcmp(3,
    > $row_rsEditRelease['sccb_status']))) {echo "SELECTED";}
    ?>>Denied</option>
    > <option value="4" <?php if (!(strcmp(4,
    > $row_rsEditRelease['sccb_status']))) {echo "SELECTED";}
    > ?>>Deleted</option>
    > <option value="5" <?php if (!(strcmp(5,
    > $row_rsEditRelease['sccb_status']))) {echo "SELECTED";}
    > ?>>Deferred</option>
    > </select>
    > <label for="sccb_status">SCCB Status</label>
    > </p>
    > <p>
    > <select name="sRelease">
    > <?php do { ?>
    > <option value="<?php echo
    $row_rsProj['project_vchar']?>"
    > <?php
    > if (!(strcmp($row_rsProj['project_vchar'],
    > $row_rsEditRelease['release'])))
    > {echo "SELECTED";} ?>><?php echo
    $row_rsProj['project_vchar']?></option>
    > <?php } while ($row_rsProj =
    mssql_fetch_assoc($rsProj));
    > $rows = mssql_num_rows($rsProj);
    > if($rows > 0) {
    > mssql_data_seek($rsProj, 0);
    > $row_rsProj = mssql_fetch_assoc($rsProj);
    > }
    > ?>
    > </select><label for="sRelease">
    Release</label>
    > </p>
    > <p>
    > <select name="lifecycle">
    > <option value="System Reqts." selected="selected"
    <?php if
    > (!(strcmp("System Reqts.",
    $row_rsEditRelease['lifecycle']))) {echo
    > "SELECTED";} ?>>System Reqts.
    > <option value="Analysis" <?php if
    (!(strcmp("Analysis",
    > $row_rsEditRelease['lifecycle']))) {echo "SELECTED";}
    ?>>Analysis
    > <option value="Design" <?php if
    (!(strcmp("Design",
    > $row_rsEditRelease['lifecycle']))) {echo "SELECTED";}
    ?>>Design
    > <option value="Code" <?php if (!(strcmp("Code",
    > $row_rsEditRelease['lifecycle']))) {echo "SELECTED";}
    ?>>Code
    > <option value="Testing Phase 1" <?php if
    (!(strcmp("Testing Phase
    > 1",
    > $row_rsEditRelease['lifecycle']))) {echo "SELECTED";}
    ?>>Testing Phase 1
    > <option value="Testing Phase 2" <?php if
    (!(strcmp("Testing Phase
    > 2",
    > $row_rsEditRelease['lifecycle']))) {echo "SELECTED";}
    ?>>Testing Phase 2
    > <option value="Alpha" <?php if (!(strcmp("Alpha",
    > $row_rsEditRelease['lifecycle']))) {echo "SELECTED";}
    ?>>Alpha
    > <option value="Beta" <?php if (!(strcmp("Beta",
    > $row_rsEditRelease['lifecycle']))) {echo "SELECTED";}
    ?>>Beta
    > <option value="Gen. Release" <?php if
    (!(strcmp("Gen. Release",
    > $row_rsEditRelease['lifecycle']))) {echo "SELECTED";}
    ?>>Gen. Release
    > </select><label for="lifecyle">
    Lifecycle</label>
    > <input name="sub_ticket_id" type="hidden"
    id="sub_ticket_id"
    > value="<?php echo
    $row_rsEditRelease['sub_ticket_id']; ?>">
    > </p>
    > <p>
    > <input <?php if
    (!(strcmp($row_rsEditRelease['test_only'],1)))
    > {echo
    > "checked";} ?> name="test_only" type="checkbox"
    id="test_only" value="1">
    > <label for="test_only">
    Test Only
    > <input name="ticket" type="hidden" id="ticket"
    value="<?php echo
    > $row_rsEditRelease['Ticket']; ?>" />
    > </label>
    > </p>
    > <p><label for="sccb_comments">SCCB
    Comments</label><br /><textarea
    > name="sccb_comments" cols="60" rows="5"><?php echo
    > $row_rsEditRelease['sccb_comments'];
    ?></textarea>
    > </p>
    > <p>
    > <input type="submit" name="Submit" value="Submit"
    />
    > </p>
    > </div>
    > <input type="hidden" name="MM_update"
    value="frmEditRelease">
    > </form>
    >
    > It's not until if move the <div> tags outside of
    the <form> tags does the
    > '!'
    > on the update server behavior go away.
    >
    > Any thoughts?
    >

  • Safari is not Supporting Oracle Forms

    Hi,
    I'm using Oracle forms 11g. Previously I was able to open the Oracle Forms from Safari(5.1.3) but now I'm unable to open it from Safari(5.1.7). It is showing blank page and it is also not asking for any plug-in.
    Please help me out from this problem.

    This is mostly an Apple issue and you should discuss it with them. Oracle Support has authored some documents on the subject, but because it is really an Apple issue, you probably will be best served contacting them. Basically, Apple has put Java on lockdown. If you want it to work make some setting changes. There are numerous web site that are talking about the new restrictions. A simple Google search will get you started.
    http://www.google.com/search?q=apple+safari+won%27t+run+jre
    http://nakedsecurity.sophos.com/2012/10/18/apple-gets-aggressive-latest-os-x-java-security-update-rips-out-browser-support/
    http://joshuaesmith.tumblr.com/post/29549611105/applets-will-not-run-from-the-local-disk-in

  • I can not select oracle forms file type on translationHub import file menu,why?

    I had Create New Project Base Translation project,than,i press "Import File" menu,press "select files" button,
    and i found the file type list had "oracle report file(*.rex)" and "ALLfile(*.*)",but no Oracle forms file type list,
    Why,and i can do it ?

    Read this document on metalink 1559704.1

  • How to handle Java popup in oracle forms application through Open Script?

    I want to record and test oracle form application but it popup java dialogue box and Open Script can't handle java object.
    So how to handle the Java popups in forms application?

    Hi, Have you been able to resolve this?

  • Handling runtime errors while recording a script.

    When I record a script, I have a couple areas of the target website that throw an exception within the browser of e-Tester ( but not in any normal browser ). It is a runtime error, and complains about an unteriminated string constant. I'm not interested in trying to fix the cause, I just want to deal with the dialog. Here are my questions:
    1. I want to first check to see IF the screen is present. It looks like a standard windows error dialog.
    2. IF it's present, I then want to select the 'No' button, because I don't want to debug it, I just want to close the dialog and move on.
    That's all I want to do. I've attached a screenshot of the windows dialog I want to handle.

    I'd love to be able to find out what is causing the crash, because then I could log a bug against the web page to have the unterminated string resolved. Any idea of how I could find this? Perhaps looking through the source of the page?
    Until I find a way to determine exactly what the problem is with the web page ( sorry, it's proprietary, so I can't post the code up here ), I'm going to write a little app to watch for the box, then close it.
    I just need to find a way to call an external app before I click on the web page. How do I call an external app from within e-Tester in such a way that the call is made, and the execution continues as normal? I do NOT want e-Tester to wait for the app to close before continuing.

  • Function Module IMPORT structures not recognized in form subroutines

    Hello everyone,
    Did some searching on SDN and didn't find the answer, so I apologize if this has been covered before.
    Just finished my first Function Module.  It's a remote-enabled (RFC) function that will be called by XI to do some processing.  I have two components declared on the IMPORT tab, which we'll call "A" and "B".  Both "A" and "B" are defined with a user type, each of which is a simple structure of 4-5 fields each.  My Function Module also has two tables, and these are defined on the TABLES tab.
    Here's my problem:  When I do a syntax check, I get an error telling me that "A" and "B" are unknown.  However, I only get this error where I reference "A" or "B" in the FORM subroutines I have declared at the end of my function.
    I have my other data declarations defined globally in the "LZ...TOP" Include for my Function Module, so those don't pose a problem.  But these are my Function Module parameters, so I can't go "declare" those as I already have them defined on the appropriate tabs.
    Is there a way for me to get around this error and have them recognized globally, or do I have to resort to moving the values to some globally-declared "hold" field?  I'm hesitant to have to add them as parameters passed into the FORM routines because I pretty much reference each of the fields within the structures for "A" and "B".
    Thanks everyone.  Points definitely awarded for helpful answers.

    Dave,
    The parameters are visible only in the main program of the function module. So, if the subroutines are directly in the main function, they you should not have a issue. But if you subroutines in an include and you are calling them in the main function, then the paramters are not visible in the subroutines. In that case you will have to hold the values in a globally declared tables.
    Or you will have to pass them as parameters to Sub routines as well.
    Regards,
    Ravi
    note : please mark the helpful answers
    Message was edited by: Ravikumar Allampallam

  • Font "Verdana" is not working - Oracle forms 11g

    OS : Windows XP 32 bits - SP 3
    Forms : 11.1.2.0 - Development
    I'm using the font "Verdana" for some items in a form. When i test it, forms keeps using another font (arial). However, other fonts do work.
    These are the lines in the registry.dat file:
    default.fontMap.defaultFontname=Dialog
    default.fontMap.defaultSize=900
    default.fontMap.defaultStyle=PLAIN
    default.fontMap.defaultWeight=PLAIN
    default.fontMap.appFontnames=Courier New,Courier,courier,System,Terminal,Fixed,Fixedsys,Times,Times New Roman,MS Sans Serif,Arial default.fontMap.javaFontnames=MonoSpaced,MonoSpaced,MonoSpaced,Dialog,MonoSpaced,Dialog,Dialog,Serif,Serif,Dialog,SansSerif
    Is there another file to check. On internet, i found some info about the font.propeerties file, but there's no one in the directory used for 11g installation. There are two files named "font.properties", but located in the forms 6i directory, so i'd say these are not the files i need to check.
    Anyone can help? Thanks

    This is mostly an Apple issue and you should discuss it with them. Oracle Support has authored some documents on the subject, but because it is really an Apple issue, you probably will be best served contacting them. Basically, Apple has put Java on lockdown. If you want it to work make some setting changes. There are numerous web site that are talking about the new restrictions. A simple Google search will get you started.
    http://www.google.com/search?q=apple+safari+won%27t+run+jre
    http://nakedsecurity.sophos.com/2012/10/18/apple-gets-aggressive-latest-os-x-java-security-update-rips-out-browser-support/
    http://joshuaesmith.tumblr.com/post/29549611105/applets-will-not-run-from-the-local-disk-in

  • Not recognizing End of the record symbol for Verticle format file

    Hi ,
    Im using the Vertical fomat file for loading source data into forge process, the below is the sample record of it.
    record_id^2
    loc_veh_id^1662101
    loc_veh_id^1667901
    loc_veh_id^1673101
    loc_part_type^00029
    loc_catalog_name^Component
    loc_part_type_desc^Control Module-Ignition
    loc_image_path^ZZZ
    loc_tech_note_code^000001081
    loc_catalog_id^00143
    eor
    But when i run the baseline update entire file is considered as single record, though I specified the Row , Column and Record delimiters as \n, ^, eor respectively. Enabled required data and filter empty properties check boxes
    Any one has clue ? why is it behaving like this. I have a manipulator component after the record adapter in my pipeline, that will add an additional colum with constant value? is it causing the poblem?
    Configurations are as below.
    Dev studio 6.1.2
    Platform Services 6.1.3
    Thanks
    Dev

    This issues is resolved , there was some problem with EOL conversion , I have changed it to UNIX and it worked fine
    Thanks
    DEV

  • Satellite M100 - DVD-Multi-Drive not recognized as CD/DVD recorder (!)

    Hello,
    after installing Win XP SP3 in the last windows update, the Toshiba tools as well as other CD/DVD-burning software don't recognize the DVD-ram drive as such, only as a CD-rom-drive.
    Thus, software like recordIt doesn't work.
    I have already removed the drive from the hardware list and have reinstalled it.
    The driver used is "Mat****a DVD-RAM UJ-841S"
    That is correct, so far. But it doesn't burning CDs/DVDs.
    Has anyone noticed this problem as well?
    Thanks.
    Bjoern

    Hi
    I think its a lower upper filter issue and I think you could solve this following this step by step instruction.
    First of all remove the ODD (CD/DVD) drive from the list in device manager.
    Then access the registry and remove the Upperfilters and Lowerfilters values completely from the following registry key:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l\Class\{4D36E965-E325-11CE-BFC1-08002BE10318}
    Finally you should reboot the unit.
    After that windows will recognize the ODD again

  • IPhone does not receive audio input while recording videos & Speaker Phone

    Its like my Microphone doesn't work with Videos and Speaker phone...its getting really annoying it works fine in Voice Memos and Voice calls (Without SP)
    Videos sound nothing but statis
    Anyone know how to fix this?

    Make sure the mic isn't ubstructed when taking videos. I know thats seems like duh thing but your mic is on the bottom left of the device with the screen facing you. A lot of times  people don't relize they are doing it.

  • Not receiving all data while running a script

    Hello, I have been working on this script the last few days now and get farther and farther on it. Yesterday I finally thought I had it all complete and went to implement on a server. When I finally moved it over and did a test run the only data I was
    sent was two things Success and seconds. I didn't actually get the date or anything else. When I says seconds it just said that but didn't actually get me any data. When I ran this on me machine before I moved it over it was working. When I moved it back to
    my computer and tried again I am no longer getting the same results. For some reason it worked for awhile but no it isn't.
    $cred = Import-Clixml -Path C:\users\passworddoc.xml
    $url = "siteURL"
    $response=Invoke-WebRequest $url -Credential $cred
    if ($response.statuscode -eq 200) {
    "Success`t`t" + $startTime.DateTime + "`t`t" + ($endTime - $startTime).TotalSeconds + " seconds" | Out-File "C:\Users\T&E.csv" -Append
    } else {
    "Fail`t`t" + $startTime.DateTime + "`t`t" + ($endTime - $startTime).TotalSeconds + " seconds" | Out-File "C:\Users\T&E.csv" -Append

    You apparently had something setting $startime and $endtime when you were testing.
    Whatever it was doesn't appear to be part of that script, so those values are going to be null.  
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • DML issue in Oracle forms

    Hi,
    I have seen sometimes the queries which work in oracle sql*plus and Pl/Sql Developer,they dont work in Oracle forms, for example following query works in
    Pl/sql developer,but not in oracle forms
    select *
    from tablea
    where name in (variable)
    so if variable contains 'AA','BB'
    and records are there in table ,it will not fetch any records,whether variable is with quotes or not .........
    whenever there is a dml statement involving variables ..behavior is somewhat different ....so to get that done ....i normally transfer them to database procedure or function .....then it works fine ..
    Is it known bug or what.
    Regards,
    SS

    You can use a FORMS_DDL or EXECUTE IMMEDIATE
    select_dml := ' select * from tablea where name in ('||:variable||')';
    FORMS_DDL ( select_dml);if variable contains 'AA','BB'

  • Ctrl+Z does not work in Forms 11g on Windows (undo function)

    In Oracle Forms 11g on Windows, the undo function, ctrl+Z does not work as it did in Forms 6i.
    The ctrl+C and ctrl+V (copy/paste) work fine.
    I looked into the Forms key mapping resource file and no solution there.
    Thanks

    I'm not sure what functionality you believe you had previously, but UNDO does not have any automatic functionality built-in. This is clearly explained in the Builder Online Help. Here is some of that text. Notice carefully what it says about "Undo":
    <blockquote>Magic Item Property
    <blockquote>Description_
    Specifies one of the the following predefined menu items for custom menus: Cut, Copy, Paste, Clear, Undo, About, Help, Quit, or Window. Magic menu items are automatically displayed in the native style for the platform on which the form is being executed, with the appropriate accelerator key assigned. Cut, Copy, Paste, Clear, Window, and Quit have Built-in functionality supplied by Oracle Forms, while the other magic menu items can have commands associated with them.
    Usage Notes_
    The following settings are valid for this property:
    Cut, Copy, Paste, Clear
    These items perform the usual text-manipulation operations. Oracle Forms supplies their functionality, so the designer may not enter a command for these items.
    Undo, About
    These items have no native functionality_, so the designer must enter a command for these items. Any type of command can be used for these items, except Menu.
    ...</blockquote>
    </blockquote>

Maybe you are looking for