Off-cycle not getting the amount in /560 , /101

Hi,
I have set up a new off-cycle reason and assigned a wage type to it.
When i run the off-cycle workbench, the amount in /559 and /560 remain 0
What am i missing?
thanks

Hi
I think the infotype you have to maintain is IT15.
Check the wage type you included for the person it is correct and for the person it is incorrect.
I am now guessing really weird guess as i dont know what you are maintaining.
Well try this.
<b>Reminder : Points should be given on answers.</b>

Similar Messages

  • Guided access has Ben activated no password I can not get the red slider bar to shoe up when I hold the off and the home bottom down, it comes back to sarfri , I also tried  over ten times to enter a passcode, but no go

    Guide access has been activated, never set a pass word,I can not get the red slider to come up by holding the off and home button, tried entering a wrong pass word 10 time to reset it but it will not . Can only use Safari.

    Step by step, how did you arrive at seeing this agreement?

  • TS1398 my iPad isn't accepting the wifi code - states it is wrong password, though it is the same on my iPhone and laptop. Toggled wifi off/on, tried 'forgetting network' and not getting the option. IP address etc fields all blank

    my iPad isn't accepting the wifi code - states it is wrong password, though it is the same on my iPhone and laptop. Toggled wifi off/on, tried 'forgetting network' and not getting the option. IP address etc fields all blank

    WiFi Troublshooting
    iOS: Troubleshooting Wi-Fi networks and connections
    Is this happening with one particular network or with all?  Make sure iOS is updated on the device.
    Try this:
    Reboot ipad by pressing and holding both the home and sleep/wake buttons at the same time until the apple logo appears on the screen, then let go. Then try to connect to network.
    Go to settings, Toggle airplane mode on/off. Make sure bluetooth is off. Turn on wif (airplane mode off). Try to connect.
    Reset Network Settings
    Go to settings/general/reset/reset network settings. Then try to connect to network.
    If its your home router, then reboot router by unplugging for 5-10min. (do this while you're resetting network settings).
    If problem persists, then check for firmware updates on your router.(you check router manufacturer support website for downloads and instructions).
    Wifi Settings greyed out or dim
    http://support.apple.com/kb/TS1559
    Recommended wifi settings
    http://support.apple.com/kb/HT4199

  • I can not get the ringer symbol off of my home screen on a frequent basis.

    I can not get the ringer symbol removed from my home screen on a frequent basis.  I have tried pushing the volume keys and the mute button, but nothing helps. 

    Hold Sleep Button with Home Button toghether until it restarts Always it takes 8 to 15 seconds, after it restarts leave the sleep button and remember do not leave the home button it automaticlly switches to DFU mode.

  • Iam not getting the data on screen after using the user exit zxpadu01

    Dear Freinds
                As per my requirement when the user enters value Ansal  it should get defaulted to Amount field (bet01 ) based on the wage type
    i have written calculation ( q0008-bet01 = ansal/100) before it getting defaulted to bet01, i found that value is not getting default  on the screen for bet01 once i enter value for Ansal , please any body correct my code
    in   ZXPADU02 i have written the code as  below :
    data : wa_p0008 like p0008,
            i0008 like p0008,
           l_v_ANSAL type ANSAL_15,
           l_v_amount type PAD_AMT7S.
    CASE innnn-infty.
    when '0008'.
    CALL METHOD cl_hr_pnnnn_type_cast=>prelp_to_pnnnn
    EXPORTING
    prelp = innnn
    IMPORTING
    pnnnn = wa_p0008.   -- HERE I GOT ALL THE DATA EXCEPT BET01
    if wa_p0008-lga01 = 'MFPY'.
    l_v_ansal =  wa_p0008-ansal.
    l_v_amount = l_v_ansal / 100.
    move l_v_amount to wa_p0008-bet01.
    CALL METHOD cl_hr_pnnnn_type_cast=>pnnnn_to_prelp
    EXPORTING
    pnnnn = wa_p0008  --- HERE I CAN SEE EVEN THE BET01 IS FILLED
    IMPORTING
    prelp = innnn.         --- HERE I CAN SEE LGART BUT NOT AMOUNT VALUE
    endif.
    when others.
    endcase.
    IN ZXPADU01 I HAVE WRITTEN AS BELOW:
    data : wa_p0008 like p0008,
            i0008 like p0008,
           l_v_ANSAL type ANSAL_15,
           l_v_amount type PAD_AMT7S.
    CASE innnn-infty.
    when '0008'.
    MOVE-CORRESPONDING  innnn to wa_p0008.
    CALL METHOD cl_hr_pnnnn_type_cast=>prelp_to_pnnnn
    EXPORTING
    prelp = innnn
    IMPORTING
    pnnnn = wa_p0008.
    if wa_p0008-lga01 = 'MFPY'.
    l_v_ansal =  wa_p0008-ansal.
    l_v_amount = l_v_ansal / 100.
    move l_v_amount to wa_p0008-bet01.
    CALL METHOD cl_hr_pnnnn_type_cast=>pnnnn_to_prelp
    EXPORTING
    pnnnn = wa_p0008   --- I CAN SEE ONLY WHEN I COME AGAIN
    IMPORTING
    prelp = innnn.
    endif.
    when others.
    endcase.
    Now my problem is as follows :
                   i have entered the value for Ansal (ex: p0008-Ansal = 1000) ..........and i say enter then i should found the calculated value for the ansal through my coding
    and it should  display in bet01 as 10 ( q0008-bet01 =  p0008-ansal /100)
    but i dont find the value 10 being displayed for the field bet01 on the screen  when
    user enters Ansal  as 1000 .........even then i have saved it to test the scenario......
    now i came in displayed mode (pa20 ) for the infotype 008 for the same personnel no for the same  dates .....where i created the record........i found that the value
    bet01 is there i.e i can see  the value bet01 as 10 ( my requiremnt here matching)
    but when the user say enter during the time of creation of the record the value
    bet01 is not getting defaulted with 10 .........why iam not able to understand
    PLEASE ANY BODY HELP ME IN THIS REGARD 
    regards
    shanti.

    Hi Pranesh,
                   i have used the logic which you hav given as below
    in ZXPADU02
      FIELD-SYMBOLS <fs>  TYPE ANY.
    ASSIGN ('(MP000800)Q0008-betrg') TO <fs>.
    if <fs> is assigned.
    <fs> = l_v_amount .  ---  amount as (ansal /100 i.e 1000/100 = 10) 10
    endif.
    still iam not getting the data for the field bet01
    this is the coding i am using
    data : wa_p0008 like p0008,
            i0008 like p0008,
           l_v_ANSAL type ANSAL_15,
           l_v_amount type PAD_AMT7S.
      FIELD-SYMBOLS <fs>  TYPE ANY.
    CASE innnn-infty.
    when '0008'.
    MOVE-CORRESPONDING  innnn to wa_p0008.
    CALL METHOD cl_hr_pnnnn_type_cast=>prelp_to_pnnnn
    EXPORTING
    prelp = innnn
    IMPORTING
    pnnnn = wa_p0008.
    if wa_p0008-lga01 = 'MFPY'.
    l_v_ansal =  wa_p0008-ansal.
    l_v_amount = l_v_ansal / 100.
    move l_v_amount to wa_p0008-bet01.
    ASSIGN ('(MP000800)Q0008-betrg') TO <fs>.
    if <fs> is assigned.
    <fs> = l_v_amount .
    endif.
    CALL METHOD cl_hr_pnnnn_type_cast=>pnnnn_to_prelp
    EXPORTING
    pnnnn = wa_p0008
    IMPORTING
    prelp = innnn.
    endif.
    when others.
    endcase.
    please help me as iam still not getting (value in bet 01) when i press enter once i enter value in ansal feild.
    regards
    shanti.

  • I have Adobe Photoshop Elements 10. It came installed on my HP Desktop. I am can not get the warp text tool to work. It has worked in the past. Once I click warp text, the little window does not pop up, and if I try to do anything else after I click warp

    I have Adobe Photoshop Elements 10. It came installed on my HP Desktop. I am can not get the warp text tool to work. It has worked in the past. Once I click warp text, the little window does not pop up, and if I try to do anything else after I click warp text, it wont let me. Just sounds the ding, alert, can still slightly navigate the program but can not use any other tools after clicking warp text. I just have to open task manager and close the program. not sure if I'm doing something wrong or maybe I just need to uninstall and re install. Having trouble finding out how to uninstall and reinstall because the program came pre installed on my desktop.

    It actually sounds like the warp text window is opening off screen.
    Resetting the photoshop elements 10 preferences should fix it.
    *Press and hold the Shift+Ctrl+Alt keys just after you start the launch of the photoshop elements 10 editor
    *Keep holding the keys down until you get a dialog asking if you want to delete the adobe photoshop elements setting file
    *Press Yes

  • Hi help unlock the phone happened after we installed a new programa we can not get the activation password and ID, I know and still does not stop the phone bought in Israel and what documents should be sent to confirm that my phone Please read through the

    hi help unlock the phone happened after we installed a new programa we can not get the activation password and ID, I know and still does not stop the phone bought in Israel and what documents should be sent to confirm that my phone Please read through the help

    What I am saying is ..........
    The iPhone HAS to be active making calls on the UK carrier network for the carrier to identify as "theirs" and therefore eligible for the Carrier to unlock
    The way to achieve this is to use a PAYG sim making and receiving calls to establish a customer relationship  with the Carrier and then follow the Carrier's process to unlock
    With a PAYG it usually means adding a specified (by the carrier ) amount  usually £15 /£20 depending on the carrier
    This is how O2 function and according to Gemma  this is how Vodafone work

  • I do not 'get' the basic snowflake / dimension / fact thing....

    Hello,
    sorry for total newB question, but if I have a table that is the most detailed level of data, do I have to create a datawarehouse copy of this that summarises it, or can OBIEE do that for me???
    I have read the documents / by example stuff but I am struggling with this most basic thing, even though the more complex areas seem easy.
    So what I am asking is, if I have a table, say 'user_trans' - do I have to write something in OWB or similar to turn this into a number of heavily summarised tables, say - user_trans_by_state, user_trans_by_period OR is there a way with the tool itself that I can take the basic table, import into the physical layer in the inventory and get OBIEE to do these summarisations for me - by generating dimensions??
    So to illlustrate, say user_trans has =>
    amount, user name, period, state
    Do I have to write something in a DW to generate
    sum(amount), user name - for user_trans
    sum(amount), state - for trans_by_state etc
    Or is there a way in the repository to do this, if so can someone please talk me through it in basic terms???
    Thanx

    Try the links detailed on an earlier answer....
    Tutorials of OBIEE?, Oracle By Example OBIEE?
    And on basic principles you are looking at a 1 => Many join in a star structure, the 1 being the centre or base of your star.
    In terms of the rest, install yourself a test area and work through the Oracle By Example stuff - if you do not get the concept maybe it will sink in with the practise....
    hope this helps - and good luck!
    R.

  • Why can I not get the creative cloud to install on my MacBook Air? I keep getting an error saying I need to download a new copy

    Why can I not get the creative cloud to install on my MacBook Air? I keep getting an error saying I need to download a new copy

    Please read https://forums.adobe.com/thread/1499014
    -try some steps such as changing browsers and turning off your firewall
    -also flush your browser cache so you are starting with a fresh browser
    http://myleniumerrors.com/installation-and-licensing-problems/creative-cloud-error-codes-w ip/
    http://helpx.adobe.com/creative-cloud/kb/failed-install-creative-cloud-desktop.html
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • My aperture library will not open after restoring my whole computer after a kernal panic.  I can not get the Aperture troubleshooting menu to open...any help?

    My aperture library will not open after restoring my whole computer after a kernal panic.  I can not get the Aperture troubleshooting menu to open...any help?

    Leonie,
    Fisrt let me thank you for your reply and assistance!  So here is the problem with so more detail...I was not sure I was going to get any replies ; )
    I restored from a time machine back up.
    History of Failure:
    I was trying to launch Aperture when the kernal panic occured.  My computer had been closed, and asleep and the battery was dead.  I plugged in charger and it was restoring/waking up after being asleep/shutting down from dead battery.  I launched Aperture from the dock and as soon as it opened the kernal panic occured.  After that the computer would not turn on.  It would try to boot then it would shut off.  I even tried to safe boot to no avail.  I went to the Apple store and they told me that the only thing I could do was restore whole computer from back up.  So thats what I did.
    Since then my previous aperture library: "2011" will not open.  I have created a new aperture library "2012", and it runs fine.  I have added new photos for about the past month...no problems. 
    When I launch aperture with 2012 library then try to switch libraries, I get the following prompt: "The selected library is from an older version of Aperture and requires a relaunch to switch."  I choose "Relaunch" and I get the following warning prompt: "There was an error opening the database for the library “~/Pictures/Aperture Library 20111.aplibrary”."  The only option is "Quit"
    Both libraries are version 3.2.3
    Computer stats: 3.06 GHz Core 2 Duo, 8 GB 1067 MHz DDR3 RAM, OS X 10.6.8
    I have tried to launch aperture troubleshooting by holding option+command from both the aperture icon and from the library file, neither will launch the troubleshooting feature.
    I am ok with computers, but not a whiz (mechanical engineer)...to me it seems as though there is a corrupt path or file or some sort of "check" that is failing, becuase the failure occurs so fast after trying to launch aperture. Maybe that doesn't make any sense but just a thought.
    I hope that you may be able to provide some insight.  Thank you again for you time and I hope that you have a nice day!
    Mike

  • I can not get the iPad to connect to the internet thru the router it shows the modum but will not connect

    I can not get the iPad to connect to the internet thru the router it shows the modum but will not connect it keeps saying choose a netwokand the IP Address it automaticaly puts in is wrong?

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    Additional things to try.
    Turn Off your iPad. Then turn Off (disconnect power cord) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    On your iPad go to Settings > General > Reset > Reset network settings and see if that enables you to connect.
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
     Cheers, Tom

  • The bill document printed from a contract is not displaying the amount at i

    When we execute the print layout form a bill document from a contract is not displaying the amount at item level however the total amount of the document is correctly displayed in the button of the document.
    Thank you and best regards.

    Hi Alberto
    please check the field which has been mapped in the SAP Script and the Smart form.
    it must be the header amount field. you can replace it with the VBAP_NEtWR or similar fields like kzw1 if you have mapped the sub totla sot get the amount at item levels
    thanks
    akasha

  • Hi, i am working in E.C.C. 6.0 , IN SMARTFORMS i am not getting the fields

    Hi, i am working in E.C.C. 6.0 , IN SMARTFORMS i am not getting the fields from field list on/off?

    Hiii
    dont worry u will get fields but u wont drag and paste it in ur text
    regards
    Jaipal

  • I can not get the WiFi to sync to ipad mini

    i can not get the wifi to sync to my ipad mini. i have reset the setting 4 times and nothing i have turn my wifi off and on and nothing. i keep getting asked to retype my password and when i pressed join after it isnt enabled to connect help ?? do i need to take this in store ?

    I assume that you cannot connect to the internet because you don't sync to WiFi. Perform the following steps in the order listed and see if you can connect then.
    Go to Settings>WiFi>Tap the blue arrow next to your network name>Tap Forget this network in the next screen.
    Reset your router. Unplug it from power for about 30 seconds and then plug it in again.
    Go to Settings>General>Reset>Reset Network Settings.
    Reset your iPad. Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    Go to Settings>WiFi>Tap your network name, enter your password, tap Join.

  • Can not get the screenpicture to fit the screen.

    can not get the screenpicture to fit the screen. problem acurred after hooking up to an external screen. tried everything in screensettings, but the screenpicture is larger than the screen

    When you slide the cursor to the edge of the screen, does the screen image scroll, allowing you access to everything (menu bar, Dock, etc.) even though you can't see all of it at once?
    If it does, go to the Apple menu and open System Preferences > Trackpad. Is the box for "Screen zoom" checked, under "Two fingers"? If so, press the Control key and drag two fingertips downward (toward you) on the trackpad. Does the screen image zoom down to normal size?
    Another possibility is pressing Option+Command+8. If System Preferences > Universal Access > Seeing > Screen Zoom has accidentally been turned on, this will turn it off and return your screen to its normal size.

Maybe you are looking for

  • How do I move an app icon to my main home screen?

    I just got my first iphone today, and downloaded my first app.  It appeared on a screen, but not the screen I see when I access my phone.  How do I move it to that screen if there is room for it?

  • How do I print a label that has the artist/album on the side?

    I have tried printing labels with iTunes but these are apparently for the thin CD covers. I am looking for a way to use iTunes to print out labels that has the artist and album on the side for use with regular CD covers so that I can look at the case

  • Professional monitor a neccesity ?  if so, what do you use ?

    As a beginner , i've just learnt that what i see on my computer monitor is no indication of how it may look on a TV screen . If i wish to make a commercial quality DVD , i gather that a professional video monitor is neccesary .Have i understood corre

  • Keyboard lights on envy m6?

    r there anykeyboard lights on envy m6 notebook 4 night use? thankyou. cheryl_k

  • DB Freespace Monitoring

    Hi all, 11.2.0.1 Can you lend me your monitoring script the will also map  O.S. freespace against TS freesace?  Thanks. Sample : PROD-DB TABLESPACE TOTAL (Mb) USED (Mb) % USED CRITICAL FILESYSTEM FREESPC (Mb) AUTOEXTEND INDX 260 10 4 /u01 1,000 NO XD