What is the correct step of posting to FICO?

Hi,
now my step is :
step1: PC00_M99_PA03_RELEA - Release Payroll
step2: PC00_M28_CALC - Start Payroll
step3:PC00_M99_CIPE - Create Posting Run ,  run "S-Creation of simulation documents"
step4:PC00_M99_PA03_END - Exit Payroll
step5:PC00_M99_CIPE - Create Posting Run ,  run "P-Live posting run"
I want to know if  step 4 and step 5  can  be exchange, meas before I Exit Payroll I run "P" posting?
thanks!

Here it goes
After live pay roll run - the Control Record will be in Release mode  - while simulation RPCIPE00 it shd be Exit mode than only simulation will happen
once the doc is create u can check FB03 whether the document is posted or not
FB08 is the tcode where the reverse document will happen
now when u reverse doc when there is any mis match of the data for the previous period right
say for the month of the Jan there is a Mis Match so u want to reverse te doc
so u reverse the doc and Delete the PY Results as said by jayanthi useing tcode PU01
and correct the data Note- u cannot delete the data if the Results are posted so u need to Reverse the doc than only u shd delete
later after corrections u need to run the pay roll again  with changeing the Control Record  PA03
try this
say u have reversed the doc  and deleted the Result  but here u need to delete all the results includeing feb also
correct the master data
go to pay roll driver slect the othere period and run the pay roll so now need not touch any control record
as the earliest retro date is set back u can rum the pay roll easily
But Reverseing the doc is some wht difficult so test in various angles and try...........

