OpenScript does not record Forms actions

Hi all
I've installed a fresh R12 instance with Vision DB to demo OpenScript/OLT. I had some challenges getting R12 up and running on Win2k3 :) but it's running now and I can login to both web and forms screens. It's 12.1.1
OpenScript will not record the forms actions though. It records web fine and records the action to launch the forms screen but nothing after that. I'm running OpenScript on WinXP with JRE 1.6.0_21. I'm using the Oracle EBS/Forms script type.
I've done some digging around these forums and elsewhere and previously there seems to be some work that needed to be done with jars to get the forms recorder to work. Is this still the case? What are the best steps to diagnose this problem?
thanks for any help

I think it is better to not use Socket mode. Do you have control over your server? Which mode are you using now?
1. Look in the Java Control Panel -> Network Settings. Be sure "Use Browser settings" is checked, and that the default browser is the same one you are recording with in OpenScript. Make sure the JavaConsole does not have some other proxy configured.
2. Is your Forms NCA traffic configured on the server for Socket mode? In OpenScript Recording settings for EBS/Load you may need to check "Force HTTP Recording"
3. Is your Forms NCA traffic configured on the server for HTTPS?
Are you using IE or Firefox? Have you been able to record record regular HTTP scripts? What is your default JRE?

Similar Messages

  • Cp6 Mac - does not record audio in Video Demo mode?

    Cp6 / Mac OSX Moutain Lion - does not record audio in Video Demo mode - why is it not working?

    Please see this thread:
    http://forums.adobe.com/message/4732524#4732524

  • HELP: InDesign CC 2014 simply does not perform the action pack

    HELP: InDesign CC 2014 simply does not perform the action pack. Why?

    Exactly! I meant the Package command. Someone else it happen the same?
    Sorry for my english, friends.

  • Backup and Recovery Tool does not record backup

    When I run the Backup and Recovery Tool backup on my OAS mid-tier (Portal/BI), the backup fails because it is unable to start the wireless service, which I am not using.
    This would not be a big deal, except the Tool does not record the backup, so I cannot select it to restore.
    Is there a way to force the Tools to recognize these backups or stop the Tools from attempting to start the wireless component?

    dmctl have an option to backup the configuration only, I dont remember if that's available for that version,but you can check running dcmctl command without parameters, it would show  a big list.
    If dont, best way is making a cold backup, stop all process, make backup and start process. Remember to start proceses using dcmctl command, not opmnctl.
    Greetings.

  • Isight audio does not record with video

    isight audio does not record with video

    Welcome to the forum.
    Can you provide us with a bit more information, please?
    What OS version are you using?
    What are the full specs. of the AV file, that is not Importing with Audio?
    What Project did you set up, at New Project?
    Exactly what steps were used to Import that AV file?
    Did you allow adequate time for PrE 12 to Conform the Audio portion of your file?
    Good luck,
    Hunt

  • When I try to make a sound recording Quickplayer does not record?

    I tried to record my voice on Quickplayer however it does not record it. I looked at system preferences but did not notice any changes. However now it won't record my voice on audio recording.

    Launch QuickTime Player.
    From the menu bar top of your screen click File > New Audio Recording
    Then tap the gray button with a red circle in the middle to start recording.

  • I just update my iphone 4s to ios 7.0.4 and update my macbook pro to ios maveric. Now, my iphone 4s does not sound form the speaker and the volume button up and down also does not work.I could hear the sound through the earphone. Also the airplay disapear

    i just update my iphone 4s to ios 7.0.4 and update my macbook pro to ios maveric. Now, my iphone 4s does not sound form the speaker and the volume button up and down also does not work.I could hear the sound through the earphone. Also the airplay disapear. Please advice how to downgrade to the previous OS

    Please try going to your settings area of your display. Click on General and go to 'reset all settings'
    Good luck!

  • I'm having trouble recording a bass to go along with a recording I dropped into GB.  I'm using an interface and I can hear the bass line, I've clicked on the 'record' button, but the sound does not record.  What am I missing?

    I have the bass connected to my imac with an interface.
    I can hear the bass and I've clicked on the 'record' button, but the sound does not record.
    Am I missing something ?
    Please advise.
    Mike

    Double check all your audio settings. 
    System Preferences --> Sound --> Input should be set to your audio interface.
    GB --> Preferences --> Audio/MIDI --> Input should be set to your audio interface.
    With your track selected, open the Track Info pane, and select the Edit tab.  Under input make sure that Mono 1 or 2 is selected (which number will depend on which input you plugged your bass cable into).

  • OpenScript - do not record ADF adf.inputText actions

    Hello,
    I'm wondering why openscript engine do not records ADF adf.inputText actions  ? with a buttons, radio buttons etc. recording works correctly but not input fields?
    I constructed manualy adf.inputText  and it seems works , but why when I'm recording not works? Can anybody help me ?

    Hi,
    i'm having the same issue.
    I'm using Weblogic 10.3.4, Jdeveloper / ADF 11.1.1.4 and OpenScript 9.2.1.0.
    In previous versions of ADF and OpenScript i had to change some "Correlators" to make things work.
    When will OpenScript work 100% with ADF?
    Anybody else? Any tips?

  • Page does not navigate: form re-displays

    In my project there is a page which consists of 5 radio buttons and a "Submit" button at the last of the page.
    User selects a radio and on press Submit it navigates to a different page.
    Instead when i select a radio button and press Submit "Validation error:Value is not valid" is displayed on top of the page and page does not navigate.
    JSP code:
    <h:selectOneRadio
                                  styleClass="selectOneRadio" id="radio1"
                                                                     value="#{SL.objectSpace.sPId}" 
                                                                     onclick="return sL_radio1_onclick(this, event);">
                                                                <f:selectItem itemValue="#{varBObjs.pId}"
                                                                          itemLabel=" " />
                                                           </h:selectOneRadio>
    <hx:commandExButton type="submit" value="#{labels.button_CS}"
                                            styleClass="commandExButton" id="button_CS"
                                            action="#{SL.objectSpace.cS}"></hx:commandExButton>JS snippet:
    function sL_radio1_onclick(thisObj, thisEvent) {
         var parentRadioButtonName = thisObj.name;
         var p1=thisObj.value;
         var indexStart = eval("form1:table1:".length);
         var indexEnd = parentRadioButtonName.indexOf(':radio1');
         var parentIndex = parentRadioButtonName.substring(indexStart,indexEnd);
         if (!thisObj.checked){
              //parent unchecked, uncheck all children for this parent
              for(i=0;1==1;i++){
                  childRadioButtonName = 'form1:table1:'+parentIndex+':table2:'+i+':radio2';
                  if(thisObj.form.elements[childRadioButtonName]){
                      thisObj.form.elements[childRadioButtonName].checked=false;
                 } else {
                        break;
         } else {
              //parent checked, uncheck other parent
              for(i=0;1==1;i++){
                  parentRadioButtonName = 'form1:table1:'+i+':radio1';
                   if (thisObj.form.elements[parentRadioButtonName]) {
                     if(thisObj.form.elements[parentRadioButtonName].checked && (i != parentIndex)){
                          thisObj.form.elements[parentRadioButtonName].checked=false;
                             //uncheck children of this parent
                          for(j=0;1==1;j++){
                               childRadioButtonName = 'form1:table1:'+i+':table2:'+j+':radio2';
                                 if(thisObj.form.elements[childRadioButtonName]){
                                      thisObj.form.elements[childRadioButtonName].checked=false;
                                 } else {
                                            break;
                    } else {
                        if (i>parentIndex) {
                             break;
    }SL.java code:
    protected String sPId="same";
    |
    |
    public String getSPId() {
              return sPId;
              public void setSPId(String sPId) {
              this.sPId = sPId;
         }Thanks in advance.

    In addition my IDE throws the below error:
    (jsf E com.sun.faces.context.FacesContextImpl addMessage Adding Message[source Id = form1:table1 0:radio1,summary=Validtion Error:Value is not valid)                                                                                                                                                                                                                                                                                                                                                                                                   

  • OFT for web : does not record in popup windows

    Hello (again)
    I have a question :
    I tried openscript to test my application (oADF based) and although it was got popup windows, all is working fine and recording.
    Now with OFT for web, popup windows are not working (in recording mode, in popup window, buttons are not working) and not recorded !
    Is there something in OFT for web parameters that I should change to have same behavior than openscript ?
    thank you
    Michael.

    Hi,
    OFT comes with an Embedded browser so while record all navigations must be with in that browser only. You can try OFT Demo application see if you have any external pop ups in there as far as I have seen that demo application does not have any pop ups. Any external windows will not be recorded in OFT as far as I know. You can use Open script to do recordings in the external window.
    IE popups can be handled in OFT for example the the https web page intialization warning IE pop up can be handled.
    Thanks

  • Batch processing does not work with action

    Here is the thing. I have implementes several action on Photoshop. SOme of the include several  sub actions and  different saving locations. For example, I open a file, then I hit my prefered key combo for that action, and I have:
    1) convert to cmyk
    2)save  copy as JPG with 11 quality level
    3) save to folder A
    4) image size to 72 dpi
    5) covert to RGB
    6) save as JPG 6 quality level
    7) save to folder B
    8) close file and discard cahnges.
    Everything runs like heaven, but the moment I want to batch several files everything stalls.
    I choose file > Batch > Choose my set > choose my action
    Source > I choose where my files are (usually a PDF)
    then I use "Supress file open options dialogs"
    Destination>  Since I already have set destinations y my actions, I choose here a "dump" folder
    On errors > I hit Save As... and put a name for that log.
    Then photohop opens my PDF on Photoshop and does nothing! It keeps my file open.
    I m gettting frustated here, because I ma about to work with 400 files to batch, and this batch system does not work.
    I am using CS6
    Any clues

    Your action doesn't to seem to include any Open actions. Why do you have the "Supress" option enabled?
    Also, since your action has the two save commands, you would just leave the Destination set to None. Setting a Destination means that is going to save the files again.
    The problem you'll run into though is that the action also saves the file name as part of the action, so that you'll end up just saving over the one file each time the action is played back on your 400 files. So Photoshop will process all the files, but each time it will overwrite the first file, so you'll end up with one file in each folder. Normally, in these situations, you'd use the Destination setting and use the "Overrride Action "Save As" Commands", which would substitute the Destination folder for whenever a Save command is used. The problem here is that you can only choose a single destination folder, so all files would be saved to the same location.
    Short of scripting this, it may be best to break this into two separate actions.

  • UFT (QTP 11.5) does not record Chrome

    Hi
    I have recently installed UFT (QTP11.5) and successfully recorded scripts against a web app running in IE8. However, I have  issues with Firefox and Chrome:
    Firefox v16:
    Will record in what appears to be the Terminal mode ie will record mouse clicks on objects via coordinates and when entering text in a field it will simply record this as keyboard input.
    Chrome v22:
    Will not record anything at all. No objects or low level Terminal mode script is recorded.
    Has anyone else seen this? Note: I have installed the GUI Testing Web Add-In and checked it was active on launching UFT.
    Thanks

    Hi,
    When I am trying to create a new test or trying opening an existing test it shows an exception with below message.
    "An unexpected error occurred.
    Click ‘OK’ to close this message. You may be able to continue working,
    but note that this workflow may cause the error to occur again.
    Click ‘Details’ to display technical details on this error which may help
    you solve the problem, or can be used when contacting customer support."
    Due to this exception I can't create or execute any test in QTP 11.5 (UFT).
    Does anyone know how will I be able to resolve this issue?
    Thanks in advance.

  • Fetching Form Data... does not return form's field list to edit

    I have a Portal Form based on a view. It works fine if I run it.
    Suddenly I am unable to edit the form field properties:
    1) In the application list, I do not get run option for the form.
    2) If I go to manage and edit, "Fetching Form Data..." does not return the list of fields, so I am unable to change field properties.
    3) I can still run the form.
    Please help, I need to fix this within hours.
    Thanks in advance.

    I think I know what causes the error. Whenever I use HTML tags inside the Display Options/label text box I get this error.
    I have tried <p align="right">xyz</p> and <h4 align="right">xyz</h4>. In both cases I can run the form the first time and the label appears right justified, but when you try to edit the form, bottom left shows "error on page" and field data does not show up.
    To fix this I had to go to the version before I added the HTML tags to the label.
    Thank you for your help.

  • Illustrator CS4 does not save an action set

    In Illustrator CS4, english, under Windows XP SP3, english, I created a new action set and wrote some actions. It works. Later, I selected in the Actions menu the command Save Atctions... It opened a system' Save window, let me choose a folder and press OK, but does not do anymore else: without any word, it doesn not save a file. It does not hang, let me select folders, edit name... It seems, what Illustrator forgets about action.
    How to nuge Illustrator CS4 to finish saving actions?

    sana,
    You may try to Move the folder.
    Just deleing it may not be enough.
    If that does not help, a reinstallation of Adobe Acrobat/Reader may.

Maybe you are looking for