OpenScript 9.3.1 hangs recording WebHttp type script

Installed OATS 9.31.0036 on Windows 2008 R2 and Trying to record a HTTP Web
type of script for PeopleSoft Transaction and OScript stops recording HTTP
requests.
OpenScript
Version: 9.3.0.0 Production
Build ID: 2.6.0.0272
IE 8.0.76.16385.
I tried the transaction with HTTP watch everything seems to be fine.
Is there any setting in OSCRIPT I may be missing?

Windows Server 2008 6.1 , x86
OpenScript 12.2.0.2.79
Internet Explorer 8.0.7600.16385
FireFox 19.0.2
Open Script hangs not recording PeopleSoft transaction.
Open Script type Load Testing/Oracle Peoplesoft
Open Script Preferences>Record HTTP>General>Miscellaneous>Record Mode>HTTP
Open Script Preferences>Record HTTP>General>Miscellaneous>IE Cache>Propmpt to Clear
Open Script Preferences>Record HTTP>Proxy Settings>Chain Proxy>Use browser's proxy
Open Script Preferences>Correlation>HTTP>Web Default (System - Version 12.2.0.1)
Open Script Preferences>Correlation>HTTP>PeopleSoft Version 4
Open Script Preferences>Correlation>Oracle PeopleSoft Load>PeopleSoft (System - Version 12.2.0.1)