Similar Messages

  • What are the correct steps for installing Oracle Entitlement Server SSM?

    Can somebody explain what are the correct steps to install OES SSM 10.1.4.3? I have installed OES admin 10.1.4.3 and applied the CP2 patch. it is allowing me to open Entitlement Administration, where I can define the policy.
    Is it sufficient to have this Entitlement Admin to call the policy from BPM? Do I need a SSM ?
    When I try to configure Java SSM using ConfigTool.bat -process myssm_config.properties I am getting the following error
    Is Admin in the same BEA-HOME as SSM: [default: Yes]:
    Give the location of the Admin: c:\bea\ales32-admin
    Enter the identity directory name which will be used: [default: CoESSM_dir]:
    Enter the root node which will be used to create resources: [default: //app/policy/CoESSM_app]:
    Checking if default ARME port is free: 8000
    Generating policy files based on templates ...
    Checking if SSM instance already present
    Checking to see if SSM ARME port is free.
    Checking JDBC parameters...
    Checking to see if asipassword was run...
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.AlesConfig - You need to run asipassword first
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.ConfigurationTool - Error making changes: You need to run asipassword first
    I have tried running the asipassword utility, but still it gives the same error. Please let me know what am I doing wrong?

    Yes I have explored this pdf...but it doesn't tell how to use the policy from the BPM. My question is if I want to use the policies from BPM, then do I need to install the SSM ?
    If yes, what are the correct steps of installation ?
    I am getting the errors while configuring the Java SSM.
    Is Admin in the same BEA-HOME as SSM: [default: Yes]:
    Give the location of the Admin: c:\bea\ales32-admin
    Enter the identity directory name which will be used: [default: CoESSM_dir]:
    Enter the root node which will be used to create resources: [default: //app/policy/CoESSM_app]:
    Checking if default ARME port is free: 8000
    Generating policy files based on templates ...
    Checking if SSM instance already present
    Checking to see if SSM ARME port is free.
    Checking JDBC parameters...
    Checking to see if asipassword was run...
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.AlesConfig - You need to run asipassword first
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.ConfigurationTool - Error making changes: You need to run asipassword first
    I have tried running the asipassword utility, but still it gives the same error. Please let me know what am I doing wrong?

  • Transfer ADOBE creative Suite from an old Mac to a new Mac, I have the code but I don't have a CD. What are the correct steps?

    Hi
    I bought a new Mac and I want to transfer my Adobe Creative Suit CS6 to it from my old one. What are the correct steps? Please note that I don't have a CD because I downloaded it via the net. It was an upgrade for the student edition. I heard something about deactivation and reactivation but I don't want to do something wrong then lose my precious software. Please help. Thanks.

    You can download the software and install it using the page linked below.
    CS6 - http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html
    You are allowed to have the software installed and activated on two machines, so there should be no reason to deactivate it on your other machine, or at least you can wait until you see it loaded and working on the new one.

  • What are the correct steps for installing SP1 over Sharepoint 2010

    Hi,
    I have SharePoint 2010 (Release To Manufacturing) environment and am planning to to upgrade it to SP1. May I please know the correct steps
    to install SP1 on to my environment(2WFE + 2APP servers & 64 bit OS).

    SP2 provides key updates and fixes across our servers, services and applications including security,
    stability, and performance enhancements and provides better compatibility with Windows 8, Internet Explorer 10, Office 2013, and SharePoint 2013.
    also your Sharepoint is upto date version, you will get all the functionality which
    you will losing since you are prior to SP1.
    i.e Site Recycle bin,
    Content Deployment fixes, . you can go throw all the kB articles which will tell you what fixes in it.
    http://blogs.technet.com/b/stefan_gossner/
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • What are the correct steps to signing a token using SHA1 in PKI

    I am implementing a PKI solution. My encryption of a clear text token is done as follows:
    public static String encrypt(String token) throws Exception {
              Cipher cipher = Cipher.getInstance("RSA/NONE/PKCS1Padding", provider);
              cipher.init(Cipher.ENCRYPT_MODE, publicKey);
              byte[] stringBytes = token.getBytes("UTF8");
              byte[] raw = cipher.doFinal(stringBytes);
              // BASE64 encode the result
              String s = encoder.encode(raw);
              // URL Encode
              String senc = URLEncoder.encode(s, "UTF-8");
              return senc;
         }Now this is what I am doing in my code to sign the message..
    public static String sign(String token) throws Exception {
                    Signature signer = Signature.getInstance("SHA1/RSA", provider.getName());
              signer.initSign(privateKey);
              byte[] stringBytes = token.getBytes("UTF8");
              signer.update(stringBytes);
              byte[] signature = signer.sign();
              // BASE64 encode the string result
              String s = encoder.encode(signature);
              String senc = URLEncoder.encode(s, "UTF-8");
              return senc;
         }Please look at the method sign() and inform me if I am doing the following in the sign() method..
    I am being asked to hash the clear token with SHA1 and then use the private key to encrypt it with RSA.
    In my method I am signing the token using the private key but it looks like I am not hasking the token first and then signing it with the private key.
    Can someone please provide me with a code snippet where in I am first hashing the token using SHA1 and then signing the key with my private key..
    Thanks in advance..

    Thanks a ton. I am using BC provider but I will switch to SHA1withRSA.
    I read that Signature.update() does that but had to confirm with the experts on this excellent forum.
    I do a bit of PKI implementation with various vendors every once in a while at work. I love this area of specilization and would love to gain proficiency on Security and Cryptography. Are there any good resources for people like me. I usually benefit from sample scenarios and code.
    Thanks in advance..

  • What is the correct way to create links to my website?

    Hi
    My site is finally finished and I am now looking to list it on various directories on the internet to generate links to my site.
    When my site opens in a browser it shows up as http://ateccomputerservices.co.uk
    I know this question has been asked many times on the internet but what is the correct way to post my link?
    I know I should be consistent and use www or not on every link but none of the articles tell me whether I should use http:// or not when linking.
    So for example, should I use...........
    http://ateccomputerservices.co.uk
    or
    http://www.ateccomputerservices.co.uk
    or
    ateccomputerservices.co.uk
    or
    www.ateccomputerservices.co.uk
    and should I put /index at the end?
    Once I've decided on which link to use should I redirect all the other addresses to the main one?
    I'm pretty new to web design so I need some advice from some seasoned experts
    Thanks for taking the time to read my questions!

    When you browse to http://ateccomputerservices.co.uk and to http://www.ateccomputerservices.co.uk do you get the same page?  Most hosts will automatically create a CNAME record for both 'www.example.tld' and 'example.tld' when the hosting account is created, but not all do.  If that second CNAME record is not created, then you must always use the "www" prefix.
    If the reference to your site is a text reference only, then you could just use 'www.ateccomputerservices.co.uk', but if it's a link you should always make the LINK part (the HTML href attribute's value part) as a fully qualified URL, i.e., 'http://www,ateccomputerservices.co.uk' or 'http://ateccomputerservices.co.uk':
    <p>Click <a href="http://ateccomputerservices.co.uk">here</a> to link to my site .</p>
    When a browser requests that domain from the server, the server will fetch the first file it finds with a 'default filename' (usually 'index.html' or 'index.php' or 'home.html' or...) and upload that to the browser, so there is no need to further specify the filename - the default is when no filename is given.
    Once I've decided on which link to use should I redirect all the other addresses to the main one?
    I'm not sure what you are asking here....
    I'm pretty new to web design so I need some advice from some seasoned experts
    In the immortal words of comedian Myron Cohen, "everybody gotta be somewhere".

  • I'm a newbie to Blackberry - What is the first step to correctly using the instrument ?

     I'm a newbie to Blackberry - What is the first step to correctly using the instrument ?
    I just acquired my first blackberry phone  model-9810. What are the different simple  steps or the procedure that I should follow  to correctly use this instrument, i.e., telephone features first, internet features later. Your assistance to a newbie is highly appreciated.     All the best!  
    Solved!
    Go to Solution.

    Yes.
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • Hi there. I bought and downloaded photoshop elements 13 today. When I tried to set it up and was prompted for the serial number, the one I was given and subsequently entered ( correctly ,I checked numerous times) was seems invalid. What's the next step?!

    hi there, I bought and downloaded Adobe photoshop elemts 13 today. When trying to set it up, I was prompted for the serial number which upon being entered was deemed invalid. I know the serial number is the correct one. What is the next step, how do I contact Adobe store?!?

    Error "The serial number is not valid for this product" | Creative Suite
    if that doesn't help, contact adobe support by clicking here and, when available, click 'still need help', https://helpx.adobe.com/contact.html

  • What are the installation steps for Oracle Fusion HCM

    Hi all
    I will like to ask, what are the installation steps for Oracle Fusion HCM as well as can it work on Windows or only on virtual machine?
    Thanks

    If you're looking to install Fusion HCM, your best bet is to install on linux, eg, Oracle Enterprise Linux. It's up to you whether you put that in a Virtual Machine or not. I don't think Windows is an available platform for Fusion Apps at the moment, although am prepared to be corrected if you find anything to the contrary!
    If you're looking to do an install on your own PC/laptop, you're probably out of luck - you'll be needing around 128GB of RAM. Check out this post:
    http://onlineappsdba.com/index.php/2011/11/02/fusion-applications-128-gb-memory-and-500-gb-disk-space-are-you-ready/
    Atul has also posted some good stuff on installing:
    http://onlineappsdba.com/index.php/2011/06/15/install-oracle-fusion-applications-in-10-steps/

  • On my i pad mini what is the correct procedure to LOCK our IPAD MINI for automatic i cloud back up ?

    on my i pad mini what is the correct procedure to LOCK our IPAD MINI for automatic i cloud back up ? I am never sure the back up is working. It checked the owner manual but did not find what I need. Can someone give mt the step by step "how to" help so That I know everything is completely backed up to i cloud
    thank you
    olefuzz0115

    Are you plugging in every night, locking the iPad and connected to WiFi? Are you meeting all three requirements?
    Well that is what I do and it works for me because I can see the next day that the new backup shows in Settings>iCloud>Storage and Backup>Backup Now. If you look at my screenshot - you will see that I experimented to make sure that it would work. I responded on July 3 at 12:24 PM when you posted. Then I locked the iPad, plugged it in and waited for about 30 minutes before I unlocked the iPad to see if it backed up. The screenshot shows the backup was completed at 12:44 PM on July 3.
    I also backup with iTunes and I almost never auto backup. I just initate the back up on my own. But the instructions that I posted are right from the settings. You can read it for yourself in the screenshot.
    You do have to wait for at least 24 hours before the next backup will take place, but if you are getting a message that you haven't backed up a week later, I can't explain that.
    Dont trust that message. Look and see what the date of the last backup was. That's the only way to know for sure.

  • What's the correct behavior in Win8.1/Win10, when VOIP is conecting and then press Power to enter into connect standby?

    what's the correct behavior in Win8.1/Win10, when VOIP is conecting -> then press Power to enter into connect standby? does VOIP need disconnect after press power key?
    test steps is :
    1). Start VOIP call with Metro Skype in win8.1 or win10.
    2). System enter Connect standby (by press power button)during VOIP establish by Skype or LYNC.
    does VOIP need disconnect or still in connection? what's the correct behavior in win8.1/win10.

    Hi wangjingz,
    From your post, it would be better ask this to the WDK and driver development forum. This forum discuss  application compatibility testing, common compatibility issues, and best practices for creating Windows-based applications. So your post is off
    topic here. Thanks for your understanding.
    Best regards,
    Shu Hu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • What is the correct procedure for upgrading to aperture 3.4

    I am working in South Sudan and am shortly going to be in a place where I can download all the updates. The last time I did an update was around 2 weeks ago.
    I presume that there will be updates for Mountain Lion, iPhoto and Aperture, plus a whole pile of iOS updates. From the support questions I see that there is a number of people having problems.
    I presume that the first thing to do will be to rebuild the library of aperture.
    What is the correct procedure after that?

    If I do an upgrade through AppStore, and find it does not work, do I uninstall first by removing to trash? What do you mean by revert to an earlier version, and which previous version of Aperture should I use.
    Neville,
    So you did buy Aperture from the AppStore?
    Then move the Aperture application to the Trash, but do not empty it, just in case
    Sign into the AppStore and reinstall. In this case you do not need to revert to an earlier version. If the AppStore installer does not find an Aperture in your Applications folder, it will have to make a full install, and no incompatible frameworks should remain, as is the problem with the partial upgrades right now.
    Yes, I have a bootable clone,
    And have you checked, if you really can boot from your clone? Just being very cautious.
    Do you use facebook? Some posters are having problems, even after reinstalling, if the want to publish to Facebook. Post back, if you encounter that problem.
    Good Luck
    Léonie

  • What is the correct procedure to connect and collect events from IPS through SDEE

    What is the correct procedure to connect and collect events from IPS through SDEE?
    We are a 3rd party application, that needs to collect and analyze the IPS events for a client.
    Currently the approach we are following is
    1) get a SubscriptionId using the URL below
    https://IP_Of_IPS/cgi-bin/sdee-server?action=open&events=evIdsAlert&force=yes
    This gets us a subscriptionId which is used in step 2
    2) Collect events from the url below
    https://IP_Of_IPS/cgi-bin/sdee-server?confirm=yes&action=get&subscriptionId=sub-sample&startTime=1362699903575432000
    a few more notes here are
    - starttime is current time in nanoseconds
    the peculiar problem here is that, even though we specify todays date, SDEE returns us the events from mid Feb (today is march 7)
    we did try a few combinations, but are out of ideas.
    any help or direction would be appreciated

    This is more an application issue than an IPS issue.
    Have you compared your app against other apps [IME]?

  • What is the correct way to upgrade 5.0.4 to 5.1 Universal?

    I just received Final Cut Studio Universal, and I have Final Cut Pro 5.0.4 installed what is the correct way to upgrade all the Final Cut Studio applications? Do install over or delete each application and then reinstall?
    As always thanks in advance for reading and replying to my Post,
    Sebastian

    WHEN I do it, I'm going to archive what's necessary and desirable to keep, erase my hard drive, reinstall Tiger, do the upgrades, then install 5.1 clean and do the upgrades.
    Might sound like overkill, but I really love a clean, fast machine and nothing does it better!

  • Rebuilding iTunes Library...What is the next step ?

    Hi:
    I tried follwoing your advice.
    I can do the Ctrl-A to select all songs in the iTunes libary.
    I can right-click and select Delete,
    but when I do, I do not get the 3 options that you mentioned
    (Cancel, Keep Files, and Move To Recycle Bin)
    I get a dialog box stating:
    Are you sure you want to remove the selcted songs from your iTunes library?
    These songs will also be remove from any iPod or iPhone which synchronizes with your iTunes library.
    Why am I not getting the options you stated above ?
    I have seen you oprions on a Mac at best Buy, but I am running an HP laptop under Vista Home Premium.
    Then has a Remove or Cancel button to be clicked.
    If I follow through with the above, will it wipe out my music library ?
    How do I go about rebuilding the databse ?
    Thank you
    DaleB
    HP dv6500z laptop Windows Vista
    ==========================================================================
    Toocan
    Posts: 54
    From: Gauteng, South Africa
    Registered: Jul 23, 2008
    Re: iTunes forgets my CD files...how do I rebuild tune database?
    Posted: Aug 17, 2008 10:27 PM in response to: DaleB Reply Email
    Sorry DaleB, I have redone my library so many times, I forgot about this prompt. Just click 'yes'/'remove' to that question.
    Reloading the library will only make your iPod resync again, thats all.
    Intel Windows XP Pro P4, 3.4GHz, 3GB RAM, XP SP3 - iPod 80GB Classic
    ===========================================================================
    DaleB
    Posts: 145
    Registered: Jan 18, 2006
    Re: iTunes forgets my CD files...how do I rebuild tune database?
    Posted: Aug 18, 2008 4:02 AM in response to: Toocan Reply Email
    Hi:
    You tell me to click "Yes" / "Remove" when prompted by iTunes with
    "Are you sure you want to remove the selcted songs from your iTunes library?"
    but when I do, I do not get the 3 options that you mentioned
    (Cancel, Keep Files, and Move To Recycle Bin) ?
    What is the next step ???
    I don't want to accidentally erase my Library.
    Thank you
    DaleB
    ==============================================================================
    DaleB
    Posts: 145
    Registered: Jan 18, 2006
    Re: iTunes forgets my CD files...how do I rebuild tune database?
    Posted: Aug 18, 2008 4:13 AM in response to: Toocan Reply Email
    Hi:
    A related issue.
    I made a copy (backup ?) of the Music folder in Windows Vista Home Premium 32-bit OS, to my Desktop. If something corrupts the Music in iTunes, will this be a "good enough" backup to be able to restore the music by moving it back into the Music folder, or will soemthing be missing ?
    Thanx !
    DaleB
    ==============================================================================

    What is it you want to do? If you want to clear your library and start it over with the same media files already on your computer, the way you are doing it is both more work and dangerous (you could lose files accidentally if you hit the wrong button).
    Assuming you backed up your library elsewhere, you will have an "iTunes Music.itl" file, or at least you do with XP. I am not sure if Vista works any differently. This is the file that is the database file that contains all the info about what is in your library, playcounts, ratings, etc. If you don't have that backed up somewhere else with your library, you should do that. If you periodically back up just that file, you can rebuild your library assuming the media files are not lost.
    So to clear our your current library, simply grab the iTunes Music.itl file in your iTunes folder and drag it to the desktop or the trash. Open iTunes and you should now see a blank library. Close iTunes, you will find a new iTunes Music.itl file has been created (representing the new blank library. To restore your old .tl file, simply drag your back up copy and overwrite the newly created blank library iTunes Music.itl file. That's it.
    Alternatively, you can File -> Import the .xml file that is also created and maintained by iTunes in the same folder as the iTunes Music.itl file. But Apple does state the XML file doesn't quite have everything contained in the iTunes Music.itl file, although it isn't clear what exactly is missing, at least not to me.
    Cheers,
    Patrick

Maybe you are looking for

  • Dml error logging: can we pass source column values to ora_err_tag$

    Hi Experts, We can set ora_err_tag$ values while implementing dml error logging feature. Can we pass source column values to ora_err_tag$ field of error table? Thanks, Dhiraj

  • Problem with SCA check in

    Hello, I am trying to configure the NWDI. I have configured the SLD and have created Domains and Tracks. I am now trying to check in SCAs through the Transport studio but I dont find any SCAs to check in. I read in some of the posts that we need to m

  • Using DBCO with a non 'Z' table

    Hi all, I need to access a table in an Oracle DB. the connection in transactioncode DBCO is created. But when I try to select from table 'FTTH' i get the message ' "FTTH" is not defined in the ABAP Dictionary.........'. I have been told that the tabl

  • P7NGM-digital : audio over HDMI ?

    Hello, I read elsewhere that for this board, P7NGM-digital, audio over HDMI was not possible ? Is it true ? As it is not working for me. JP

  • Compare binary file

    Hi, I am using LV 8.5.1. Would like to know, is there any method can compare 2 binary files? Same function as command prompt below: fc /b "file 1 path" "file 2 path" First do not consider use the system exec.vi. Appreciate your feedback. Thanks. Solv