Cj44 and "test run"

Hi ABAP experts,
I'm calling CJ44 Tcode in my program via "call transaction". Afterwards I doing my own other things.
How can I get the value of "Test run" checkbox so I can run "my own things" only if the real run is performed?
Any idea, suggestion?
Thanks

jpschnee,
I have run only olioweb workload for all the three tiles and I do not see any failure in Olioweb.wrf. I have attached the result for the run. It looks like clean run when only Olioweb load is ran.
Again I ran the 3 tile for all workloads . I observed  QOS error happens for all three tiles. i.e olioweb workloads. previosuly only for 2 tiles it gave QOS error.
I am trying to find the subsystem which is saturating in my setup. As I asked I am expecting some alarms from Vcenter when resources peaks to its max.
I am seeing CPU is taking less than 70% in all ESXi Servers. Memory less than 20%.
Disk Max latency is less than 20ms.
Network is max 500Mbps for 10G network connectivity.
Do you see above resource utilization problematic?>
Thanks,
Suresh

Similar Messages

  • Olioweb QOS error and Test Run is not compliant

    Hi,
    I made 3 tile setup and test is failing for Olioweb QOS. When I run first 2 tile, test runs fine and run is compliant. Later I ran oly 3rd tile and test run is compliant without any issue.
    When I start all 3 tiles together I get olioWeb QOS error for first 2 tiles. Sometimes all 3 tiles gives OlioWeb QOS error.
    Attached the result.
    Please look into it and let me know if anthing need to be changed in setup.
    Thanks,
    Suresh

    jpschnee,
    I have run only olioweb workload for all the three tiles and I do not see any failure in Olioweb.wrf. I have attached the result for the run. It looks like clean run when only Olioweb load is ran.
    Again I ran the 3 tile for all workloads . I observed  QOS error happens for all three tiles. i.e olioweb workloads. previosuly only for 2 tiles it gave QOS error.
    I am trying to find the subsystem which is saturating in my setup. As I asked I am expecting some alarms from Vcenter when resources peaks to its max.
    I am seeing CPU is taking less than 70% in all ESXi Servers. Memory less than 20%.
    Disk Max latency is less than 20ms.
    Network is max 500Mbps for 10G network connectivity.
    Do you see above resource utilization problematic?>
    Thanks,
    Suresh

  • Difference in Actual and Test Run - Depreciation

    Using SAP 4.7
    When my user run the depreciation run in test mode, the result comes different while if he do it in actual result comes different.
    Mind it, the depreciation run (actual) is run in background.
    Can Please somebody help me out in this regard.
    Regards
    Sajid Hakeem

    Hi,
    Same way as you do Actual Run
    - AFAB-> Enter Parametres->Click Test Run->Execute in Background (F9) or Choose from Menu bar ->Program ->Execute in Background
    Rgds.

  • AFAR test run showing the values but not posting in Real run.

    Hi Friends,
    i have an issue with AFAR recalculating the depreclation. The details are as below;
    1. Asset value date is 15.07.2010. but ordinary dep. start date was set as 01.01.2010 manually by the user.
    2. The Period control method 11, the dep. is calculated for entire year for acquisition.
    3. we have already calculated depreciation from period 12 2010 to period 04, 2011.
    4. Now, we have changed ordinary depreciation start date for 5 asset records from 01.01.2010 to 15.07.2010.
    5. Therefore, we recalculated AFAR for these assets for 2010 and test run is showing the values for these 5 asset. The same was expected by the business.
    6. When we execute the real run, it is not posting and no change in asset explorer for period 12, 2010 or in current period. No error message is available in spool / job log.
    We have opened FI periods as well.
    My question is  that why the system calculating the values in test run and if it is calculated in test run, why it is not posting in update run?
    As per the period control method, the depreciation should not recalculated for half year even we change the ordinary dep,start date from 1st Jan to 15th July.
    I  request you to clarify my doubt and help me to understand the error which is stoping the values in update run of AFAR.
    Best Regards,
    Padmaja

    Hi,
    Sorry...it is not worked out. Alternatively, i tried the shift factor with variable depreciation and i achieved the values which appeared in AFAR test run.
    Thanks for the help.
    Regards,
    Padmaja
    Edited by: PadmajaCH on May 19, 2011 3:26 PM

  • How can we report off of Test Run Custom Fields in e-Manager?

    I'm trying to create reports within Crystal Reports or via SQL Reporting Services to report on test runs and I want to include data from the test run custom fields I've created. I can not find a correlation to link the test runs and the test run custom fields in the DB. Is this even possible?
    I can see the related custom field data in e-Manager for each run history. I was thinking there should be some sort of table in the DB to link the data but I can not find it.
    Please help
    Thanks

    You cannot get this from the interface. We added SqlServer Management Studio Express and granted read only access to project managers. They found the view dbo.View_Tests useful in that it connected custom fields to the test cases. There are similar views for requirements and test runs.
    Studio Express is found: http://www.microsoft.com/downloads/details.aspx?familyid=C243A5AE-4BD1-4E3D-94B8-5A0F62BF7796&displaylang=en#QuickInfoContainer
    You'll need to get access from your DBA and set up an ODBC connection.
    Here's a sample query that we've used -- probably doesn't fit your situation but it might get you thinking. Part of it was stolen from another posting to QA zone -- so I figured -- might as well share the wealth:
    -- Overall input parameters:
    declare @project as integer;
    set @project = '20'
    declare @iteration as varchar(500);
    set @iteration = 'Iteration 1';
    declare @team as varchar(500);
    set @team = 'SFS';
    -- Data on a particular iteration
    declare @iteration_tests_run as decimal(10,2);
    set @iteration_tests_run = ( select count(*)
                             from dbo.View_Tests A
                             where A.ProjectID = @project
                             and A.Iteration = @iteration
                             and A.Team_test <> 'NULL'
                             and A.LastResult <> 'Not Run');
    declare @iteration_tests_passed as decimal(10,2);
    set @iteration_tests_passed=( select count(*)
                             from dbo.View_Tests A
                             where A.ProjectID = @project
                             and A.Iteration = @iteration
                             and A.Team_test <> 'NULL'
                             and A.LastResult = 'Passed');
    declare @iteration_any_results as decimal(10,2);
    set @iteration_any_results=( select count(*)
              from dbo.View_Tests A
              where A.ProjectID = @project
              and A.Team_test <> 'NULL');
    -- Data on a particular team's tests for a particular iteration
    declare @team_tests_run_by_iteration as decimal(10,2);
    set @team_tests_run_by_iteration = (
    select count(*)
                             from dbo.View_Tests A
                             where A.ProjectID = @project
                             and A.Team_test = @team
                             and A.Iteration = @iteration
                             and A.LastResult <> 'Not Run');
    declare @team_tests_passed_by_iteration as decimal(10,2);
    set @team_tests_passed_by_iteration = (
                             select count(*)
                             from dbo.View_Tests A
                             where A.ProjectID = @project
                             and A.Iteration = @iteration
                             and A.Team_test = @team
                             and A.LastResult = 'Passed');
    declare @team_tests_any_results_by_iteration as decimal(10,2);
    set @team_tests_any_results_by_iteration = (
    select count(*)
                             from dbo.View_Tests A
                             where A.ProjectID = @project
    and A.iteration = @iteration
                             and A.Team_test = @team );
    -- Progress in completion and success of tests in a particular iteration
    select (@iteration_tests_run / @iteration_any_results ) * 100 as Iteration_1_percent_complete;
    select (@iteration_tests_passed / @iteration_tests_run ) * 100 as Iteration_1_percent_success;
    -- Progress in completion and success of tests for a particular test team in a particular iteration
    select (@team_tests_run_by_iteration / @team_tests_any_results_by_iteration ) * 100 as SFS_percent_complete_Iteration_1;
    select (@team_tests_passed_by_iteration / @team_tests_run_by_iteration ) * 100 as SFS_percent_success_Iteration_1;

  • Error running unsigned driver inventory and test

    I’m working a challenge where the cluster validation tool on a Server 2008 R2 SP1 based cluster throws an error running the unsigned driver inventory/validation. It doesn’t say that there are any unsigned
    drivers but rather says:
    An error occurred while executing the test.
    There was an error getting information about the unsigned drivers installed on the nodes.
    There was an error retrieving information about the Unsigned Drivers from node 'someclusternode.contoso.com'.
    Shutting down
    If we run the tool from other nodes it will always pass itself and 4 out of the 5 other nodes, but there will be one node that will trigger this. And the node that it fails on is not consistent.
    All of the other tests run just fine, and I can’t find anything in any KB that points me in a troubleshooting direction.

    Hi,
    Before you install the failover cluster you need confirm your hardware meet the Windows failover cluster hardware requirements. You can from the following website to confirm
    your server has been authenticated.
    Windows Sever Catalog:
    http://www.windowsservercatalog.com/
    More information:
    Failover Clustering Overview
    http://technet.microsoft.com/en-us/library/hh831579.aspx
    At same time some incompatible issue have found on the specified type of HP ProLiant® Server and the HP have already update the ACPI driver.
    HP has driver update for W2K8, specific for this ACPI-Compliant Power Meter Device Identifier
    http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&cc=us&swItem=MTX-24c4d70d491b40628c0b73dd99&jumpid=reg_R1002_USEN
    More information:
    Implementing Microsoft® Windows Server® 2008 R2 on HP ProLiant servers
    http://h20000.www2.hp.com/bc/docs/support/SupportManual/c01639594/c01639594.pdf?jumpid=reg_R1002_USEN
    read under:
    Power Management Features
    -> Power Metering and Budgeting (PMB)
    Hope this helps.
    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.

  • PT60 test run and Infotype update

    Hi All,
    I have created a custom Time function and included it in schema. When i try to execute PT60 tcode i am unable to access the Test run variable TESTOPT2 inside my custom function. I want to update some entries in Infotype 2001 and i dont want this to happen during test run.
    Also will the infotype table be updated automatically if i populate the values in table P2001 inside my custom function, or should have to manually do it through Function modules?
    Any info regarding this is appreciated.
    Thanks,
    Navin..

    Devendra Yadav,
    where yoiu able to resolve your issue number 1?
    I have the same problem.
    Thank you.

  • Transaction "test run" value

    Hello,
    Does anyone know (is that even possible) how to get the "test run" value (checked/unchecked) of a standard transaction like CJ44 into a Z-program...I'm using the CALL TRANSACTION statement
    thx
    petr

    Hi,
        i tried using following code for 'detail lists' for cj44 tcode checkbox as my test run check box comes default checkd.and this code is working fine.
    DATA: it_bdcdata  TYPE STANDARD TABLE OF bdcdata,
          wa_bdcdata  TYPE bdcdata.
      wa_bdcdata-program = 'SAPLKAZB'.
      wa_bdcdata-dynpro = '1000'.
      wa_bdcdata-dynbegin = 'X'.
      APPEND wa_bdcdata TO it_bdcdata.
      CLEAR: wa_bdcdata.
      wa_bdcdata-fnam = 'RKAUF-LIST'.
      wa_bdcdata-fval = 'X'.
      APPEND wa_bdcdata TO it_bdcdata.
      CALL TRANSACTION 'CJ44' USING it_bdcdata
           mode 'E'.
    Regards,
    Twinkal.

  • Correct idea to scale out testing environment and test service pack2 installation

    Hi
    I have a sharepoint 2010 farm it has one sharepoint server, one database server
    In one server  below services are running
    Central administration service
    SharePoint Server Search 
    User Profile Service 
    Microsoft SharePoint Foundation Web Application
    so i want to scale out this form  to
    1 application server
    1 web front end server
    1 Search server (index server)
    1 databse server
    here how i scale out to this form
    1)here how i move  sharepoint  server search service to new  index server and
    2) here how i move  Microsoft SharePoint Foundation Web Application to new webfront end server
    and in this single server  some web appllications are running also how i move these to new wf server
    i want to do like this  because i want to test service pack 2 installation, now  sharepoint version is : service pack1
    my actual production environment has
    2 application servers
    2 webfront end servers
    2 index servers
    1 databae server
    so this correct idea to scale out testing environment and test service pack2 installation
    adil

    Hi Adil,
    The link below describes how to scale SharePoint Web Front-End with only web applications and the search query server  out of one SharePoint server with all roles running.
    http://sharepointsolutions.com/sharepoint-help/blog/2011/02/how-to-scale-out-a-sharepoint-2010-farm-from-two-tier-to-three-tier-by-adding-a-dedicated-application-server/
    Now you have two SharePoint server with:
    Tier 1 – SharePoint Server dedicated as a Web Front-End (WFE) with only the web application(s) and the search query service running on it
    Tier 2 – SharePoint Server dedicated as an Application Server with all of the other service applications running on it, but no web applications or query service
    Tier 3 – SQL Server for the databases
    Then you would scale out WFE server with web applications from tier1. Now please install a new SharePoint server and join it to the existing farm and deploy it as Web Front Server. Enable the relevant services on Web Front servers per the topology picture
    below, and stop the services running on the old server.
    http://technet.microsoft.com/en-us/library/cc263044(v=office.14).aspx
    Regards
    Rebecca Tu
    TechNet Community Support

  • I am using a 2003 eMac and am running on Mac OSX  vs 10.4.11. iTunes is not recognizing music I have purchased and when I try to connect when it request me to I get the following error message:  Cannot complete i Tunes Store request. A required iTunes com

    I am using a 2003 eMac and am running on Mac OSX  vs 10.4.11. I amrunning iTunes 8.2.1 (6) and not able to upgrade iTunes on this computer. iTunes is not recognizing music I have purchased and when I try to connect when it request me to I get the following error message:
    Cannot complete  iTunes Store request. A required iTunes component is not installed (-42404)
    Please help.

    Is this music purchased back in DRM days? I don't actually have any iTunes music so I can't test with my iTunes 7.5, but I know that without iTunes 10 you cannot even connect to the store anymore.  I wouldn't think that would require an active connection to the store all the time, otherwise how could you play music on a computer in the middle of nowhere?  Did you do something to trigger iTunes suddenly wanting to connect and check on machine authorization?

  • CX_SY_FILE_OPEN_MODE - short dump on production but not in Dev and Test

    Hello,
    I'm getting the follwoing short dump in production when I run the program which writes the data to application server. I have open data set and close data set. Same program when I in development and test I do not get any short dump. Can any know what could be cause for this.
    CX_SY_FILE_OPEN_MODE
    Copy paste of error analysis from ST22 short dump -
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_FILE_OPEN_MODE', was not
         caught in
        procedure "DATA_UPLOAD_APP_SERVER" "(FORM)", nor was it propagated by a RAISING
         clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        When accessing the file "/bw/FTPOUT/BPR/OTHER/test.csv", the system recognized
         that this file is
        not open. Therefore, the file cannot be accessed.

    The file could not be OPENed in your production system for a variety of reasons - no authorization, file doesn't exist etc. You should have check sy-subrc right after OPEN DATASET and if not zero, yous should not TRANSFER or READ the file and instead you should have given a message with sy-msgid and sy-msgno which would give you the reason. The dump here is simply saying that OPEN is unsuccessful, so any subsequent READ or TRANSFER would throw runtime dump, if done after an unsuccessful OPEN.

  • The build directory of the test run either does not exist or access permission is required.

    i am trying to run automated tests
    i follow the steps in the web but when i have 2 issues that does not solve
    1. i created console project and add build definition without drop folder and queue builds that success.
    2. i created C# unit test and add build definition and run it from VS and it worked and done what i want to do.
    3. i built lab with 1 machine and define the controller on this pc ( the machine in the lab is another pc)
    4. i created test suite with test cases and from vs 2013 i associated automation nethod that i created in 2.
    5. when i try to associate the builds for the test plan i have a PROBLEM(1):
    this happened every new build that i try to assign - all the builds appears after refresh and when i press assign to plan button
    a pop up shown with error : " The build that you selected for this plan no longer exist " but he chose it in build in use but there no work item under it - the list is empty even that there are 2 tests under this test suite.
    and than when i try to run the automated tests i have this PROBLEM(2):
    The build directory of the test run either does not exist or access permission is required. and the test failed.
    Please Help
    Roey

    Hi Rory,
    Thank you for posting in MSDN forum.
    According to the error message:
    (1) a pop up shown with error : " The build that you selected for this plan no longer exist "
    I tried to create a build definition without the drop folder location for unit test solution from the VS IDE, and then I try to select the Build in use option to add the Available builds, then click this Assign to plan. I found that I get same error message
    with yours like the following screen shot.
    However, when we try to create a build definition with drop folder location for this same unit test solution and then build successfully in the VS IDE.
    After you add the Available builds and then click this Assign to plan in the MTM, it work fine.
    Therefore, I assume that the issue is related to that you did not specify a build directory for automated test case. MTM need to know where is the drop location of the build building your tests.
    http://stackoverflow.com/questions/20033217/couldnt-run-my-test-using-microsoft-test-manager
    In addition, I did some research about the problem 2:"The build directory of the test run either does not exist or access permission is required. and the test failed."
    I know that the error message occur in either of the following conditions:
    1. The account under which test controller is running does not have read permission on the build directory. (The build directory is same as the drop location of build associated with this test run.) 
    2. The build directory itself does not exist.
    So please refer the following blog to check this issue:
    http://blogs.msdn.com/b/aseemb/archive/2009/11/25/error-starting-the-test-run-build-directory-of-the-test-run-is-not-specified-or-does-not-exist.aspx
    Therefore, I suggest you can try to specify a drop location for build when you run the automated test from the MTM and then check this issue.
    Best Regards,
    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.

  • How do I get a tech to visit and test my lines?

    I live in Warrandyte (VIC) and it is widely known that our internet service in the suburb is sub-standard.  This is due to a combination of exchange congestion and ageing infrastructure in the street.
    What I need is a technician to visit and test my lines;  (a) at the pole(b) at the 1st point in my house (c) at another point in the house so that I can determine exactly where the issue is with my phone/adsl service What telstra number do I call to get this organised?  

    In some cases they will check the wiring to the first socket, however a lot of houses now have the NBP as the Madison box (or similar). So it's unreasonable to give an expectation of work inside the property. Also because even if you have a first socket as the NBP, they will check the cabling to that but otherwise will check nothing else within the house.
    As soon as you say they will test in the house it sets an expectation and no amount of qualification will be remembered when an ICOF is charged because it's in the dodgy extension cabled patched from the first socket running under the house (or situations like that).

  • How to ensure a smooth update and smooth running mac

    Hello all. First off this is not a 'help' or 'query' post, thanks to everyone in this Discussion who has helped me in the past for various mac problems, thought I "give back" and post some good tips and usage on "ensuring a smooth update and smooth running mac" in the long run.
    Altogether I have 3 Macs at home to "maintain" (my iMac G5, MacBook and my sis's Mac mini Intel) and in the office my own G5 Tower and 2-3 other same G5s. So far I have "dare to say" (touchwood ) I have not run into any major problems while performing any major OS or Security Updates; I know some of these steps are mentioned and even "preach" many times, but by doing them, you avoid all the inconvenience in the long run:
    Always Backup:
    1. Whatever you do, invest in a 2nd hard drive and perform regular back ups!
    2. If you have a G5 Tower or Mac Pro, get a 2nd drive or 3rd and install internally, if you have the other Macs, get an external FireWire Hard Drive.
    3. Use SuperDuper, and pay the little shareware to get the additional automatic and scheduling functions to help you perform auto backups, or if you prefer doing the backup manually
    4. For home users, I would recommend you perform a Backup once every 2 weeks. Heavy office/work use, I say once a week
    Performing Updates:
    1. Before Starting Up, unplug all external devices like FW drives, USB hubs etc, leave only your wired keyboard, mouse and internet connection (unless they are all wireless)
    2. Start Up your mac, quit all running applications and Repair Disk Permission
    3. Restart again and Repair Permission again
    4. Quit all other running apps and also turn off Norton Anti-virus, run Software Update
    5. Whether or not you have the Restart option after the update, Restart your mac
    6. Repair Disk Permission
    7. Shut down the mac, fix all the external devices etc
    8. Start up your mac, Repair Permission again
    9. Use your Mac as usual
    I have been doing these since all the 10.4 updates and I have not encounter any problems with all my macs.
    When a Kernel Panic occurs:
    1. Restart the mac and boot into Single User Mode (fsck)
    2. Run fsck and Repair the mac
    3. Reboot the mac, Repair Permission
    Regular Maintenance:
    1. Get a Maintenance Utility like Cocktail, and pay for the shareware and schedule regular maintenance cycles.
    2. The Mac OS also has a "built-in" maintenance script that runs in the wee hours (local time), so it is actually encourage that you at least leave your mac on overnight for at least one or two nights in the week.
    If you do not wish your mac to be left on till the morning, you can always schedule in Energy Saver's Schedule options for the mac to turn on and off at your designated times.
    I always leave my office mac on till about 4-5 am in the morning and I set things like Cocktail and NAV scans to run in those hours so they won't disrupt your day time operations, I do the same to my own home iMac.
    These tips and pointers are not new and have been mentioned many times in these posts, but if you just take that extra little time to follow through, you will be ensure a better and healtheir running mac.
    Cheers

    You can enter your Mac's serial number at this site. Information, based on the serial number, will be shown. http://www.chipmunk.nl/klantenservice/applemodel.html Then tell us what model PB you have.
    Usually, you get a blinking ? when no OS is installed. The startup tone (bong) you heard indicates the PB passed the startup hardware test.
     Cheers, Tom

  • My system is asking to run the hard disk test run...What i have to do? can any one guide me????

    model is Hp Pavilion  g6.. windows 7 home basic,
    My system is asking to run the hard disk test run.. i have run , there was no error, but the message is still comming, i do not kow whether i amdoing it in a right way or not.. Please any giude do that test and find the issue.....

    Hi,
    If you receive this message when starting the notebook, try the following.
    Shut down the notebook.  Tap away at f10 as you start the notebook to enter the bios menu.  Under the Advanced or Diagnostic tab you should find the facility to run a test on the Hard Drive.  Post back with the details of any error messages.
    If you receive this message while Windows is running , click the Start Menu, click Computer, left click Local Disc C once to highlight it, right click Local Disc C and select Properties.  Click the Tools tab and then click the button to 'Check the Drive for Errors'.  In the following window make sure both boxes are ticked and then click Start.  Agree to schedule the check at the next system restart and then restart the notebook - this process can take a couple of hours to complete before loading back into Windows.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

Maybe you are looking for

  • OIM 9.1.02 Reconciliation Rule Priorities

    Hi All, Is there a way to set priorities on the reconcilation matching rules? e.g.. If Rule 1 and Rule 2 match to users i'd like to make OIM use Rule 1 without manual intervention. Thanks, Sg

  • Safari with Windows Media Player cannot use PHP as filename/src/url

    I'm running Windows XP Pro SP2 with Windows Media Player 11 and Safari 3 public beta. In addition to being the absolute slowest browser among MSIE, Firefox, Netscape, and Opera, the Safari browser has two annoying WMP defects. 1) Even with WMP 11 ins

  • Essentials Connector: The server is not available after upgrade from Windows 8 Pro to Windows 8.1. Pro

    Hi all As many others I am facing also connection problems with Windows Server 2012 Essentials R2 and a windows client pc. The client pc in question, with windows 8 pro, has been successfully joined through the essentials connector to the domain. All

  • Info about Japanese iPlanet Directory server

    I am evaluating Japanese localized version of directory server. I am not able to find any document which can tell me about the localization of this product. I have following questions: 1. What level of localization is done. Has console localized ? Do

  • HfmCopyAppCmd.exe

    Hi, Can any one help me on how to execute the HfmCopyAppCmd.exe. I prepared the soure and the destination UDL and the applications. Now how should I run. Do I need to create a batch file with HfmCopyAppCmd.exe source and dest. information and save it