Similar Messages

  • How to print devlievery document with out condition record mess type

    Hi,
    Actually user want to take the sample print out  ( Hard copy ) of the delivery note and other documents for reference, even the message type processed, not processed and even ended with errors also
    I have written a program to display the delivery document numbers  with check boxses and added one button in application tool bar.
    onece user executed the program, he will able to see all the delivery or sales numbers with checkboxes.
    now requirement is, users will select check box and click on the print button it should fire printouts in local printer of user location.
    for this what we are planning is we want to maintian the entries in NAST by RV_MESSAGE_* function modules and printing the output immedaietly
    If any one worked on this kind of requirement, please suggest step by step, how we can print the documents with directly maitaining the message types with out condition records
    Thanks in advance.
    Raju

    Hi,
    Generally if we create any document ( sales or delivery ), based on the condition record message type will be created and with message type details print will be triggered when the medium is 1, date time 4
    But in my case i want to take the printout irrespective of the message and condition records
    i want to take printout even if the message processed,not processed and ended with error.
    is there any way to take the print of the documents by using function modules or updation of NAST table.
    Please help me.
    Thanks in advance
    Raju

  • Can we change the Record Group Type through Custom.pll

    Hello All,
    I have a small requirement on Changing the Record Group Dynamically.
    Can i set the Record group type to 'Query' from 'Static'. i.e Can i change the Record group type dynamically through custom.pll. I know that we can dynamically change the Record group query.
    Please help me its a bit urgent.
    Thanks inadvance,
    Amarnadh Js

    you can control your record group runtime without create any recordgroup at design time..
    1.static group
    declare
       rg_name         VARCHAR2 (40)  := 'Global_Rgp_Menu';     --global record group name for menu use
       rg_id           recordgroup;                                            --global record group id
       gc_id           groupcolumn;                                     --global record group coulmn id
       errcode         NUMBER;                                                             --error code
       grp_row         PLS_INTEGER    := 0;                             --global record group row count
    begin
      rg_id := FIND_GROUP (rg_name);
       IF NOT ID_NULL (rg_id)
       THEN
          DELETE_GROUP_ROW (rg_id, all_rows);
       ELSE
          rg_id := CREATE_GROUP (rg_name, global_scope);
          gc_id := ADD_GROUP_COLUMN (rg_id, 'menu_item', char_column, 100);
          gc_id := ADD_GROUP_COLUMN (rg_id, 'p_type', char_column, 100);
          gc_id := ADD_GROUP_COLUMN (rg_id, 'p_no', char_column, 100);    
       END IF;
      grp_row := 0;
      for 1 in 1..10 loop
           grp_row := grp_row + 1;
          ADD_GROUP_ROW (rg_id, grp_row);
          SET_GROUP_CHAR_CELL (rg_name || '.menu_item', grp_row, 'menu' || to_char(i) );
          /*type*/
          SET_GROUP_CHAR_CELL (rg_name || '.p_type', grp_row,  'type' || to_char(i) );
          /*program_no */
          SET_GROUP_CHAR_CELL (rg_name || '.p_no', grp_row,  'programno' || to_char(i) ); 
      end loop;
    end;
    2. query group
    declare
       FACT_SQL VARCHAR2(500) :=NULL;
       rg_name1       VARCHAR2(40) := 'Global_Rgp_fact';
       rg_id1   RecordGroup;
       Error_Flag number:=0;
       group_error exception;
    begin
       rg_id1 := Find_Group( rg_name1 ); IF NOT Id_Null(rg_id1) THEN Delete_Group( rg_id1 ); END IF;     
       FACT_SQL := ' SELECT *   FROM MYFACTORY  ' ;      
       rg_id1 := Create_Group_From_Query( rg_name1,FACT_SQL ,global_scope);
        Error_Flag := POPULATE_GROUP(rg_id1);
        IF Error_Flag <>0 THEN     
               error_msg:='Error while populating factory group';   
               raise group_error;
        END IF; 
    exception
      when group_error then
         message(error_msg);
        raise;
    end;Edited by: nolemlin on 2010/3/23 上午 7:50

  • DB Storage parameter (Active Records): data type

    Hi i wish to declare DB Storage parameter (Active Records) data type as as DODS but iam unable to navigate to that options. can some one help me out.

    Hi........
    Check this :
    http://help.sap.com/saphelp_nw04s/helpdata/en/a7/214538821ae027e10000009b38f8cf/frameset.htm
    Re: Regarding Maintain DB Storage Parameters
    Hope this helps......
    Regards,
    Debjani.........

  • Filling record object types dynamically

    The example below shows the code to create two object types, and in the PL/SQL block the record object type is filled.
    create type parameter_type as object
    (name varchar2(30)
    ,value varchar2(250));
    create type parameterset_type as table of parameter_type;
    declare
    l_parameters parameterset_type;
    begin
    l_parameters := parameterset_type
    (parameter_type('par1', 'value1')
    ,parameter_type('par2', 'value2')
    end;
    Is it possible to fill the record object type in a more dynamic way than by a single assignment, as in the example? I would like to be able to create a loop in which I fill the rows one by one.
    So something like:
    declare
    cursor c_prm is
    select name
    from parameters
    order by seqnr;
    begin
    for r_prm in c_prm
    loop
    -- add parameter c_prm.name to parameterlist
    end loop;
    end;

    just guessing but in that case, build an array or table where you can put every record.
    type t_dummy is table of parameter_type;
    declare
    v_dummy t_dummy := t_dummy(null);
    v_dummy.extend;
    v_dummy(i) := parameterset_type
    (parameter_type(r_prm.name, 'value1');

  • DBM Time recording Event type sequence

    Hi Experts, Is it possible to define the sequence for time recording event types in standard? Currently we are able to perform the end order event before the Start order event. The entry gets stored in table /DBM/TM_TEVENT. Another example is - We can perform the Clock Out event type before Clock IN. These event types should be in sequence. System should not allow to perform Clock Out if Clock IN has not happened for the day. Is there any way out to fulfill the above requirement. Kindly suggest. Regards, T.R.S.Praveen

    Try below suggestion, in my opinion there isn't a standard config to define the sequence since there cannot be a fixed sequence since requirement might differ from customer to customer:
    When time events are entered at DBM time recording terminals, the system logs a time event for a personnel number in a first step, and in a second step CATS data records are created from the sequence of the logged time events.
    You can influence the posting of time events of a DBM time recording terminal in CATS by using the BAdI /DBM/BADITM_TEVENT_PROC.
    You can use the BAdI method ACTION_AFT_CHECK_TIME_EVENTS to process the CATS records generated from the time events before they are saved to the database. The method supplies the current personnel number, the current terminal key and the affected time events for information purposes; you can change the proposed CATS records that are to be saved.
    Regards,
    Sachin Balmiki

  • Info record condition type?

    dear gurus,
    i want to delete some of the info record condition types.how can i?
    if i do so, what will be the impacts?
    pls suggest...

    Hi,
    If you are deleting all  condition types from inforecord.
    Then PO will not fetch net price with reference inforecord.That price shld be given manually.
    Thanks and regards
    Gitesh

  • Standard driver programs,output type ,scripts,smartforms for SD reports

    hi experts,
                  Can any one list all the standard driver programs,output types ,scripts,smartforms for SD reports.
    mani

    Hi,
    Check this out
    NACE
    You can track the form and the print program used for that form
    The Tcode NACE is used to link the Standard SAP forms (SCRIPTFORM or SMARTFORM) or the customized form or the new form to its respective print programs. Also the output types, Form entry are linked with their forms and print programs. In short term, i can tell u that configuration or customization of forms to print programs, assigning output types, form entry to the forms are done using this Tcode.
    NACE is used to create output type while creating the output type you will mention forms, and driver program.
    that will be maintained in the table TNAPR.if you create the output type using NACE then it will be automatically visible in table NAST and TNAPR.
    so check in NAST, TNAPR table
    http://help.sap.com/saphelp_erp2005/helpdata/en/c8/1989fe43b111d1896f0000e8322d00/frameset.htm
    Condition records in NACE?
    and
    NACE is used for message control customizing.
    Take a look at the following link
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/198a1843b111d1896f0000e8322d00/frameset.htm
    and also
    NACE is used for message control customizing.
    Take a look at the following link
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/198a1843b111d1896f0000e8322d00/frameset.htm
    If it helps reward with points..

  • Cannot create a date in cfformitem type="script"

    I tried to create date variables using "new Date" in
    cfformitem type="script" and got an error about the "new" reserver
    word. Therefore, I removed the "new" and tested the script. It
    worked with the wrong result because the todayDate and selectedDate
    in the CheckDate2 were the same. By some reason, it ignored all the
    input parameters. However, everything worked fine in the
    cfsavecontent.
    Anyone has idea? Thanks in advance.
    Here is the script:
    <cfsavecontent variable="CheckDate1">
    var todayDate = new Date(myForm.todayYear,
    myForm.todayMonth, myForm.todayDate, 0, 0, 0, 0);
    var selectedDate = new Date(
    myForm.select_date1.substr(6, 4),
    myForm.select_date1.substr(0, 2) - 1,
    myForm.select_date1.substr(3, 2),
    0, 0, 0, 0
    alert("Today's Date in the cfsavecontent:\n" + todayDate +
    "\n\n" +
    "Seleced Date in the cfsavecontent:\n" + selectedDate);
    if (selectedDate > todayDate)
    alert("You cannot select a date greater than today's date");
    else
    alert("You are ok.");
    </cfsavecontent>
    <cfform name="myForm" format="Flash">
    <cfformitem type="script">
    function CheckDate2():Void
    var todayDate = Date(myForm.todayYear, myForm.todayMonth,
    myForm.todayDate, 0, 0, 0, 0);
    var selectedDate = Date(
    myForm.select_date2.substr(6, 4),
    myForm.select_date2.substr(0, 2) - 1,
    myForm.select_date2.substr(3, 2),
    0, 0, 0, 0
    alert("Today's Date in the cfformitem:\n" + todayDate +
    "\n\n" +
    "Seleced Date in the cfformitem:\n" + selectedDate);
    if (selectedDate > todayDate)
    alert("You cannot select a date greater than today's date");
    else
    alert("You are ok.");
    </cfformitem>
    <CFCALENDAR name="select_date1" height="150" width="310"
    onchange="#CheckDate1#">
    <CFCALENDAR name="select_date2" height="150" width="310"
    onchange="CheckDate2()">
    <cfinput type="text" name="todayYear"
    value="#DateFormat(Now(), 'yyyy')#" label="todayYear">
    <cfinput type="text" name="todayMonth"
    value="#DateFormat(Now(), 'm') - 1#" label="todayMonth">
    <cfinput type="text" name="todayDate"
    value="#DateFormat(Now(), 'd')#" label="todayDate">
    </cfform>

    > I am using CF 7.0.2.
    Good. That's that sorted.
    > The problem is the cfformitem does not allow
    “new” or other reserved words
    As I'm sure you're already aware, it is so by design. For
    security reasons, the Coldfusion Flash form compiler does not allow
    the creation of objects in an event handler. It therefore prohibits
    the use of the "new" keyword in an event handler script. In fact,
    It may not even allow its occurrence in a comment!
    > When I put the function in a .as file and include it in the
    CFM file or use
    > cfsavecontent to store the as function, the CF compiler
    accepts the reserved
    > word “new” and the script works fine.
    It's a hack, one design gremlin that got away. In programming
    as in nature there are (un)lucky accidents.
    > the Date constructor ignores the input parameters and
    creates the
    > current system date in the date objects.
    We should be glad it even gets that far. Without the "new"
    keyword, it should not be possible to create a new Date object. The
    flash compiler encounters a familiar constructor pattern, and
    simply makes do by creating the default date of today, right down
    to hours, minutes and seconds. Your arguments are ignored.
    Thus, the following will all return the same result, namely,
    the date of today.
    var todayDate = Date(myForm.todayYear, myForm.todayMonth,
    myForm.todayDate, 0, 0, 0, 0);
    var todayDate = Date(myForm.todayYear, myForm.todayMonth,
    myForm.todayDate);
    var todayDate = Date(0);
    var todayDate = Date(100000000000);
    var todayDate = Date();
    Even then, the todayDate variable doesn't behave properly
    like a Date object. For example, function calls like
    todayDate.getDate() fail. Comparing dates also fails. That is
    possibly because the machine cannot cast the todayDate variable.
    However, here is an approach that does what you want.
    <cfformitem type="script">
    function CheckDate2() {
    var todayDate:Date = Date();
    var todayDateInMillis =
    Date.UTC(myForm.todayYear,myForm.todayMonth,myForm.todayDate);
    var selected_date:Date = select_date2.selectedDate;
    var selected_dateInMillis = selected_date.getTime();
    alert("Today's Date from cfformitem tag :\n" + todayDate +
    "\n\n" + "Selected Date from cfformitem tag:\n" + selected_date);
    if (selected_dateInMillis > todayDateInMillis) alert("You
    cannot select a date greater than today's date");
    else
    alert("You are ok.");
    </cfformitem>

  • Actionscript used in cfsavecontent vs cfformitem (type="script")

    I'm still trying to grasp why cfsavecontent is oft used in
    conjunction with cf flash rich forms. What would be the main
    impetus for using actionscript contained in cfsavecontent vs. using
    actionscript contained in the form (<cfformitem
    type="script">). Just trying to grasp this essential issue and
    can't seem to find it explained anywhere.
    Thanks!!!
    Tony Patch

    Tony,
    My guess is that they had their apps written before the 7.01
    updater which added the type="script" attribute for cfformitem.
    Everything I have seen points to using the new functionality. Not a
    very "geek" answer.
    Steve

  • HELP! adobe reader XI (11.0.09)  hangs on installation (running scripts package)

    adobe reader XI (11.0.09) hangs on installation (running scripts package). I cannot shut my computer down, because the installer won't let it and says "interrupting the install will damage the computer) I just wanted to update from 11.0.07 but it said contents had been changed so I had to reinstall adobe reader. So I am trying but it has been hours.

    Hi andrea02,
    Are you still facing this issue?
    You may try uninstall previous installation copy using Adobe Acrobat/Reader cleaner tool::  http://labs.adobe.com/downloads/acrobatcleaner.html
    Regards,
    Ajlan Huda.

  • Xcode Installation Hangs on "Running Installer Scripts"

    Hi, I'm trying to install Xcode to take advantage of their gcc and make files. However, no matter what I do, Xcode installation hangs on "Running Installer Scripts". Searching on Google did not give me any help. I can't quit the process either. Here's a screen shot:
    http://lh4.ggpht.com/_id4E4GFQud0/SfvsNwDdDaI/AAAAAAAACnI/23tE3vWw3vk/Snapshot%2 02009-05-02%2001-44-41.png
    Could you please advice on what can possibly go wrong?
    I'm running OS 10.5.6, and installing Xcode directly from the Mac OS X Disc 1 CD. In the CD document, it says Xcode Developer Tools 3.0 for Mac OS 10.5.
    Thanks!

    Thanks for the details of what you've tried. Every detail you can remember increases the chance that someone can spot the problem.
    My read is that you've documented beyond much doubt that a clean install is what you need. Restoring your system was a good try, but I don't think that would change much outside of the /system folder. Even if we think it did, the evidence you provided tells me that some files from the first Xcode installation remain. I would be looking for files created on that date and checking perms in places like the root directory, /tmp, /usr/share/sandbox, etc. I would also advise renaming /Developer as written in the +Book of the Dead+. I didn't invent that instruction; it was distilled from dozens of case histories in this forum.
    You might also try one of the 3rd party tools that's out there for cleaning Macs. I've never tried any of them though, so can't make a recommendation.
    Oh... erm... You did restart your Mac at some point since the problems started, right?
    Re installing only gcc, have you been to the Developer Tools page at the connect.apple.com site? Select Downloads on the home page, and in the next page select Developer Tools from the lower right panel. I found 2 downloads that appear to be full gcc installers: Xcode Legacy Tools and GCC 4.2 Developer Preview 1. The other gcc downloads seem to be updates. I might try gcc 3.1 in the legacy tools. It's probably all you need, and if not you'd be good to go for an update.
    Of course, you could always download directly from the gnu site, just you might need to be a rocket scientist to install one of those packages. I'm guessing it would be a learning experience. There's also something to be said for using a 3rd party installer, since it probably wouldn't be affected by whatever is stopping the Apple installer(s).
    Sure hope some small part of the above turns out to be useful. But in any case, please let us know how you resolve the problem.

  • Global keepalive type script

    I have a script that will be used for more than one service and am trying to configure a global keepalive using type script. The command is accepted by the CLI without any errors, but the configuration doesn't change. I can configure all other keepalive types, but not script. The CSS 11501 is running 8.10.3.01.

    Posted message too quickly. Found the bug.
    CSCsi51773 Bug Details
    Product
    Cisco CSS 11000 Series Content Services Switches
    Technology
    1st Found-In
    8.10(3.1)
    8.20(1.1)
    Fixed-In
    8.20(1.2)S
    8.10(3.2)S
    8.20(2.1)
    8.10(4.1)
    Component(s)
    keepalives
    Regression
    N

  • Error when using record group type as param in a function in where clause

    Hi folks.
    I have a record type defined in a packages specification. I have to use this record as parameter to call a function. I am able to call the function if as return its value to a string variable. However, the function should be called into a query to compare the returned value and this code is not compiled.
    The code is below:
    DECLARE
    l_line_group_rec INL_CUSTOM_PUB.inl_ship_headers_rec;
    l_name VARCHAR2(100);
    l_count NUMBER;
    BEGIN
    l_name := INL_GET_PARTY_SITE_NAME(l_line_group_rec); -- Compiling successfully
    SELECT COUNT(1)
    INTO l_count
    FROM dual
    WHERE INL_GET_PARTY_SITE_NAME(l_line_group_rec) = 'Allied Manufacturing'; --- Error when compiling
    END;
    I got the error: PLS-00306: wrong number or types of arguments in call to 'INL_GET_PARTY_SITE_NAME'
    I would like to know if there is any restriction in using record type as parameter in where clauses or if there is another way to do it.
    Thanks in advance

    Hi.
    The definition of INL_GET_PARTY_SITE_NAME:
    FUNCTION INL_GET_PARTY_SITE_NAME(p_line_group_rec INL_CUSTOM_PUB.inl_ship_headers_rec) RETURN VARCHAR2 IS
    l_party_site_name VARCHAR2(100);
    BEGIN
    l_party_site_name := 'Allied Manufacturing';
    URN l_party_site_name;
    END INL_GET_PARTY_SITE_NAME;
    Thanks.

  • How to pass RECORD input type to stored procedure from JDBC?

    Hi,
    We have stored procedure which takes RECORD as input .
    We could execute the below script from oracle client tool and get the response.
    declare
    l_record app.batch_update.add_record;
    l_id number;
    begin
    -- memberNumber
    l_record.no := '123456700';
    -- Policy Number
    l_record.pno := '1234567'
    -- Status. This will always be NEW.
    -- Call to API to add record
    app.batch_update.add_request
    (p_record => l_record,
    p_id => l_id,
    end;
    We have requirement to construct RECORD input from Java application and pass it to callable statement.
    We have tried to construct it via STRUCT and pass it to callable statement but it didn't work.
    We have constructed it like the following but not sure whether it is correct. It was throwing error "java.sql.SQLException: invalid name pattern: app.batch_update.add_record
    StructDescriptor structdesc = StructDescriptor.createDescriptor
    ("app.batch_update.add_record", delConn);
    Object[] p1obj = {' 12345','124050'};
    STRUCT p1struct = new STRUCT(structdesc, delConn, p1obj);
    Not sure whether I am doing the logic correctly.
    Please point me to the correct approach.
    Thanks in Advice
    Thanks

    Wrap the method using a record-type parameter in PL/SQL; a simplified example follows. Add exception handling, translation of types etc. as needed.
    CREATE OR REPLACE PROCEDURE prc_wrap_prc_using_rec
    pv_my_field_01 IN VARCHAR2,
    pv_my_field_02 IN VARCHAR2,
    pv_my_field_99 IN VARCHAR2,
    pv_err_msg OUT VARCHAR2
    ) AS
    -- Non-scalar parameter
    pr_my_record user.pkg_rec_declarations.wr_a_record_decl;
    BEGIN
    -- Load the work record
    pr_my_record.pv_field_01 := pv_my_field_1;
    pr_my_record.pv_field_02 := pv_my_field_2;
    pr_my_record.pv_field_99 := pv_my_field_99;
    -- Call the procedure
    pkg_std_routines.prc_do_sumfin(pr_my_record, pv_err_msg);
    END;

Maybe you are looking for

  • ArrayList problem

    Well, im new to ArrayList and im having great trouble trying to figure things out, this is what im supposed to do: The Problem A banking institution offers certificates of deposit (CD's) with a variety of interest rates, and maturities of 1, 3, 5, an

  • How to retrieve multiple data from table and represent it in jsp page

    Hi The below JavaScript code is used to add row in the table when I want to add multiple row data into table for single entry no field.   <html>  function addRow()             i++;             var newRow = document.all("tblGrid").insertRow();        

  • Report Template - Standard, Alternating Row Colors

    I'm using APEX 4.1.0 and theme 22 on Oracle 10g. I have some tabular forms in my application. For 2 of those, row deletions are allowed and I have the usual select box column to manage the row deletions. Also my users like the "Standard, Alternating

  • I'm trying to sync my pc & laptop. It didn't work today. Didn't see buttons on sync options.

    When I bought my laptop last year I set up sync for the computers. When I tried to sync today it didn't work. It has been awhile since I've run sync. I went around in circles with the steps on the help pages. I tried to follow the steps on the sync h

  • Default Mail Font ignored when using "Mail this webpage" in Safari

    This is not really a problem but more of a puzzling irritant.  I often use the "Mail this webpage" option in Safari (the small envelope icon in the tool bar) which opens a draft email with the then-current webpage's URL already embedded in the text a