Leaving Action executed in the Middle Of the Payroll Period

Dear All,
I am Trying to execute Leaving action For the Employee in the middle of the Payroll period thereby changing his Employee Group to Pensioner and also his payroll area to that of Pensioner.However the System is not allowing me to do so and is saying that Payroll area cannot be changed in the middle Of the Payroll Period.Plz Suggest what can be done so that the Leaving action Of the Employee can be executed in the Middle of the Payroll Period.
Thanks
Punam Jha

Hi,
In a payroll period, you can not include the same employee in two different payroll processing.  Hence, you can assign the new payroll area at the beginning of the next payroll period. Alternatively, execute the separation action with the last date of the pay period.
regards
Mohan M
Edited by: M Mohan on Dec 21, 2009 2:34 PM

Similar Messages

  • HP J6480 All in one leaves a line down the middle of the paper.

    When I use the feed mode the printer squeeks and protest leaving a line down the middle of the paper.  How can I get this resolved

    Hi there billba,
    This article covers clearing a carriage jam and gives steps used in clearing the carriage assembly. Give the steps a shot and let us know if it helps. Though it seems the product may need servicing.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • Can anyone tell me how to fix my iPod. I was updating it and I turned it off in the middle of the update. I tried to put it through a recovery on the iTunes but it keeps giving me 3194.When I turn it on it will go to a light blue screen.

    Can anyone tell me how to fix my iPod.I was updating it and I turned it off in the middle of the update. I tried to put it through a recovery on the iTunes but it keeps giving me 3194.When I turn it on it will go to a light blue screen.

    See the action for that error included here:
    iTunes: Specific update-and-restore error messages and advanced troubleshooting

  • User input in the middle of the loop

    How can I take user input in the middle of the loop and execute the rest of the loop?
    FOR .. LOOP
    User input…………;
    Update with User input;
    END LOOP;
    Thanks in advance.
    Edited by: Oracle_Power on Jul 29, 2009 11:36 AM

    Forms has no mechanism like that where you can prompt the user for input.
    An Alert is the closest thing, but alerts only accept three button pushes; no keyboard input is allowed.
    If you describe what you need, someone might help you redesign your code so it appears to act like a looping process.
    Edit: Thanks Andreas, your suggestion below is a good solution.

  • How to invoke a java application in the middle of the process

    In the middle of one process, I want to invoke a java application. After the java application, the process will continue and select a path based on the result of the java application. Which activity can be used to invoke a java application in the middle of the process?
    Thanks

    BPM Changes:
    1. Under 'External Resources' create a new resource of type 'Server Configuration'. Specify the host port and path of your servlet here. This will be invoked from your process. Lets name this configuration as 'myExternalConf'.
    2. Create an interactive activity say 'InvokeMyApplication' in your process. The main task of this application should be external task. (Implementation Type = External)
    3. Create the prepareMethod method say 'prepareExternal'. Set the arguments for this method as output arguments. These arguments will be available to you in your external servlet.
    4. Create the commit method say 'commitExternal'. Set the arguments as input arguments. The external servlet will return these arguments back to the process.
    5. Check the 'Use configuration' checkbox for your main task (external task). Select 'myExternalConf' here.
    Servlet changes:
    When the user executes your 'InvokeMyApplication' activity, he will be taken to the external servlet of your external application. You will be passed the currentActivity, currentParticipant, instanceID and one more argument (which I dont remember :( ) as url parameters.
    1. In this servlet, open a PAPI/PAPI WS session for the participant passed to the servlet as url parameter
    2. Use the currentActivity ( passed in url parameter), to call prepare method on this activity. This will return you with the arguments defined in 'prepareExternal' method.
    3. Using these argumets, or otherwise, you can do whatever you want in this servlet. When done prepare the arguments to pass back to BPM.
    4. call papiService.activityCommit and return the arguments.
    5. Flow goes back to your BPM application
    Some code that might help:
    Servlet calling prerpare:
    ProcessServiceSession papisession = null;
    try{
    papisession = initializePapi();
    fuego.papi.Arguments args = fuego.papi.Arguments.create();
    args = papisession.activityPrepare(activity, instanceId, args);
    Map<String, Object> argsMap = args.getArguments();
    return argsMap;
    protected ProcessServiceSession initializePapi(){
    Properties configuration = new Properties();
    try {
    InputStream inputStream = getClass().getClassLoader().getResourceAsStream("bpm.properties");
    if(inputStream == null)
    throw new IOException();
    configuration.load(inputStream);
    } catch (IOException ex) {
    log.log(Level.WARNING, "Could not load bpm.properties", ex);
    return null;
    Servlet calling commit:
    public void commitToALBPM(Map parameters){
    try{
    papisession = initializePapi();
    fuego.papi.Arguments args = fuego.papi.Arguments.create();
    Set s = parameters.keySet();
    Iterator propNames = s.iterator();
    while (propNames.hasNext()){
    String key = (String)propNames.next();
    String val = (String)parameters.get(key);
    args.putArgument(key, val);
    papisession.activityCommit(activity, instanceId, args);
    catch (OperationException e)
    HTH
    Satinder

  • How to Stop the process chain if it in the middle of the process?

    Hi,
    Is there anyway that i can stop the process chain if it is in the middle of the process already?
    Raj

    "Hi,
    First and foremost let me advice you to be very careful while doing this.
    You can start from SM37, find the process WID/PID then go to SM50 or SM51 and kill it. Once its done come back to RSMO and check the request, it should be red but again manually force to red and save by clicking on the total status button in the status tab. This shuld ensure that the process is killed properly.
    The next step will be to go to targets that you were loading and remove the red requests from those targets.
    Note: For source system loads you may have to check if the request is running in the source system and kill if needed and pull it again.
    But for BW datamart delta loads u may have reset the datamarts in case u are going to pull the delta again.
    Different Ways to stop process chain
    1)SM37 -->Kill Job
    2)SM50/sm66- ->Kill process
    3)RSPC>Job Log>Make the process RED forecefully.
    4)RSPC>Process chain> main Menu"Remove from Scheduling" OR
    5)se37-->RSPC_API_CHAIN_INTERRUPT
    give RFC BW system name(technical) and process chain name(technical)
    Steps 1 -3 stops the chain running in process
    Steps 4-5 stops the chain AFTER the current job which is running is completed as sucessful or Failure by nature.
    Rationale - 4-5
    This function will only remove the jobs from schedule, which did not yet run. It will not kill running jobs, as this may leave the system in an inconsistent state, moreover killing processes is possible for synchronous processes only anyhow. This means, that there will be no errors with interrupted chains, which on the other
    hand means an interrupted chain is not restartable. So for a running chain this function is intended to be an emergency break only. You can use it, however, to remove a scheduled chain from schedule, such that it does not start except by your product.
    Re: Kill a Job
    Re: Killing a process chain.
    How to stop a process in a process chain?
    Regards,
    JituK

  • Ok. So my iTunes started acting up a few months ago. ALL of the songs I purchased from the iTunes store stop in the middle of the song and then go back to the begining (I keep it on repeat one song by the way). Please help!!! (Windows 7)

    Ok. So my iTunes started acting up a few months ago. ALL of the songs I purchased from the iTunes store stop in the middle of the song and then go back to the begining (I keep it on repeat one song by the way). Please help!!! (Windows 7) I would really like to hear my songs all the way through, but I can't . I tried the "Convert Protected ACC files to Purchased ACC files fix" but it DIDN'T work. I don't know what to do. It does it when I transfer the music onto my Classic too.

    What do you mean "doesn't recognize"?

  • Why does my phone use data when hooked up to wifi in the middle of the night?

    My phone and my husbands phone both get charged with data usage even though they are hooked up to a wifi in the middle of the night. It has all added up to and overage charge this month. We have  never used this much data!

    sandybenzi, that's a good observation. Have you downloaded 3rd party applications to your device? If so, applications can update periodically. You may access the Google play store application to verify if  your applications are set up for automatic update.
    For more device support, click http://vz.to/1kDL3MI
    LasinaH_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • HT5055 Just updated to lion and my cctv access has stopped functioning all I get is a white screen in the middle of the control panel where the camera shots should be.  I think it is caused by JAVA but am confused as when i view on snow leopard it works 

    Just updated to lion and my cctv access has stopped functioning all I get is a white screen in the middle of the control panel where the camera shots should be.  I think it is caused by JAVA but am confused as when i view on snow leopard it works  can you help

    Open "Java Preferences" either from spotlight or your utilities folder...it's probably going to say you need to install a java runtime. Then just click install!

  • My Radio on my Nano won't pick up a signal.. I cennected my headphones and am in the middle of the city. Also my iPod keeps pausing every like 30 seconds.. What do I do?

    My Radio on my Nano won't pick up a signal.. I cennected my headphones and am in the middle of the city, so there are plenty of stations to find. Also my iPod keeps pausing every like 30 seconds when I try to listen to my music. I just got it for Christmas and already loaded it with songs.. What do I do?

    Push the headphone jack all the way in, you don't have it fully plugged in yet.

  • How can I set a passcode that is only required at certain times of the day. Ie: my child needs access for school use, but don't want her playing iPad in the middle of the night. I cannot identify a way to have the iPad turn off or require a password

    I cannot find a way to enable my child's iPad to require a passcode only at certain times of the day.
    Yes I have used the clock/timer/ countdown - great to restrict how many minutes of iPad usage they get a day.
    But as my child requires the iPad in school for class lessons the usage at school varies maybe 30 mins 1 day and a few hrs on other days
    I want the ability to say set the iPad to not work between say 7pm and 7am, ( unless a passcode is entered) so my child isn't playing games on it in the middle of the night...
    Apple I cannot see anything in the settings that performs this function
    Help

    You can Remote Lock his iPad with Find My iPad using a computer at whatever time you like.
    http://support.apple.com/kb/PH2700
    Note: The iPad may be disabled if he tries the passcode too many times.

  • Is there a way to force my iPad to shut down? I "slid" to turn off three hours ago. The "wheel" is still spinning in the middle of the screen.

    Is there a way to force my iPad to shut down? I "slid" to turn off three hours ago. The "wheel" is still spinning in the middle of the screen.

    Yeah, hold down the top Sleep button and the Home button simultaneously.  Continue to hold until the screen goes blank and the Apple logo appears.  Ignore the red slider midway through this process, just keep holding both buttons down until the Apple logo appears -- it takes about 8-10 seconds.  That should do a soft reset and fix your problem.

  • I just bought my ipod touch and i didnt mean to mess the password up but i did and now it is disabled and itunes wont let me restore it and it stops in the middle of the restoring process can anyone help??? please

    ok im in need of some help i had just bought a brand new ipod touch from walmart and when i got it home i was trying to cope with all the new things on it and i was just fooling around like figuring where things where at and i put a passcode on my ipod and i must of not typed it in right and now my ipods disabled because i tryed to many times and im at my tenth time and i misspelled it obvi and now i need help i plugged it into intunes put it into recovrey mode and then restored it and it stopped in the middle of the restore mode and now it wont finish and im still locked out of my ipod and i need help i mean i just got it and it would be nice if anyone knew that could help me.???? please i cannot  figure this out and usually i am very good at ipods and stuff but this time i am stummped and i dont want to call apple to hasel anyone ...anything thats helpful im grateful to hear thanks soo much
    -Kara :/

    Follow the instructions to the letter here >    iPhone and iPod touch: Unable to update or restore

  • I have an IPad 4.  After updating the system, when I try to look at picture on Facebook and make it larger, there is just a "circle" in the middle of the page instead of the picture.  Can anyone help me?

    I have an IPad 4.  After updating the system, when I try to look at picture on Facebook and make it larger, there is just a "circle" in the middle of the page instead of the picture.  Can anyone help me?

    Close all open apps by double-tapping the home button, then swiping up and off the screen with the app window (not the smaller icon).
    Reset your device: hold down the home button along with the sleep/wake button until the screen goes black and you see the Apple, then let go. (No data loss)

  • How can I see my document in the middle of the page ?

    Hi everyone,
    I just downloaded the trial of i-Work but I'm in trouble with Pages. Indeed I would like to see my white document, on which I'm writting, in the middle of my page. At the moment it is on the left, with grey on the right.
    And : 1- I don't want to have the whole page in white, that's to say I don't want to zoom in. 2- I don't want neither to put Pages'09 in the middle of my screen, surrounded by my background. 3- I don't want to use the full screen mode all the time. Actually, this is quite simple : I would like to have a presentation similar to Word (not because I can't forget Word, just because I feel more concentrated with this kind of presentation )
    I checked the user's manual, and I couldn't find the solution. So could someone help me ? Is it possible to have the page of our document in the middle of the Pages' screen ?

    Sorry if I seem picky but I believe using the right words makes it easier to communicate. The document isn't showing in a page. The document page is in a window. The page is placed to the top and to the left in the window.
    I also would like to have more space in the window on all the sides of the page. We can ask for it using this link: _http://www.apple.com/feedback/pages.html_

Maybe you are looking for