I am geeting the error in Test run.

Dear Friends,
     i am getting this error
Division by zero not performed
Calculation rule    ZPPF/810          RTE=TSDIVI RTE-TSDIVP RTEKGENAU RTE
When i am increasing the salary of the person.
How should i handle this.
kindly respond me asap.
i am getting error in the test run.
Regards,
sai prasad.

ya its solved.
the main problem why i am getting the error when i am running payroll is that i dint not maintain some importent country specific infotypes properly. thats the reason its showing me errors.
i maintained them properly and finally the error is resolved.
Thanks once again to the reply from our friends.
Regards,
sai prasad

Similar Messages

  • 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

  • Need assistance with my Porsche Design LaCie Time Capsule... It is not operating at all.. I have ran the diagnostic via the Disk Utility and under the error reading it runs the repair and then says it not about to repair what do I do... Thanks

    Need assistance with my Porsche Design LaCie Time Capsule... It is not operating at all.. I have ran the diagnostic via the Disk Utility and under the error reading it runs the repair and then says it not about to repair what do I do... Thanks

    LaCie doesnt make ANYTHING.  It contains a Seagate 3.5" 5400RPM HD.
    Check the HD on another computer, if nothing, your SATA bridge is fried, or the HD (very unlikely since its a Seagate inside)
    Youd have to crack open the HD, remove the SATA bridge cart thats plugged into the HD and put the HD into an enclosure or a HD dock to get the data
    those external HD use a 50 cent SATA bridge famous for failing.  The curse of all the good HD externals is the junk 3rd party SATA bridges attached to them that crash and burn.
    Sata bridge:

  • Create customer date trough class cmd_ei_api - error in test run

    Hi all,
    I try to use class cmd_ei_api to create customer. It works fine but one thing is strange.
    When I pass data with test run and customer is in a group with internal nummering system icrease number every time when i run program. Customer is not created ( that is good) but the assigned nummer is lost.
    I tried to use method maintain_bapi and maintain.Problem occurs every time.
    Do you have the same problem?  Do you know solution of this problem?
    regards,
    JG
    SAMPLE CODE:
    report zcreate_customer.
    data: wa_header          type cmds_ei_header,
          wa_central_data    type cmds_ei_vmd_central_data,
          wa_central_datax   type cmds_ei_vmd_central_data_xflag,
          wa_address         type bapiad1vl,
          wa_addressx        type bapiad1vlx,
          wa_tax_ind_st      type cmds_ei_tax_ind,
          wa_tax_ind         type cmds_ei_cmd_tax_ind,
          wa_bankdetail_st   type cvis_ei_cvi_bankdetail,
          wa_bankdetail      type cvis_ei_bankdetail,
          wa_company_code_st type cmds_ei_company,
          wa_company_code    type cmds_ei_cmd_company,
          wa_functions_st    type cmds_ei_functions,
          wa_functions_t     type CMDS_EI_FUNCTIONS_T,
          wa_functions       type cmds_ei_cmd_functions,
          wa_sales_data_st   type cmds_ei_sales,
          wa_sales_data      type cmds_ei_cmd_sales,
          wa_customer        type cmds_ei_extern,
          wa_customers       type cmds_ei_main,
          wa_correct         type cmds_ei_main,
          wa_defective       type cmds_ei_main,
          wa_mes_correct     type cvis_message,
          wa_mes_error       type cvis_message.
    constants: c_update type c value 'M',
               c_insert type c value 'I'.
    PARAMETERS: p_test type c as CHECKBOX DEFAULT 'X'.
    start-of-selection.
      free: wa_customer, wa_company_code_st, wa_customer.
      wa_address-name       = 'CUSTOMER NAME'.
      wa_address-city       = 'CITY'.
      wa_address-postl_cod1 = '28-500'.
      wa_address-street     = '1400 9TH ST W'.
      wa_address-country    = 'PL'.
      wa_address-langu      = 'L'.
    wa_address-region     = 'FL'.
      wa_address-sort1      = 'SORT1'.
      wa_address-sort2      = 'Sort2'.
    Assign address data directly
      wa_customer-central_data-address-postal-data = wa_address.
      wa_addressx-name       = 'X'.
      wa_addressx-city       = 'X'.
      wa_addressx-postl_cod1 = 'X'.
      wa_addressx-street     = 'X'.
      wa_addressx-country    = 'X'.
      wa_addressx-langu      = 'X'.
      wa_addressx-region     = 'X'.
      wa_addressx-sort1      = 'X'.
      wa_addressx-sort2      = 'X'.
    wa_customer-central_data-address-postal-datax = wa_addressx.
      wa_customer-central_data-central-data-ktokd = 'OKRA'.
      wa_customer-central_data-central-data-STCD1 = '8291004247'.
      wa_company_code_st-task           = c_insert.
      wa_company_code_st-data_key-bukrs = '1000'.
      wa_company_code_st-data-zuawa     = '009'.
      wa_company_code_st-data-akont     = '0000201100'.
      append wa_company_code_st to wa_company_code-company.
      append wa_customer to wa_customers-customers.
      call method cmd_ei_api=>maintain_bapi
        EXPORTING
          iv_test_run         = p_test
          iv_collect_messages = 'X'
          is_master_data      = wa_customers
        IMPORTING
          es_master_data_correct   = wa_correct
          es_message_correct       = wa_mes_correct
          es_master_data_defective = wa_defective
          es_message_defective     = wa_mes_error.
      if wa_mes_error-is_error is initial and p_test is INITIAL.
        commit work AND WAIT.
      else.
        ROLLBACK work.
      endif.

    Hi experts, I am using cmd_ei_api to create customer. Each time when I create the customer, for the customer number KUNNR, first the method picks a new number from number range, if I don't supply one in program. Then it makes the necessary checks on customer data. If data check is success, customer is created and everything is okay. But if the check is failed, no customer gets created in the Data base, but the picked number is lost forever. Is there a way to avoid this?
          The same happens, even when I ran it in Test Mode(iv_test_run = 'X'). A number is lost irrespective of whether the test run is success or not.
          I tried supplying the customer number via the program. I this case also, I had to get a number from the Number Range and supply. As the Method validates whether the supplied number belongs to the right number range, I cannot use any dummy number(not even for a Test run). Also it validates whether a customer exists in KNA1 with the supplied number.
          As a work around, now I am supplying the last number of the number range for the test run(which I have hard coded ~not a good practice!!). If this runs error free, I will pick a new number and creates the customer.
    regards,
    anish
    sample code...
    *-- Fill customer parameters to lwa_master_data
    lwa_customer-header-object_instance-kunnr  = '99999'.
    * *** ~~
    *-- Test Run with dummy customer no. for data check
        IF lwa_master_data IS NOT INITIAL.
           CALL METHOD cmd_ei_api=>maintain
             EXPORTING
               iv_test_run    = 'X'
               is_master_data = lwa_master_data
             IMPORTING
               es_error       = lwa_es_error.
    *-- Create customer if Test Run Succeeds.
          IF lwa_es_error is INITIAL.
    *-- Get new Customer Number
           CALL METHOD cmd_ei_api=>get_number
             EXPORTING
               iv_ktokd = as_customer-ktokd
             IMPORTING
               ev_kunnr = lv_kunnr
               es_error = lwa_getno_msg.
           IF lv_kunnr is NOT INITIAL.
    *-- Supply new customer number
             CLEAR: lwa_master_data, lt_customer.
             lwa_customer-header-object_instance-kunnr = lv_kunnr.
             APPEND lwa_customer TO lt_customer.
             CLEAR lwa_customer.
             lwa_master_data-customers = lt_customer.
    *-- Initialize Global and Current Customer Buffer
             CALL METHOD cmd_ei_api=>initialize.
    *-- Create Customer
             CALL METHOD cmd_ei_api=>maintain
               EXPORTING
                 iv_test_run    = ''
                 is_master_data = lwa_master_data
               IMPORTING
                 es_error       = lwa_es_error.
    *-- Proceed if no error with customer creation
             IF lwa_es_error is INITIAL.
    * ******************* * ******************* ~~

  • 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

  • FF won't open and an error message appears on the screen "unresponsive script" it I open task manager and stop the error message FF runs normally, how do I fix this problem

    This problem only started when I upgraded to FF 4.0. I am running Windows 7. When I go to the task manager I am able to see the error message in the processes area, if I highlight it and tell the task manager to stop it, FF immediately starts and runs normally. I have no idea where the error message is coming from.

    This problem only started when I upgraded to FF 4.0. I am running Windows 7. When I go to the task manager I am able to see the error message in the processes area, if I highlight it and tell the task manager to stop it, FF immediately starts and runs normally. I have no idea where the error message is coming from.

  • I have a windows xp SP3 machine that is giving the error "itunes cannot run because some of its required files are missing please reinstall itunes".

    It worked fine one day then failed with this error the next.  I tried the repair and a completely fresh install with the same result.  I also tried installing an older version (7.0).  It installed, but would not connect to the server so I ran the upgrade hoping that it would work.  No joy.  Back to the error...  I haven't been able to find any other things that might fix it.  Can anyone help?

    I did try to uninstall and reinstall.  It messed up my computer.  I had to "RESTORE" from the prior days backup.  This was not helpful at all.  I'm used to losing all my stuff when I connect to iTunes, that's a whole other issue, but now I'm completely banned from any updates to my phone at all.  Geeze.......

  • 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

  • Oracle 10g Taskbar not displaying to see the error after running the form in explorer

    Hi
    1- When we compile and run the form in forms 10g output in Internet Explorer and Avant Browser. can not see teh taskbar to see the error message, how to check the error when you run the forms in explorer there is no taskbar under the forms
    2-  When we compile and run the form in forms 10g output is displayed. ... Background has an "Oracle logo" where is the location of this Logo
    Watiing for reply thanks.

    Leopard007 wrote:
    1- When we compile and run the form in forms 10g output in Internet Explorer and Avant Browser. can not see teh taskbar to see the error message, how to check the error when you run the forms in explorer there is no taskbar under the forms
    Check the Module property: Console Window.  If this property is null, then the Status Bar will not be displayed during runtime.  You have to set this property for each form.
    Leopard007 wrote:
    2-  When we compile and run the form in forms 10g output is displayed. ... Background has an "Oracle logo" where is the location of this Logo
    The "Splash.gif" is located in the frmall.jar file. What is it you want to do?  Do you want to use a different spash image during application startup?  If yes, you can display a different startup splash image by using the splachScreen= parameter in the formsweb.cfg file.  The replacement .gif file must be located in the directory specified in the imageBase= parameter.  Keep in mind that this file will need to be signed or you will get a security warning.
    Craig...

  • Read Error logs after running the background jobs

    Hi,
    How to read the error logs after running the background jobs. In our scenarion we are running the COHV transaction to release the production orders in background. But we are not finding the error logs after background job. We would like to read the error logs and correct for further processing.
    Kindly suggest.
    Thanks & Regards,
    N. Laxman

    Hi
    you can check the  back ground jobs defined by any user in SM37 and where you can see the spool and job logs as well.
    plz check in your case and revert back
    Regards
    Anupam Sharma

  • How to run my program in "test run" mode, programmatically ??

    Hi,
    Assume I have written a Zprogram and called a BDC to input a batch of data from an CSV file. I could see that in a normal input mode, some of the SAP transactions allow me to select "Test Run" so that SAP first checks if the data I enter is correct and can be saved. It then reports a succes and then I re execute !! U can see that option in transaction KP90, Delete Planned cost.
    Can I do the same programmatically so that I ensure that my batch data upload will be successful for this set of data ??
    Also, another question related to BDC... what happens when a record fails to confirm the SAP input rules ?? will only that be skipped from the batch input and rest be stored in the DB or will the entire batch of data will be reverted , something like ROLLBACK ??
    thanks

    hi,
       set one flag in the program for test run.
       if flag = 'X'.
          write success message here.
          dont save ur data
       else.
         save ur data
       endif.
       regarding ur 2nd question if one record is error also the data will not be updated for all the records.
       as u had mentioned it will ROLLBACK

  • Win 7 IE10 "Internet Explorer Branding failed due to the error listed below. The specified procedure could not be found."

    Hi All,
    I am testing some Windows 7 builds with IE10 installed and when I do a Resultant Set of Policies on them they all have an error in the user section of the GPOs as shown in the image.
    To investigate I unlinked all the IE policies from the OU and rebuilt the PCs and wiped the user accounts' roaming profiles (local already wiped with the format of the HDD for the rebuild) but still get the same error even with no IE policies
    applied. I have looked through RSOP and there are no settings applied either under the maintenance section or under Admin Templates > Windows Components > Internet Explorer.
    Please can someone fill me on how to stop this error from showing?
    Thanks

    Hi Robert,
    As I mentioned in my original post I see that message being "produced" when I run RSOP.msc and generate the results. I probably should have posted this image in as you can see what section is affected -
    I've been digging around in the event viewer and have found this multiple times throughout.
    This is an IE install downloaded directly from Microsoft.com. I've uninstalled it, rebooted,, re-downloaded again and re-installed it and am still getting the same output. If I leave IE8 on the PC I don't get this issue at all. We've not used the IEAK
    to configure it in any way.
    The problem occurs with the client trying to apply IE policies via group policy. I can only see the error when I run RSOP and generate an output.
    Another issue I've found is that it won't apply the proxy settings via group policy preferences IE control panel section - I'm having to use reg entries instead. I found this post with people having the same issue with the same error -
    http://social.technet.microsoft.com/Forums/windows/en-US/7efbd672-8196-4053-8167-d94da5d2f939/bypass-proxy-exceptions-are-not-coming-in-windows-8-thorugh-group-policy?forum=w8itprogeneral
    Which text file should I be looking for to trace it back from?

  • Afabn report to the error log

    Hi,
    We are just testing ECC 6.0 where for depreciation AFABN is used instead of AFAB.
    However when I run the depreciation in test run it never includes any assts and it says 'Refer to the error log'. But I cannot find anything in ST22.
    Can you help where the errorlog can be found?
    Are there any differences between AFAB and AFABN?
    Thx,
    Jan

    I had the same problem recently and in the Job Log it states no Errors. If when you run the depreciation you select test run but not "Error Analysis" then you will find will give you the list of Assets.to be posted. It does seem that when this is ticked it does give incorrect error message in the payment run for some reason I don't know what the benefit of this error analysis tab is! Hope this helps.

  • 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

  • Premiere elements 11 failed to install with the error about shared technologies

    PRE 11 failed to install with the error "The installation process has encountered an error while installing shared technologies. Please restart your system and try again" all that does is uninstall everything and I have to restart agin with the same error and we go on. So far the only way it is working is at the point of the "error message" I run task manager and stop the installer, I know it's leaving files that should be removed by the installer, but it worked. This information was gained on one of the forums and seems to work. Yesterday was the first time I really used it fully and although I was able to create a project I cannot output it as a file (mpg), it starts to output ok then throws up an error and fails. As PRE 10 was still installed I imported the project (which amazed me) into PRE 10 and outputted as required with no error. All this may be due to something being wrongly installed or not being installed in PRE 11, I don't know. Can anybody help
    Dennis
    using Windows 8 Pro
    PS I downloaded the Adobe Support adviser and No errors

    See the following help document:
    http://helpx.adobe.com/photoshop-elements/kb/troubleshoot-installation-photoshop-elements- premiere.html

Maybe you are looking for

  • How to permanently delete voice memos from iPhone 4s?

    As you can see, I have over 387 voice memos somewhere on my phone, and I want them permanently deleted. I've deleted the voice memos through the voice memos app, and these appear to be all of the deleted voice memos. I tried deleted the voice memos p

  • 5800 SatNav questions.

     I've been learning about the satnav on the 5800 and need a bit of help if possible. I believe I can use the satnav without connecting to the internet.  From OVI maps In the tools setting I have Internet > Connection ( offline ) - Network Destination

  • Any alternate function to EDIT_TEXT?

    Hi! is there any alternate function to EDIT_TEXT? I want to change the text length of a standard text/long text, which function module to use? Also, which function module SAP standard progam used to display a text and change a text length?

  • Creating DAO layer from java beans(setter and getter methods)

    Can anybody explain me how to create an adapter layer (DAO layer) from java beans with no connection and transaction code inside DAO layer?

  • Combining iTunes libraries from separate iPads or PCs

    My wife and I both use iPads almost exclusively and only keep our old Windows PCs to basically house our iTunes libraries and a large no. of photos. Can I combine both iTunes libraries onto a Macbook Pro either from our iPads or our old PCs? And if s