Functional and performance testing on Forms 6.0 and higher

I want to make functional tests on GUI Oracle Forms ver. 6.0 and higher.
I'm thinking in a IBM tool called Rational Robot but it's seems not very good. HP also has this type of tool with forms support but I haven't tested it, yet.
Does Oracle have some tool like this ?
Thanks !

Hi..
Following is the information that you need to know about how rules are used in Financial
Management. You use rules to automate the calculations of data within an application. You can
use rules for these purposes:
● Calculate data entry level amounts for a specific entity, scenario, and period.
● Prevent data entry for a specific cell in a specific entity, scenario, and period.
● Allow input at the Parent entity level.
● Calculate data that cannot be calculated through a hierarchical aggregation, such as ratios
or variance analysis.
● Perform allocations from a parent entity to a list of base entities.
● Perform complex currency conversions, calculate exchange rate differences, or perform
other calculations necessary for your consolidation.
● Define formulas to dynamically calculate accounts.
● Specify the accounts in the application that support intercompany transactions.
You can write rules in a text editor, or you can use the Financial Management Rules Editor to
create rules.
For more information on rules pls refer hfm_admin.pdf
Best Regards
Edited by: Naveen Vasa on Jul 9, 2010 10:10 AM

Similar Messages

  • Load and performance testing

    How to do Load and performance test after upgrading database to 11gR2 during the dev and acceptance test. How to compare the performance before upgrade(10gR2 with 11.5.01.2) and after upgrade 11Gr2(11gR2 with 11.5.10.2).
    Regards
    appsdba

    Please see old threads for similar discussion -- http://forums.oracle.com/forums/search.jspa?threadID=&q=Performance+AND+Testing&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Very big problem with JSF about FORM and "id=" for HTML form's elements and

    I have discovered a very big problem with JSF about FORM and "id=" for HTML form's elements and java instruction "request.getParameterNames()".
    Suppose you have something like this, to render some datas form a Java Beans :
    <h:dataTable value="#{TablesDb2Bean.myDataDb2ListSelection}" var="current" border="2" width="50%" cellpadding="2" cellspacing="2" style="text-align: center">
    <h:column>
    <f:facet name="header">
    <h:outputText value="Name"/>
    </f:facet>
    <h:outputText id="nameTableDb2" value="#{current.db2_name_table}"/>
    </h:column>
    </h:dataTable>
    Everything works fine...
    Suppose you want to get the name/value pairs for id="nameTableDb2" and #{current.db2_name_table} to process them in a servlet. Here is the HTML generated :
    <td><span <span class="attribute-name">id=<span class="attribute-value">"j_id_jsp_1715189495_22:0:nameTableDb2">my-table-db2-xxxxx</span></td>
    You think you can use the java instructions :
    Enumeration NamesParam = request.getParameterNames();
    while (NomsParam.hasMoreElements()) {
    String NameParam = (String) NamesParam.nextElement();
    out.println("<h4>"++NameParam+ "+</h4>);
    YOU ARE WRONG : request.getParameterNames() wants the syntax *name="nameTableDb2" but JSF must use id="nameTableDb2" for "<h:outputText"... So, you can't process datas in a FORM generated with JSF in a Servlet ! Perhaps I have made an error, but really, I wonder which ?
    Edited by: ungars on Jul 18, 2010 12:43 AM
    Edited by: ungars on Jul 18, 2010 12:45 AM

    While I certainly appreciate ejb's helpful responses, this thread shows up a difference in perspective between how I read the forum and how others do. Author ejb is correct in advising you to stay inside JSF for form processing if form processing is what you want to do.
    However, I detect another aspect to this post which reminds me of something Marc Andreesen once said when he was trying to get Netscape off the ground: "there's no such thing as bad HTML."
    In this case, I interpret ungar's request as a new feature request. Can I phrase it like this?
    "Wouldn't it be nice if I could render my nice form with JSF but, in certain cases, when I REALLY know what I'm doing" just post out to a separate servlet? I know that in this case I'll be missing out on all the nice validation, conversion, l10n, i18n, ajax, portlet and other features provided by JSF".
    If this is the case, because it really misses the point of JSF, we don't allow it, but we do have an issue filed for it
    https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=127
    If you can't wait for it to be fixed, you could decorate the FormRenderer to fix what you want.
    I have an example in my JSF book that shows how to do this decoration. http://bit.ly/edburnsjsf2
    Ed

  • OIM Functionality and Performance Testing

    Hello there,
    Can anybody provide some input related to OIM testing - any experience testing any functionality? The testing depends on the functionality provided by OIM so I purposely want the scope of this question to be broad and want to have an idea of it. The purpose is to reduce human intervention and generate some kinds of script of use some kind of automated tool to test the functionality.
    For eg: Testing tools related to may be GTC reconciliation, user provisioning, etc.
    Any input is appreciated.
    Thanks,
    - oidm.

    Hi oidm
    May be this is not the answer for your question but in my experience so far (very less :) ) I saw guys doing manual testing for IDM projects whether it is of SIM or OIM.
    But I heard about asqard. It is a testing tool for IDM projects but I am not very sure whether it is only Novell IDM specific or we can use it with OIM as well.
    http://www.novell.com/coolsolutions/tools/byproduct/50.html

  • Help:set up simple test sequence, operator selects particular test then teststand links to part of sequence file and performs test

    Hi,
    I am extremely new to TestStand, please see question below and offer advice.
    I want to set up a simple test sequence.
    I want a message to popup on screen that asks the operator which unit of 6(max 10) Units to test(i.e. there are say 6-10 box's to select from).
    Then the sequence goes to the particular part of the sequence and performs the test on which ever unit was selected.
    What is the best way to do this?
    Could i use message popups to do this?and if so what do i need to do link it to the correct part of the sequence file?
    Do message popups only allow 6 options to select from?
    Thanks,
    Solved!
    Go to Solution.

    Hi,
       You can do using message popup method. You can ask the user which unit want to execute by inserting message in message expression in message popup step settings.Something like below
    "Enter unit number to execute 
     1.  Unit1
     2.  Unit 2
     10. Unit 10"
    then check "Enable response text box" from options tab in step settings.When user enters unit number you can get the user entered value by inserting the below statement in post expression of message popup step settings
        Locals.String = Step.Result.Response 
        Note : String is a local variable to be defined.
    Convert that string in to number and send that output to switch expression there by you can use a sequence call step to call sequence whichever to be executed. (I hope your each unit will be seperate sequence file)
    I hope these resolves your problem. If you don't understand let me know so that I can develop a small example and send it to.
    Cheers,
    krishna 

  • Lync Stress and performance test - DTMF

    Hi all,
    I found the below parameters in the CAA xml file generated by the LSS tool.
          <ConfIdEntryDelayInSec>15</ConfIdEntryDelayInSec>
          <PlayParticipantName>true</PlayParticipantName>
          <ParticipantNamePlayDurationInSec>45</ParticipantNamePlayDurationInSec>
          <ParticipantNameAudioFileName>Audio.wma</ParticipantNameAudioFileName>
          <DtmfEntryPercentage>0</DtmfEntryPercentage>
          <DtmfEntryIntervalInSeconds>600</DtmfEntryIntervalInSeconds>
          <Dtmfs>*1,*6</Dtmfs>
          <DtmfHardMutePercentage>0</DtmfHardMutePercentage>
          <DtmfHardMuteDelayInSeconds>300</DtmfHardMuteDelayInSeconds>
          <DtmfUnHardMuteDelayInSeconds>300</DtmfUnHardMuteDelayInSeconds>
          <DtmfAdmitAllPercentage>0</DtmfAdmitAllPercentage>
          <DtmfAdmitAllDelayInSeconds>300</DtmfAdmitAllDelayInSeconds>
    Based on the DTMF parameters, am i correct in saying that generic DTMF inputs can be stress tested, but there isn't an option to enter conference ID's of manually created conferences via the tool ?
    Thanks
    If you see a post that helped you please click "Vote as Helpful" and if it answered your question, please click "Mark as Answered.
    Murali Krishnan | My blog: UnifiedMe
    | Twitter: @mkris9

    I am afraid not.
    LSS is used to simulate all Lync Server workloads or just specific workloads and perform a stress testing exercise.
    Lisa Zheng
    TechNet Community Support

  • Stress and Performance test SAP NW EP7

    Hi Experts,
      Is there any application that we can use for stress/load and/or performance testing on
      SAP NW7 EP7 SP15.
       We are on Windows 2003/ Oracle 10g
    Thanks,

    Hi,
    You can book a GoLive service as per your requirement.
    Refer https://websmp107.sap-ag.de/supportofferings
    Thank you,
    Tilak

  • Functional and Performance Testing in HFM, FDM, HFR

    Does anyone know how to write test scripts relating to functional testing of HFM, FDM, Hyperion Financial Reporting applications including testing of HFM Business Rules.
    I would very much appreciate if you give me step-by-step on how to go about achieving the project goal and how to write these scripts including any recommendation you may have.

    Hi..
    Following is the information that you need to know about how rules are used in Financial
    Management. You use rules to automate the calculations of data within an application. You can
    use rules for these purposes:
    ● Calculate data entry level amounts for a specific entity, scenario, and period.
    ● Prevent data entry for a specific cell in a specific entity, scenario, and period.
    ● Allow input at the Parent entity level.
    ● Calculate data that cannot be calculated through a hierarchical aggregation, such as ratios
    or variance analysis.
    ● Perform allocations from a parent entity to a list of base entities.
    ● Perform complex currency conversions, calculate exchange rate differences, or perform
    other calculations necessary for your consolidation.
    ● Define formulas to dynamically calculate accounts.
    ● Specify the accounts in the application that support intercompany transactions.
    You can write rules in a text editor, or you can use the Financial Management Rules Editor to
    create rules.
    For more information on rules pls refer hfm_admin.pdf
    Best Regards
    Edited by: Naveen Vasa on Jul 9, 2010 10:10 AM

  • Graphics, caching and performance - how to address a lag and stutter?

    I'm in the middle of developing an interactive story that I'm intending to cross deploy to a number of tablets - starting with the iPad. Instead of a classic page-turn style story, this is told on a long paper scroll, with the user panning left and right (and some times up and down) along the story.
    All graphics are rendered as flat 3D panes using native 3D in Flash and move in a parallax fashion, kind of giving the effect of watching theatre flats change as you read. As such, I understand that they're already being rendered as bitmaps and the app is taking advantage of GPU rendering on the iPad. None of the graphics have their visibility set to false, and all of them are added to the stage (even if they're a good few pixels off to the right at the beginning) on the first frame. They're also all on the root stage and have no nested display objects.
    The issue I'm finding is a noticeable lag and jump when new objects are about to come in from off screen for the first time. After they've been seen, the application runs quite smoothly. Obviously poor performance on first opening is a real problem though. I feel that this is probably a caching issue, but can't work out how to go about addressing it. Any ideas?
    A few further notes:
    All graphics in the story share a class that includes cacheAsBitmap and cacheAsBitmapMatrix to ensure that the GPU acceleration can be taken advantage of
    Am compiling to AIR 2.5 and using the packager directly from Flash CS5. Have tried 2.6 and it's actually noticeably slower
    Once an image has been rendered on the screen it tends not to cause a lag the next time it's displayed. I tried having them all on the front at the beginning and then clearing them to try to force them into the cache - didn't seem to make a difference
    All graphics are separate PNG files at the moment. I haven't tried pushing them all into a sprite sheet or three yet, think that might help?
    Thanks in advance for any help you guys can suggest.
    Tom

    Hi Tom,
    This is likely because the GPU has limited memory, and the biggest bottleneck with a GPU is copying data to it.
    From the sounds of it the delay occurs when this happens (i.e. images just about to come on to the screen are loaded in to the GPU).
    You could solve it (just thinking aloud here) by placing an instance of each image that is about to come on to the stage on the stage but under another image (e.g. under the backgroudn image) to force it to preload into the GPU.  Instead of placing them hidden on the stage, creating an instance in actionscript and storing it in a vector may also work?  Though perhaps these are not cached until they are added to the display list.
    However, it may be likely that the number of images you have may exceed the capacity of the GPU anyway and this might not help.  I have also seen mentioned that the new Flash Player (iOS) is smart enough to recognise when images are fully hidden (i.e. behind a background image) and not cache or display them.
    So if you had the following pages (mostly vertical but some horizontal):
    ABC
    D
    EF
    G
    H
    You would perhaps do something like:
    ABC (cache: D)
    D (cache: ABC EF)
    EF (cache: D G)
    G (cache EF H)
    H (cache: G)
    Sorry I don't have any definitive answers, just something to try.
    hope it helps!
    Peter

  • READ_TEXT IN FORM AND PERFORM

    Hi all.
    I have an issue in Scripts.
    we are using standard program as print progarm and a zform as form.
    we want to print some text in themain window of the form.
    for that one I created a new progarm for form and perform.
    in taht form i am using this function module read_text to read the text.
    i sending all this text to an internal table.
    up to thuis ok...
    While the data transfering from form to perform (i.e to the form(script)) only the last line of the internal table is transfering.
    and i declared the exporting TABLE OF TYPE ITCSY.
    CAN ANY BODY HELP TO SOLVE THIS ISSUE,
    THANKS IN ADVANCE,
    rEGARDS,
    ESWAR.M

    Hi venkat,
    1. while calling subroutines from sapscripts,
    there is a special technique,
    which has got its own limitations.
    2.
    FORM abc
    TABLES
    in_tab STRUCTURE itcsy
    out_tab STRUCTURE itcsy.
    ENDFORM.
    3. The perform in se38 program should be of the
    above format only.
    4.<b> We cannot pass internal tables.</b>
    5. Rather we need to pass
    VARIABLE NAME
    VARIABLE VALUE
    (see the structure of itcsy in se11)
    6. In this form, we have to read
    the internal table in_tab
    to capture the variable name and its value.
    7. Similary, to return the values,
    we have to put one record (for each variable)
    in out_tab.
    regards,
    amit m.

  • Can Web Performance Test work on AJAX or Javascript Project which will show only one URL for all the pages?

    Hi there,
    I'm working on testing a AJAX and JavaScript Project which has several pages but all in the same URL. I need to test some attribute on the page or parameter past by AJAX or Javascript. Can Web Performance Test work to get what I want?
    Thanks,
    

    Hello,
    Thank you for your post.
    Web performance test is used to test if a server responses correctly and the response is consistent with what we expected. And we test the response speed, the stability and scalability.
    The Web Performance Test Recorder records both AJAX requests and requests that were submitted from JavaScript, but
     web test does not execute JavaScript. I am afraid that you can’t use web test to test parameter past by AJAX or JavaScript.
    Please see:
    Web Performance Test Engine Overview
    About JavaScript and ActiveX Controls in Web Performance Tests
    From the first link, “Client-side scripting that sets parameter values or results in additional HTTP requests, such as AJAX, does affect the load on the server and might require you to manually modify the Web Performance Test to simulate the scripting.”
    If you want to execute the function typically performed by script in web test, you need to accomplish it in coded web performance test or a web performance test plugin. Please see:
     How to: Create a Coded Web Performance Test
    How to: Create a Web Performance Test Plug-In
    I am not sure what the ‘some attribute on the page’ is. If you mean that you want to test those controls on the page, you can do coded UI test, which can test that the user interface for an application functions correctly. The coded UI test performs actions
    on the user interface controls for an application and verifies that the correct controls are displayed with the correct values. You can refer to this article for detailed information about code UI test:
    Verifying Code by Using Coded User Interface Tests
    Best regards,
    Amanda Zhu [MSFT]
    MSDN Community Support | Feedback to us
    Develop and promote your apps in Windows Store
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Oracle 9i function to perform data manipulation

    Hi everyone,
    I have two scenarios. I would like to write one Oracle 9i function that can accommodate both these scenarios, using PL/SQL developer. I intend passing a varchar2 parameter to this function. Within the function, I perform a select on a table and see if this value sent has a parent record.
    If it does not have a parent record (null or blank) then I take this value, join with another table, perform some processing and return one varchar2 value.
    If it has a parent record (not null or not blank) then I need to retrieve all the other children records associated with this same parent record, take this value, join with another table,perform some processing and return one varchar2 value.
    I have two simple queries that I wrote: one for record with null/blank parent, and the other for record with same parent and other children. These two queries work individually, when I combine them is where I run into problems. Sample table:
    TABLE XYZ data: (note: if there is a parent, parent shows up in both parent and child field in the table)
    child parent
    1234
    5107 3167
    6259 3652
    5678 9754
    3167 3167
    3652 3652
    1649
    2306 9754
    4657 3652
    9754 9754
    8753 3652
    passing record 1234 into the function.
    SELECT A.child, A.parent, C.field1
    FROM OTHERTABLE C,
    (SELECT TableA.child, TableA.parent
    FROM XYZ TableA
    WHERE TableA.child ='1234')A
    WHERE A.child = C.field2
    ----(output of this query is 1 record with 3 fields 1234 and null/blank and 987654321. I place this output into a cursor and then take 987654321 and place into a variable and return this value)
    passing record 4657 into the function
    SELECT c.CHILDfield, c.PARENTfield, TableOther.field1
    FROM OTHERTABLE TableOther,(
    (SELECT B.CHILDfield, B.PARENTfield FROM
    (SELECT A.PARENTfield, i.CHILDfield FROM TableB,
    (SELECT TableA.CHILDfield, TableA.PARENTfield
    FROM XYZ TableA
    WHERE TableA.CHILDfield ('4657' ))A
    -- pass 4657 and then get the parent
    WHERE A.PARENTfield = TableB.PARENTfield)B
    -- gets associated children with the parent from previous query.
    -- note: parent can exist in the parent and child fields
    WHERE B.CHILDfield <> B.PARENTfield))C
    --strips off the parent and gets child/children only as I don't need
    --the parent when it is also a child
    WHERE C.CHILDfield = TableOther.field1
    --(output of this query is 3 records
    4657 3652 912345671
    6259 3652 945362798
    8753 3652 934274857)
    I place this output into a cursor and then have a CASE statement that goes thru each record, and appends the third value into a variable, the ultimate return value of this will be as follows:
    912345671;945362798;934274857)
    The dilemma is writing a generic query to accommodate both these situations. My current function can handle each of these situations individually, but not both. For testing purposes, I change the select statement depending on whether I have a record that has a parent on not!
    Any help is greatly appreciated.

    You want one function to handle two cases? This is the best opportunity to use the IF STATEMENT.
    FUNCTION MyFunc (p_input IN VARCHAR2) RETURN VARCHAR2 IS
    ReturnValue VARCHAR2;
    BEGIN
    IF <blank or null test> THEN
    SELECT ... -- Blank or null select statement
    ... -- Blank or null data processing
    RETURN ReturnValue;
    ELSE
    SELECT ... -- Other select statement
    ... -- Other data processing
    RETURN ReturnValue;
    END IF;
    END MyFunc;

  • Load & Performance Testing In The Cloud - Silverlight Support

    I currently have Visual Studio Premium with MSDN. I know in order to use Load Testing in the cloud I will have to upgrade to Ultimate.
    One of the our web apps that I need to do a load and performance test on uses SilverLight.
    Here is my questions. I want to verify that the provisioned virtual machines in the cloud when I run load testing will support Silverlight. I know it sounds like a silly question but before I go to Management to approve this upgrade I need to verify it will
    work. No need to waste money.
    Thanks

    Hi rgelston iso.com,
    The web tests: Web tests are used to test the functionality of Web applications and to test Web applications under load. Web tests are used both in performance tests and stress tests. It works at the protocol layer by issuing HTTP requests.
    Reference:
    https://msdn.microsoft.com/en-us/library/ff520100%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396
    So the real issue is that whether your apps meet the above requirements.
    For example, for the general Silverlight Apps, it would have some limitations if you want to create web performance tests.
    http://blogs.msdn.com/b/anutthara/archive/2010/03/21/testing-support-for-silverlight-apps-in-visual-studio-2010.aspx
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Performance Test on OAF Page Extensions

    Hi ,
    We have extend the seeded page controller&VO to achieve the business requirement.
    Could you please suggest/update me if we have any free ware to do the performance test on OAF page extension and customization's.
    Regards,
    Venkatesh Chandra.

    Hi Gaurav,
    I followed your instruction and all it does is display the pages as "tabs" horizontally on the page. What I actually want is a Side bar on the left hand region exactly like the instructions and example in the Framework developers guide. The set up for a sidebar (according to the developers guide) is much more involved as I posted in my first message above.
    An example of a side navbar in e-Business suite can be found under Functional Administrator responsibility > Personalization tab > Import/Export.
    I have looked at the menu definitions for this page/function, and I've also had a look in the Page XML but I cannot replicate it with my custom page. The setup used for that example page also does not conform to the OAF developers guide instructions.
    So again in the absence of any useable examples in eBusiness Suite I'm rather stuck with the OAF developer's guide so any tips would be gratefully accepted.
    Rgds
    Shankar

  • Performance test from unit tests

    Hi;
    I tried to apply the principle TDD at the level of perf test of an J2ee application and this from units tests.
    I thus used the tool JUnitPerf but regrettably with this tool I must to modify my unit test for the update of the sequence of a test and it propose nobody management of waiting time between every call of a unit test.
    Q : Know a tool more complete, stable and maintained which allows to write of the perf tests from unit test ?
    Regards;

    Hi John,
    The testing will depend on the scenario's configured in SAP, which are to be tested. As scenario vary from customer to customer, it is not possible to send a document with screen shot, as these are confidential documents. However, the write-up below should be able to give some clueon the same.
    <b>Different Type of Testing are as under</b>:
    Unit testing is done in bit and pieces. Like e.g. in SD standard order cycle; we do have 1-create order, then 2-delivery, then 3-transfer order, then 4-PGI and then 5-Invoice. So we will be testing 1,2,3,4 and 5 seperately alone one by one using test cases and test data. We will not be looking and checking/testing any integration between order and delivery; delivery and TO; TO and PGI and then invoice.
    Whrereas System testing you will be testing the full cycle with it's integration, and you will be testing using test cases which give a full cyclic test from order to invoice.
    Security testing you will be testing different roles and functionalities and will check and signoff.
    Performance testing is refered to as how much time / second will take to perform some actions, like e.g. PGI. If BPP defination says 5 seconds for PGI then it should be 5 and not 6 second. Usually it is done using software.
    Regression testing is reffered to a test which verfies that some new configuration doesnot adversly impact existing functionality. This will be done on each phase of testing.
    User Acceptance Testing: Refers to Customer testing. The UAT will be performed through the execution of predefined business scenarios, which combine various business processes. The user test model is comprised of a sub-set of system integration test cases.
    Regards,
    Rajesh Banka
    Reward suitable points.
    How to give points: Mark your thread as a question while creating it. In the answers you get, you can assign the points by clicking on the stars to the left. You also get a point yourself for rewarding (one per thread).

Maybe you are looking for

  • Syncing more than one MS Outlook Contact file

    Hi.  I have several (4) Contact files in MS Outlook.  At first I sync'd the main Contact file.  I have three others and when I choose / browse another folder, I only see one other Contact folder which I can set as default and sync.  My question is ho

  • Mac Pro 8 core Network setting problem

    May sound strange but i just got an 8 core mac pro and one of its hard drives I cloned from my macbook pro which has all my software, stuff, etc. Eventually i will do a fresh install but this way i didn't have to start from scratch right away. Everyt

  • Average versus Total RMS power

    HI, I have version 2.0 of Audition and am trying to figure out how Audition is calculating the Average versus Total RMS power values shown in the amplitude statistics window. The Help section describes the two values as Average RMS Power Shows the av

  • Pdf with transparent background

    I put a logo inside a PDF. The PDF has a transparent background. When I import the PDF into FCPX, the PDF's background is opaque white. When I import the same PDF into Motion 5, the PDF's background is transparent. I want  transparent backgrounds in

  • Can you collect data for mailto:

    I have a project for a class due in website development. Teacher wants us to include a form that transmits data via mail. I've built all my Flash forms to transmit data via php which, of course is superior, but I don't trust this particular teacher t