IT0210 exemptions not being considered in BSI script

Dear all,
If you have note 1455498 the exemption will not be considered in BSI Interface.
To solve it you need to apply SAP note 1466714. Even though you don´t use BADI  PC10_PAY0008.
Kind regards,
Graziela Dondoni

Hi Sudhir,
Can you check if following wage types are present in system by processing of INPET-
Leave Encashment Exemtwage type (/4V7) - This wage type stores the amount entered as the sum of all leave encashment exemptions availed. It gets processed only on the event of the separation of the employee from your organisation. The value of this wage type gets deducted from the maximum exemption limit for leave encashment exemption
Gratuity Exemptionwage type (/4V8) - This wage type stores the amount entered as the total gratuity availed. It gets processed only on the event of the separation of the employee from your organisation. The value of this wage type gets deducted from the maximum exemption limit for gratuity exemption amount.
VRS Exemption wage type (/4V9) - This wage type stores the amount entered as the Voluntary Retirement Scheme (VRS) exemption amount availed. VRS Exemption wage type (/4V9) gets processed only on the event of the separation of the employee from your organisation. No tax exemption is given, in case the employee has availed of the same with any of the previous employers
If these wage types are present then calculation is correct.
Plz note that the value of these wage type get deducted from the maximum exemption limit of the corresponding exemption amounts. Exemption has already compared been considered for them and tax component were computed correspondingly.
Let me know if stll not clear.
Regards,
Praveen

