Need assistance for seeded element configuration in payroll for SA Legislation

Dear All,
I am implementing Oracle Fusion Global Payroll for SA Legislation. I referred workforce setup guide for Payroll and supplemental guide for HR and Payroll implementation of SA Legislation.
However, I am not able to figure out precise configurations needed for Transport Allowance calculation and feed its value to GOSI for further calculations.
Document 1567452.1 - Oracle Fusion HRMS (Saudi Arabia): HR Implementation and Functional Considerations
Document 1619159.1 - Oracle Fusion HRMS (Saudi Arabia): Payroll Implementation and Functional Considerations
Could anyone elaborate configuration needed to achieve below mentioned requirement? As per seeded configuration, system generates Fast Formula for calculation. But element and formula by itself does not achieve required functionality. I know there is additional configuration needed in system but not sure how to proceed ahead with it. I have completed all steps mentioned in above mentioned two documents and yet stuck with non-functioning element.
Basic Salary: 1000 SAR
Transport: 10% of Basic Salary (Based on Grade Eligibility)
I am specifically expediting functionality as below
1. Manage calculation value definition
2. Manage Component Group Rules (if applicable)
3. Attach % Grade Rate to value definition
Regards,
Saurabh

Hi,
As I mentioned earlier, I added the appropriate balances which are used to calculate Tax to Retro Elements and those Balances got updated with the delta amount but Tax was not updated. I want to know is there any process provided by Oracle using which Tax for those already paid amounts can be recalculated.
I calculated the Tax manually and using Adjust Balance form added ZA_TAX_BALANCE_ADJUSTMENT Element and given the difference tax amount in PAYE and Tax Input values and saved the form. The Tax got updated.
Tax_ASG_RUN - 15000
Tax_ASG_TAX_YTD - 153257.32 (Prev - 138257.32). When I run the IRP5 (Tax Certificate Process) the tax is also getting correctly on it.
But client wants Oracle to calculate the Tax for those retro amounts so thats the challenge.
Could you help me with this.
Thanks,
Sri

Similar Messages

  • Compiling a driver, need assistance on kernel source configuration

    Hello BBS.
    I am compiling a module for the Asus PCE N53 wireless pci-e card. I have obtained the driver source, and followed the instructions, and have gotten to the point where I need assistance. The instructions requires the kernel source, i have successfully obtained and configured it using the Command line prompt, except for one feature. I need to enable the intel IPW2200 driver code in the kernel source for this driver. What procedure do I follow to enable it?

    > I know in face value, that my request may seem odd. I just need to use the source of the kernel, not a new kernel... I have found that what I am requesting... will fix the problem, based on a Gentoo solution: http://forums.gentoo.org/viewtopic-t-93 … art-0.html. Needing to know how to configure the kernel source to enable the intel driver still stands. The source I am using is the latest arch kernel source.
    ===============
    RT5592 Linux Driver quick start       
    ====================
    Check tools: 
    ====================
    *Before install driver, please check already install compile tool and  kernel source code
    1>Install compile tool
        $yum install gcc-c++
    2>check kernel source code exists /usr/src/kernels/ "kernel name"
        Download your kernel source code
        *http://www.kernel.org/pub/linux/kernel/        
        or
        $yum install kernel-devel
    ====================
    Build Instructions: 
    ====================
    1> $tar -jxvf DPO_GPL_RT5592STA_LinuxSTA_vx.x.x.x.tar.bz2
         go to "DPO_GPL_RT5592STA_LinuxSTA_vx.x.x.x" directory.
    2> In Makefile
         set the "MODE = STA" in Makefile and chose the TARGET to Linux by set "TARGET = LINUX"
         define the linux kernel source include file path LINUX_SRC
         modify to meet your need.
    3> In os/linux/config.mk
         define the GCC and LD of the target machine
         define the compiler flags CFLAGS
         modify to meet your need.
         ** Build for being controlled by NetworkManager or wpa_supplicant wext functions
             Please set 'HAS_WPA_SUPPLICANT=y' and 'HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y'.
             => $wpa_supplicant -Dwext -ira0 -c wpa_supplicant.conf -d
         ** Build for being controlled by WpaSupplicant with Ralink Driver
             Please set 'HAS_WPA_SUPPLICANT=y' and 'HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n'.
             => $wpa_supplicant -Dralink -ira0 -c wpa_supplicant.conf -d
    4> $make           
         # compile driver source code, need administrator.
         # To fix "error: too few arguments to function ¡¥iwe_stream_add_event"
            => $patch -i os/linux/sta_ioctl.c.patch os/linux/sta_ioctl.c
    5> $make install
         #install driver
         #copy RT2860STA.dat to /etc/Wireless/RT2860STA/RT2860STA.dat
    6>$vi /etc/rc.d/rc.local
         #input "ifconfig ra0 up"
        $reboot
    7> unload driver   
         $ifconfig ra0 down
         $rmmod rt5592sta
    ======
    Heres the output of my error, when I compile:
    =======
    make -C tools
    make[1]: Entering directory `/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/tools'
    gcc -g bin2h.c -o bin2h
    make[1]: Leaving directory `/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/tools'
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/tools/bin2h
    cp -f os/linux/Makefile.6 /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/Makefile
    make -C /home/white/linux-3.2.9 SUBDIRS=/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux modules
    make[1]: Entering directory `/home/white/linux-3.2.9'
      WARNING: Symbol version dump /home/white/linux-3.2.9/Module.symvers
               is missing; modules will have no dependencies and modversions.
      CC [M]  /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.o
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2364:2: error: unknown field ‘private’ specified in initializer
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2364:2: warning: initialization from incompatible pointer type [enabled by default]
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2364:2: warning: (near initialization for ‘rt28xx_iw_handler_def.get_wireless_stats’) [enabled by default]
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2365:2: error: unknown field ‘num_private’ specified in initializer
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2365:2: warning: excess elements in struct initializer [enabled by default]
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2365:2: warning: (near initialization for ‘rt28xx_iw_handler_def’) [enabled by default]
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2366:2: error: unknown field ‘private_args’ specified in initializer
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2366:26: warning: excess elements in struct initializer [enabled by default]
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2366:26: warning: (near initialization for ‘rt28xx_iw_handler_def’) [enabled by default]
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2367:2: error: unknown field ‘num_private_args’ specified in initializer
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2367:2: warning: excess elements in struct initializer [enabled by default]
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2367:2: warning: (near initialization for ‘rt28xx_iw_handler_def’) [enabled by default]
    make[2]: *** [/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.o] Error 1
    make[1]: *** [_module_/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux] Error 2
    make[1]: Leaving directory `/home/white/linux-3.2.9'
    make: *** [LINUX] Error 2
    Last edited by confusedoldman (2012-12-25 20:14:34)

  • RE : need assistance for the BAPI between Web methods and SAP

    *Hi All,*
    *I need help regarding the integaration between webmethods and SAP by using BAPI_PROJ_MAINTAIN.*
    *Details:*
    *From webmethods side they are maintaining 2 fields called Region and Sub region with parent and child hirearchy*
    *From SAP side we are maintaining the only one field called subregion.*
    *Need clarification:*
    *can we map field : subregion from webmethods to field : subregion in SAP without maintaing any parent and child hierarchy?*
    *Any imapact will be there on SAP system like Data loss and mismatch of the existing fields.*
    Thanks & Regards
    Raju M
    9944531233

    Between webpages is quite simple.  It sounds like your Xacute Query template and BLS are configured to receive the properties, so make sure the web page containing your applet uses an irpt extension and then add the following lines within your applet tags to receive the tokens for the query:
    <PARAM NAME="Param.1" VALUE="{LowRange}">
    <PARAM NAME="Param.2" VALUE="{HighRange}">
    Then call your page with a URL like:  ...Page.irpt?LowRange=0&HighRange=100
    If you look at the web page examples in the Module Library template downloads here on SDN you'll see examples like this, as well as others.

  • New to B2B - Need assistance for Starting programing in B2B

    Hi,
    I'm New to B2B. Anybody have links how to start programming in B2B. Prerequisites and how to download them. Currently im able to open b2bconsole.
    I need how to start programming. Any links plz...

    Oracle B2B is not a programming language or a programming based tool. It's a configuration based tool. All the standards have been already implemented as part of the product. You need to just configure it as per your need and you will be good to go.
    Please refer B2B user guide for detailed information about the product and it's offerings -
    http://docs.oracle.com/cd/E23943_01/user.1111/e10229/toc.htm
    Ready-to-use samples are available here -
    http://java.net/projects/oraclesoasuite11g/pages/B2B
    Tutorials are available at OTN B2B Home Page -
    http://www.oracle.com/technetwork/middleware/b2b-integrations/overview/index.html
    B2B product development team's blog is here -
    https://blogs.oracle.com/oracleb2bgurus/
    Regards,
    Anuj

  • Need Assistance for VBA function in oracle how to implement

    My very respected and Senior, regards,
    Sir, hope you will in best of health and wealth by the grace of God,
    Sir, i have a request problem as i m very junior against you and you have passed this time before many years ago as i m standing where. Sir i m a very junior developer of oracle and have a problem putting on your desk with the hope that you can help my as a boss.
    Sir me have to calculate yield of Bond using oracle form
    i have tried my best and tired
    there is a formulae in excel which give the Yield() when we provide the parameters
    and i need the excel formulae or the oracle calculation code of PLSQL for this.
    How can i get yield when i have price, coupon rate, frequency, issue and maturity of the coupon , coupon period , next coming coupon , and others detail.
    or tell me how to use EXCEL VBA for this problem ,
    thnx n regards,
    yours student, junior developer youngest brother
    Faraz
    How can I get the solution using Excel VBA function with oracle
    so that move values to excel calculate them and copy the result from excel to oracle forms

    Hi,
    for the Hex-Number-conversion see:
    [url http://psoug.org/snippet/Convert-Hex-to-Decimal-Decimal-to-Hex_78.htm] self-defined Conversion-Functions
    What number format do you have? YYYMMDD
    Or is there a Date corresponding to 1 and a number n represent the date n-1 days after day 1?
    Please describe further.
    Bye
    stratmo

  • Need assistance for iphone update

    The Firmware of my I phone3gs is 3.1.2. I have updated the itunes to the latest version9.0.3.15 I want to update my phone to 3.1.3. But when download finised, a window proped up "The Iphone " "could not be updated,because the firmware was corrupt. Disconnect and reconnect and try again". I have tried many ways and many times, but all don't work. I desperately need your help!!!

    Go easy on that.
    look here to see the troubble we have with 3.1.3
    http://discussions.apple.com/thread.jspa?threadID=2321833&tstart=0

  • Need assistance for hire

    Hello, I'm interested in contracting with a person who is familiar with creating plug-ins for Photoshop for a fairly simple plug-in (or that's what I'm thinking) that will work in Photoshop CS - CS5 on both Mac and PC.  The plug-in will search for the address of a dongle to see if it's plugged into the USB port.  If not, then the actions/script stop and a pop-up describes the problem.  If interested, please contact me at [email protected]  We can discuss timeline, rates, etc.  This is for a software (actions/scripts) add-on to Photoshop that already has a considerable amount of pre-sales and extraordinary interest.  I will only respond between now (Nov. 2, 2011) and Dec. 2, 2011.  Thanks!

    We might be able to help...I'll send you an email.

  • Need assistance for storage option.

    Hello!
    I am new to flash and I am trying to make an Anroid app to familiarise with Flex 4.6. This is an overview so you can have an idea of what I want to accomplish.
    Ok, so, the application that I am trying to create is a bike and running tracker. The idea is to track the distance and time but I want to achive there with "logs". For example; There will be two profiles (for now), one for running and the other for biking, these profiles will have a summary of your information (total running distance and time). Each profile will hold their respective logs (a good example for representation would be the Google Now Cards, each card will hold one log). Now, whenever you start the activity, you will "create a new log", this new log will record the information for that particular "run" or activity. When done the log will be saved and stacked with the other logs of their respective type (running or biking).
    My questions are:
    How can I save this information?
    Should I use an SQL Database, if so, how (multiple tables?)?
    Any other suggestions or tips that you can provide will be greatly appreciated.
    Thank you!

    Hi
    As you'll be using AIR (to publish for Android) you can use the built-in SQLite database for storage. see http://www.adobe.com/devnet/air/flex/quickstart/articles/simple_sql_database.html

  • Need assistance how to configure RDS on a standalone Server 2012 R2 not joined to a domain

    Hi,
    I need help on how to configure RDS on my standalone server 2012 R2 that is not joined to a domain.  I would also like to see the counterpart of Terminal Services Manager.
    I am familiar with Terminal Services on my old Server 2003 which I migrating.
    Thank you for your assistance.
    Sincerely,
    Ramon

    Hi,
    the dedicated RDS/TS forum is here:
    http://social.technet.microsoft.com/Forums/en-US/home?forum=winserverTS
    Some useful articles, which seem to answer your questions:
    http://support.microsoft.com/kb/2833839
    http://ryanmangansitblog.com/2013/10/30/deploying-a-rdsh-server-in-a-workgroup-rds-2012-r2/
    http://support.risualblogs.com/blog/2014/03/10/setting-up-a-2012-r2-rds-gateway-for-a-workgroup/
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Pre-Defined (Seeded ) Elements for US localization

    Hi,
    Are there any seeded oracle elements/other data provided for US localization payroll? If yes, how is this loaded into the Fusion Applications ?
    Regards.

    Hi,
    What kind of the seeded elements are you looking for? There are several seeded legislative related elements/fast formulas that Fusion US Payroll delivers. These elements/formulas drive legislative related calculations.
    Regards,
    Elena

  • Do you need adobe photoshop or elements for the ipod with video?

    I am so very frustrated. It took me three days to get quicktime and itunes installed. Finally figured that out. I go to hook up my ipod and it is not working. Ipod has not shown up at all. Instead I get the Windows Hardware finder trying to find the hardware/drivers for it. I have gone thru the 5 r's twice. I have tried different USBS. So this is what I need to know.
    Do I have 5th generation. I cannot find it anywhere on the box. I got it for xmas and says that it plays video and slide shows. It says version 1.0 and model MA146LL.
    On the box it list requirements. My computer meets the box requirements. But according to the website, 5th generation ipods need adobe photoshop or elements? Is this so? I don't have either would that be why it is not working?
    The 5 R's. I have tried twice. With no success. Do I have to go thru my entire computer and delete every little file that holds ipods and Itunes? (I had to do this to finally get quicktime installed.) Do I need to delete Quicktime?
    I have tried 3 usb ports none have worked. Why do they say try a different one?

    With iOS 5 you do not need a computer. The new iPod comes with iOS 5.  However, you have XP so you can install iTunes and sync with the iPod.  However, you computer /XPdoes not support the iCloud features.

  • How can I return my elements 13 windows (just bought) because I need it for a Mac (this elements also just bought).?

    how can I return my elements 13(just bought) because I need it for a Mac (this elements also just bought(.?

    Whats with the MBP lid? Dont close it ... if you're so concerned! Just go to System Preferences/Energy Saver and set it to how you like it.

  • Need Steps for Configuring BI 7.0 with ECC 6

    Hi All,
    I need steps for configuring BI 7.0 with ECC 6, Please if anybody has material, Please share with me...
    Regards,
    Kiran Telkar

    Hi,
    regarding bi7 and ecc6.0 Configruration,pls chk this
    https://www.sdn.sap.com/irj/sdn/developerareas/bi?rid=/webcontent/uuid/e78a5148-0701-0010-7da9-a6c721c6112e [original link is broken] [original link is broken] ...
    http://sheffield.gumtree.com/sheffield/57/13455557.html
    https://www.sdn.sap.com/irj/sdn/developerareas/bi?rid=/webcontent/uuid/e78a5148-0701-0010-7da9-a6c721c6112e [original link is broken] [original link is broken] ...
    *pls assign points,if links useful*
    regards,
    CSM Reddy

  • I accidentally purchased Adobe Photoshop and Premiere Elements for Windows, but I need it for Mac. Please advise.

    I accidentally purchased Adobe Photoshop and Premiere Elements for Windows, but I need it for Mac. Please advise.

    Return, cancel, or exchange an Adobe order

  • Needed RUNID for pernr after Payroll posting is done

    Hi,
    I need RUNID for the table PEVSH table so that i can get status.
    is there any link between pernr and RUNID. for eg in table PPOIX table there 5 primary keys. in that one is runid.
    how can we get runid's....
    if there is any logic plz let me know..
    Thanks
    Giri.

    Hi,
    thanks for the response....
    No that is not the answer.
    i dont know the runid's i want runid's for the pernr.
    What i need is once if the payroll is posted in FI then RUNID and Document numbers will generate automatically. I want that Runid and the relation between pernr and runid..
    Thanks,
    giri.

Maybe you are looking for