Similar Messages

  • Forecast horizon values are not being considered in Total demand row

    Hello Experts,
    We are in SCM 4.1 Version.
    I have a question regarding Forecast horizon consderation in Planning book.
    We have a weekly data view In our  Planning book,and in that planning data view "Total demand" row is not calculating correctly for the products with Forecast horizon .
    The entire Forecast is counted in Total demand without considering forecast horizon value for that Product.
    But this is working fine for Daily data view.
    I have also noticed that, Total demand values are calculating correcly in weekly view ( Forecast horizon value from the Product master is taken into account ) only when the Forecast horizon value crossing that week bucket.(i.e >7 days).
    But usually we will have a Forecast  horizon value of 3 days for all our products,.
    What should we do to get the Total demand values correctly?
    Thanks in advance..
    SAPLOUIS.
    Edited by: saplouis on Dec 5, 2010 6:42 AM

    Check the macros on data view
    Regards
    Aban

  • XML file not being read by Accordion Demo

    I had this working last week and it was a beautiful thing. I
    subsequently added many more product items to the products.xml file
    and resent it, now the products.xml file is not being read by the
    index page. I have read all the posts and added all the suggested
    fixes -
    added {useCache: false} to result in var dsProductFeatures =
    new Spry.Data.XMLDataSet("products.xml", "products/product[name =
    '{dsProducts::name}']/features/feature",{useCache: false})
    added <cfheader name="Cache-Control" value= "no-cache">
    <cfheader name="Expires" value="0">
    <cfheader name="Pragma" value="no-cache"> to header
    added var d = new Date();
    var cToday = d.getSeconds();
    var spryURL = "
    http://localhost:8500/SpryMe/Sample1/employees.xml?cacheBuster="
    + cToday; to header
    but my xml file is not being read. The script is running
    because the little fields on the right are moving.
    Any suggestions would be greatly appreciated!

    Hi,
    What's happening if you open the xml page (employees.xml)
    directly in browser. Are you able to see all the records? Is the
    XML valid?
    Regards,
    Dragos.
    PS: do you have a public URL where we can see that?

  • Changes in the value of the Arc property "Include in DDL Script" is not being saved.

    I have arcs in my design that I want that the automatic DDL code not being generated because the FK are compound and the code generated for the validation of the arc in these more complex cases is not correct, so I created an explicit constraint on the table for this validation.
    But the problem is that the Arc property "Include into DDL Script" is not being saved into the design.
    If I unchecked the option for the arc and generate or preview the DDL  the arc code is not generated.
    But when I save the project, close and reopen the arcs have this option enabled again.
    I've been checking the xml files for the arcs and this property is not being included, then by default generates always.
    Thanks!

    This problem is fixed in Data Modeler version 4.0 EA3 which is now available to download.
    David

  • Task Scheduling Script - Need help with passing the scheduled command (variables are not being evaluated)

    Hi Everyone,
    I'm trying to get a simple task scheduler script to work for me and can't get the command I need passed to the scheduler to evaluate properly.
    Here's the script:
    ###Create a new task running $Command and execute it Daily at 6am.
    $TaskName = Read-Host 'What would you like this job to be named?'
    $Proto = Read-Host 'What is the protocol? (FTP/FTPS/SFTP)'
    $User = Read-Host 'What is the user name?'
    $Pwd = Read-Host 'What is the password?'
    $Server = Read-Host 'What is the server address?'
    $NetworkDir = Read-Host 'Please input the network location of the file(s) you wish to send. Refer to documentation for more details.'
    $RemoteDir = Read-Host 'Please input the REMOTE directory to which you will upload your files. If there is none please input a slash'
    $Command = 'winscp.com /command "option batch abort" "option confirm off" "open $Proto://$User:$Pwd@$Server" "put $NetworkDir $RemoteDir" "exit"'
    $TaskAction = New-ScheduledTaskAction -Execute "$Command"
    $TaskTrigger = New-ScheduledTaskTrigger -Daily -At 6am
    Register-ScheduledTask -Action $TaskAction -Trigger $Tasktrigger -TaskName "$TaskName" -User "Administrator" -RunLevel Highest
    Write-Host "$TaskName created to run Daily at $TaskStartTime"
    What's messing up is the $Command creation, the command needs to have the quotes around "option blah blah", but if I wrap the whole line in single quotes the variables that are evaluated for the "open blah blah" strings (which also need
    to be inside quotes) and the "put blah blah" string are not being evaluated properly.
    I've dorked about with different bracketing and quoting but can't nail the syntax down, could someone point me in the right direction? My Google-fu seems to be lacking when it comes to nailing down this issue.
    Thanks

    Hmmn, closer. I'm getting this error now:
    + $Command = $tmpl -f  $User, $Pwd, $Server, $NetworkDir, $RemoteDir
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (winscp.com /com...t {4} {5}" exit:String) [], RuntimeException
        + FullyQualifiedErrorId : FormatError
    And the command being added to the new task looks like this:
    winscp.com /command "option batch abort" "option confirm off" "open ($Proto)://($User):($Pwd)@($Server)" "put $NetworkDir $RemoteDir" "exit"
    Here's the current state of the script. I get what you're doing to try to bypass the quotes issue, using an array. I'm just not awesome at this yet sooooooo...
    $TaskName = Read-Host 'What would you like this job to be named?'
    $Proto = Read-Host 'What is the protocol? (FTP/FTPS/SFTP)'
    $User = Read-Host 'What is the user name?'
    $Pwd = Read-Host 'What is the password?'
    $Server = Read-Host 'What is the server address?'
    $NetworkDir = Read-Host 'Please input the network location of the file(s) you wish to send. Refer to documentation for more details.'
    $RemoteDir = Read-Host 'Please input the REMOTE directory to which you will upload your files. If there is none please input a slash'
    $tmpl = 'winscp.com /command "option batch abort" "option confirm off" "open {0}://{1}:{2}@{3}" "put {4} {5}" exit'
    $Command = $tmpl -f $User, $Pwd, $Server, $NetworkDir, $RemoteDir
    $TaskAction = New-ScheduledTaskAction -Execute $Command
    $TaskTrigger = New-ScheduledTaskTrigger -Daily -At 6am
    Register-ScheduledTask -Action $TaskAction -Trigger $Tasktrigger -TaskName "$TaskName" -User "Administrator" -RunLevel Highest
    Write-Host "$TaskName created to run Daily at $TaskStartTime"

  • Employer Unemployment Tax Not Being calculated in US Payroll

    Hi Experts,
    Employer Unemployment Tax (Tax Type 10) for Tax Authority Alabama is not being calculated in US Payroll in my SAP system.
    The taxable amt is showing up, but the tax is not being calculated in the payroll log.
    No error/warning mssg is provided by BSI in the payroll log.
    I have already checked for the following:
    1)We are using the standard tax model 002 provided by SAP for Alabama
    The tax model settings are fine.
    2) Table T5UTX is being maintained.
    3) Tax Type 10 is setup against tax auth Alabama in BSI Tax Factory.
    For tax auth Federal too, though the taxable for tax type 10 shows up, tax is not being calculated.
    Can you please help.
    Regards,
    Somdeb.

    Hello Somdeb,
    Please be aware that this is no standard SAP tax model only an example which must be customized as every customer is different.
    First check the payroll log to see if the information is being sent to BSI TaxFactory. If not then the issue is mostly the tax model. Different tax models can be used based on the employee.
    If the values are being sent to BSI and not being calculated, then there is an issue wil BSI. Send BSI the script and they will tell you what the issue is.
    Regards,
    Manny

  • Dynamic image is not being displayed in Adobe Reader 8.1

    Hi,
    In interactive form, we have followed below required steps to show a dynamic image.
    For the left image, drag and drop an Image Field element from the standard Library tab to the Body Pages pane. Select this image field and edit the following properties:
    • Click on the Layout tab and choose None for the Caption position.
    • Click on the Object, then the Binding tab and choose None for Default Binding.
    • Click on the Field tab, enter $record.SapOnlineShopUrl for the URL entry, and select Use Image Size for the Sizing field.
    • Click on the script editor and enter the following FormCalc script statement, which enables the dynamic integration of the image. Show: initialize Script: this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    Language: FormCalc Run At: Client
    Image is displayed properly in Adobe reader 7.1 but it's not being displayed in Adobe reader 8.1.
    I was going through some forums and understand that Adobe 8.1 blocks href URL. If this is indeed true, what's the alternative way to show a dynamic image?
    Regards
    Chandra
    Edited by: Chandrashekhar Singh on Apr 24, 2008 7:28 AM

    Soory, I thought its static image....
    Regards,
    Vaibhav Tiwari.
    Edited by: Vaibhav Tiwari on Apr 24, 2008 11:45 AM

  • Bursting - empty tag not being cleared in email channel loop

    If you check the following, I pass the cust num and email address to the email delivery channel for the subject line.
    <xapi:message id="222" to="[email protected]" attachment="true" subject="Unigas Statement to be emailed to ${CUST_NUM} to ${EMAIL}">
    Problem is, that if the cust num or email address tag is empty, the previous tag value is used! its like its not being "cleared" between bursting loops.
    Using 5.6.3 EBS.
    Rob
    http://www.scnet.com.au

    Since your email is failing I am going to assume the rest of your script is working.  So I am looking specifically at these lines:
      $process = '../includes/process_mail.inc.php';
        if (file_exists($process) && is_readable($process)) {
            include($process);
    The things that need to be confirmed here are that the path is right and it has proper permissions.  Have you tried eliminating that "and" statement in your "if" and see if those work independently.  I have a feeling that if the path is right that the file does not have the proper permissions on your server for global read access which would make, "is_readable" fail and thus end your script.
    Can you test those and post back?

  • AJAX Report Refresh  a_report- Condition for display not being validated

    Hi ,
    I have a report which has the following condition for dispaly:
    Exists(SQL query returs atleast one row) - SELECT * from temp1The query for the report is : select * from temp1 Now I have a button on the page and on click of the button I call the below Javascript :
    function f_insert_Temp_table(pTrans){
          var l_Return = null;
          var get = new htmldb_Get(null,$x('pFlowId').value,
                  'APPLICATION_PROCESS=temp_table_insert',206);       // ODP to insert into temp1
          get.add('TRANS_ID_ITEM',pTrans);
          gReturn = get.get('');
         //alert(gReturn);
         //$x_Show('6342610690289435');
         $a_report('6342610690289435','1','15','15');
    }Everything executes fine and the report refreshes the rows but the condition used for display doesn't get checked when I call $a_report() ...
    I can see the ODP execute successfully and row gets inserted into temp1 which means report condition is satisfied .
    If I remove the condition for the report, I can see the report getting refreshed and showing new rows through the $a_Report() call.
    Is there something that needs to be added to the script or $a_report call to validate the condition too ?Is there a way I can validate the region condition too ?
    Appreciate any suggestions/pointers here. I really do not want to refresh the whole page.
    Thanks,
    Dippy
    Edited by: Dippy on Feb 5, 2010 11:05 AM

    Hi Flavio,
    Thanks for your support.I figured where I was going completely wrong.
    Its just that when the page loads for the first time the temp table is empty and hence the report is not being displayed which simply
    means that the report id Im passing into the a_report function is not rendered on the page. Hence no matter what the temp table contains the report id is absent from the page.
    I fixed it as follows :
    Remove the condition for the report.
    Added and item and computed(P_Compute) its value using select count(*) from temp.
    Added an onload JS function which does a $x_Show('Report_Region') if P_Compute > 0 or $x_Hide('Report_Region') if P_Compute <0 .
    Now in my JS function which has an AJAX call to an ODP does an $x_Show('Report_Region').
    Flavioc : the query for my report is simple
    select * from tempIt finally dawned upon me that I'm trying to catch hold of an ID that's not rendered.
    So one issue is solved now the other part would be figuring out how to make $a_report work with pagination etc .

  • Just noticed a recurring pattern of not being credited my $5 pre-order deposit.

    The other day I was going over some of my Best Buy gaming purchases this year through MyBB, and noticed for one game, Project CARS on PS4, I was charged an additional $5 for the pre-order bonus (noted as "POB") which should have been free. I contacted customer support and was told I'd only be able to get a refund w. receipt in-store, and it was up to the store's discretion. As I didn't save a recipt from May, I figured it was a loss and not worth trying to make a case over $5.
    Then I noticed something else. As a Gamers Club Unlocked member, all new release $59.99 games go down to $51.35 ($47.99 + tax) when the 20% deduction is applied. When accounting for the $5 deposit to reserve an in-store pre-order, the game should work out to $46.35 after tax if the transaction is processed properly. However, going through new release game pre-orders, I noticed that almost every single game I pre-ordered for in-store pickup this year was processed incorrectly and I was charged $51.35 due to not being credited the depsoit I had already paid. I didn't realize at the time, but now it appears as if has been the case for four pre-order purchases, which when added to the $5 I was charged for the pre-order bonus, works out to a $25 total overcharge. Is there any way to try and get my money back on this at this point or no? As some of these purchases were from months ago, I don't still have the receipt and even if I did, would be past the return window (though this wouldn't be a typical return issue).

    Hi Jay86,
    You certainly shouldn’t be running into so many issues with pre-order deposits at your local Best Buy. I’m familiar with hiccups with these in the past, but I haven’t heard anything for quite some time now. Our systems are setup to automatically apply your $5 deposit to the final transaction when a game releases, so this leads me to believe that some of your pre-orders aren’t being fulfilled properly at the store level. I’m very sorry if this has occurred on any of your pre-orders!
    Like others have mentioned, your local store should be able to refund any pre-order deposits necessary. We also have the ability to locate previous pre-orders/receipts, so I wouldn’t worry too much about that. Considering the timeframe here, you may want to ask to speak with someone from your store’s leadership team as well, should you run into any issues.
    Please feel free to let us know if you continue to run into issues with this.
    Best regards,
     

  • I recently upgraded to iTunes 11.1.5 and now my iPod Nano is not recognized in iTunes. I also upgraded my iPhone 5s to iOS 7.1. i Tunes on my computer does recognize my iPhone. What is the problem with my iPod Nano not being recognized?

    I recently upgraded to iTunes 11.1.5 and now my iPod Nano is not recognized in iTunes. I also upgraded my iPhone 5s to iOS 7.1. i Tunes on my computer does recognize my iPhone. What is the problem with my iPod Nano not being recognized?

    I would think, Twins1995, that if we are having the problem, others are as well. Hopefully, Apple will shortly issue a follow-up software release to fix the problem. Or is that just wishful thinking on my part.
    It would be helpful, if there were some kind of work-around in the interim, so we can use our devices. Pretty frustrating when you consider that all of the hardware and software is produced by Apple.

  • I'm at the end of my tether with not being able to access itunes which I could do perfectly well before! Now my laptop won't even connect to the internet despite the connection at the hub being excellent! No problem with ipad and phone - only windows!

    I'm tired of this problem of not being able to access itunes on my laptop and now no internet access despite connection and strength being excellent. What are windows playing at? Worked perfectly well until recently. Very frustrating and time consuming!

    Just a few lines to assure you you are not alone regarding speed delivery. By no means.
    I'm on Infinity 2 with HH5 - was virtually guaranteed 63 d/l and told possibly even up to 78. My actual speeds are nearer 15 (yes 15!) to 28 d/l if I am lucky. I've played all the obligatory games of checking and posting and reviewing my HH stats - and of course wasting my time with India "help" customer services who are instructed to read from a script of inane generalities which are usually completely irrelevant and have no connection whatsoever with a user's Specific problem.
    It more often than not turns out that the automated monitoring system imposes a software called DLM = Digital Line Management = which (with the endless excuse of improving line stability) increases noise margins and drastically reduces speed. This can kick in pretty rapidly and can take at least 3 to 4 days to modify itself - if indeed at all!!! Usually an Openreach engineer visit is then needed - who will re-set the Profile to what it is you are supposed to be paying for ..... then of course it is totally possible that DLM will re-emerge and the same old cycle of troubles will have to be endured.
    We pay in good faith at the outset on the back of so many promises - only to be cynically let down and dismissed once signed up. It is quite wrong we have to continually argue our case to (try) to get anywhere and are always reminded that we are tied into contracts with expensive escape clauses - or that an engineer's visit is only free IF it is proved the fault is not inside your house - which it very rarely is! This is often more an Ordeal than a subscribed service. Superfast reliable Broadband in the UK ? Ha!

  • TS4040 I assumed this would help my problem with not being able to open apps like Preview or TextEdit since I installed Mountain Lion. Instead, first I'm prompted to enter a password, then once I do that, I get an error box telling me the Library needs re

    I assumed this would help my problem with not being able to open apps like Preview or TextEdit since I installed Mountain Lion. Instead, first I'm prompted to enter a password, then once I do that, I get an error box telling me the Library needs repairing. So I click on Repair, and once again I'm prompted for a password, which I enter, then the same error box opens, and so it goes. Can anyone help me with this problem? I'd greatly appreciate it.
    Thor

    Back up all data. Don't continue unless you're sure you can restore from a backup, even if you're unable to log in.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Triple-click the following line to select it. Copy the selected text to the Clipboard (command-C):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -Rh $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    Step 1 should give you usable permissions in your home folder. This step will restore special attributes set by OS X on some user folders to protect them from unintended deletion or renaming. You can skip this step if you don't consider that protection to be necessary, and if everything is working as expected after step 1.
    Boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • I am having trouble with the Jpeg icons and also now thumbnails not being visable in bith teh Apple finder and now also Adobe Bridge. Can anyone shed any light on this ?

    I am having trouble with the Jpeg icons and also now thumbnails not being visable in bith teh Apple finder and now also Adobe Bridge. Can anyone shed any light on this ?

    Argh - once again, I find my solution right after posting this. Left out one modification to the SWIG script, now it runs in 29 seconds vs C 16 seconds, I can live with that.

  • F-28 T-CODE - Open Document is not being pulled

    F-28 T-CODE - Open Document is not being pulled
    Item is shown as open on customer account (FBL5N). Item has not been cleared.
    When selecting items to apply payment, the following message is shown:
    "No appropriate line item is contained in this document"  Message no. F5228
    Appreciate any help that can be provided.
    Best regards, Maikol M.

    Hi,
    - Check some table fields in the missing documents using Transaction SE16. The following conditions must exist:
    BSIS-XOPVW = X (Indicator: Open item management, only for G/L accounts)
    BSEG-XOPVW = X (Indicator: Open item management)
    BSEG-AUGBL = space (clearing document number)
    BSEG-DISBN = space (discount document number)
    BKPF-BSTAT = space (document status)
    BKPF-XSTOV = space (indicator reversal flag)
    REGUS/REGUP -> see below
    Look at table REGUS using Transaction SE16. Enter the account (KONKO) in the selection screen. If you selected an entry, use the information Run date (LAUFD) and Identification (LAUFI) in Transaction F110 (payment program). Check the status of the payment run. If only the proposal was carried out, the documents proposed for payment are blocked for other clearing transactions. It is only when you delete the proposal run that the items are taken into account again in the clearing transaction.
    Rgds.

Maybe you are looking for

  • TRAN : F110 Automatic Payment

    How to change printout/data medium in F110 transaction. is it based on payment methods ?. if so how to assign this for different payment methods. how to add a customised program to existing print/data medium programs in the transaction.

  • MS Access 2013 Report - Sum not working on a calculated field that does work

    The following statement works in the detail part of the report: =([Qty]*[Install_Labor]*[Parent]![IntallLaborRate])*[Parent]![LaborMarkup] But the following statement does not work in the group footer: =Sum([Qty]*[Install_Labor]*[Parent]![IntallLabor

  • What do I need to do to enable Active Directory users to authenticate to AFP shares in 10.8 server?

    We recently upgraded from 10.6 server to 10.8 server and are having trouble with AFP shares and Active Directory.  We have shares on each of our OS X servers that should be mountable by any Active Directory user at the site the server resides.  In 10

  • Change string to variable (sort of)

    Hi. I am making a game in flash which requires lots of similar functions, such as function getSomeNumber():Number{ return number; I was wondering if i could generalize this by doing the following. take a parameter of string defining the name of the v

  • Bridge CC stopped working / will not launchc

    I installed the Creative Cloud on my Windows 7 / PC machine the last two days.  I installed Bridge CC yesterday and now today it will not work.  Not sure what the problem good be.  Rebooted 3x.