Oracle Payroll Register inconsistencies with Totals

We're running Oracle HRMS 12.1.3 and have 2 problems with the Payroll Register:
When Threads = 1, table PAY_US_RPT_TOTALS ends up filling up and they have to run repeatedly in order to get the Totals to be produced. (Also, Threads = 1 is not a viable long-term solution as we'll be adding an additional 13 Payrolls as of year end.
When Threads = 8, one of the worker/slave processes errors and those employees are excluded from the Payroll Register Details report. The table PAY_US_RPT_TOTALS is still populated and needs to be cleared periodically. The Totals seem to be okay.
The worker/slave process errors with:
REP-57054: In-process job terminated:Executed successfully but there were some errors when distribute the output
REP-50159: Executed successfully but there were some errors when distribute the output
REP-54002: file : Cache item is no longer valid
The only unusual thing about the way we run the Payroll Register is that multiple payroll runs for the same Payroll are run for the same pay period and check date, but with different Assignment Sets. These payrolls are run from BEE to Payroll to Prepayments and the Payroll Register as a single Assignment Set.
Thank you for any help you can give with this.

Hello AS
These are the warnings, you can see the same warning messages in Oracle seeded concurrent program.
Regards

Similar Messages

  • Oracle Payroll integration with Oracle Financials

    Dear Experts,
    I need a clarification on my new project... The client wants two separate instance in which they will use 12.1.3 for oracle hrms & 12.1.1 for Financials.
    The issue here is the payroll part..
    how could we achieve the payroll integration with financials...
    Pls let me know if any1 would have come across this scenarios..
    Guru K

    Hi;
    Please see:
         Oracle Payroll 'Costing Associated With the Financial Integrations' Frequently Asked Questions (FAQ) [ID 1377126.1]
    I belive its better to Rise SR and confirm your issue with support
    Regard
    Helios

  • Need Oracle Payroll SQL Query

    Hello,
    I need Oracle Payroll SQL Query with result:
    First_name, Last_name, Payment_amount, Pay_date, Payroll_Frequency, Employement_status
    Any Help would be greatful appreciated

    You will need the following tales.
    per_all_people_f, per_all_assignments_f,pay_run_results,pay_run_result_values
    Query would e something like :
    select papf.first_name,
             papf.last_name,
             prrv.*
    From  apps.per_all_people_f papf
             apps.per_all_assignments_f paaf
             apps.pay_run_results prr,
             apps.pay_run_result_values prrv
    Where papf.person_id = paaf.person_id
    and papf.business_group_id = paaf.business_group_id
    and papf.current_employee_flag = 'Y'
    and paaf.primary_flag ='Y'
    and paaf.assignment_type = 'E'
    and trunc(sysdate) between papf.effective_start_date and papf.effective_end_date
    and trunc(sysdate) between paaf.effective_start_date and paaf.effective_end_date 
    and prr.assignment_id = paaf.assignment_id

  • Third Party Attendance System Integration with Oracle Payroll

    Hi,
    How to integrate Third Party Attendance System like Bio-Metric System with Oracle Payroll. Please help me in this regard.
    Thanks in Advance,

    user644268,
    Depends on your exact requirements whether this attendance system is for the absense capture or work time logging. You need to be specific when putting up a scenario.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                               

  • Registering layers imported to Oracle via shp2sdo: problem with sdelayer

    Hi,
    I am using Oracle 9.2.0.5 and ArcSDE / ArcGIS 8.3 on a Windows 2003
    server. I have been loading shapefiles into Oracle using the SHP2SDO
    utility and have encountered a problem I didn't have to start off
    with.
    This is my methodology:
    1. Use SHP2SDO and SQLLDR to load spatial data into tables in Oracle.
    2. Execute the SDO_MIGRATE.TO_CURRENT('tablename','geom') function to
    migrate dataset to current version of Oracle.
    3. Attempt to register the dataset with SDE using sdelayer -0
    register.
    Doing it in this order results in an error when executing the sdelayer
    command, saying "Cannot create layer. Layer already exists.".
    If I do it in the other order - i.e. try to register the dataset
    before executing the migrate function - I get a much bigger error:
    Underlying DBMS error (-51)
    Cannot create layer
    ORA-29855: error occurred in the execution of ODCIIINDEXCREATE routine
    ORA-13249: internal error in Spatial index: [mdidxrbd]
    ORA-13249: Error in Spatial Index: index build failed
    ORA-13206: internal error [Tessellate] while creating the spatial
    index
    ORA-13249: Error in spatial index: [mdpridxtessellate]
    ORA-13200: internal error [ROWID:AAAH/1AAOAAA1dYAAC] in spatial
    indexing
    ORA-13019: coordinates out of bounds
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD_9I", line 7
    ORA-06512: at line 1
    (MDSYS.SPATIAL_INDEX)
    I am a novice at managing spatial data in Oracle, being more familiar
    with SQL Server, so I may be missing something quite basic. Early in
    the process of loading data I was able to both migrate and register
    the datasets, but now I am not able to...
    I understand this may be an ESRI problem rather than an Oracle one, but I am having no luck finding a solution at present. Any suggestions and advice would be gratefully received.
    Many thanks
    Sharon

    Sharon,
    Loading data into the ESRI format IS tricky. I'm not sure what projection you are using, but here is the order in which I have successfully loaded data. A very important step is step 3, as without data (at least with WGS84 and 8.3) the boundaries do not get registered correctly. Also, step 4 may no longer be required with the new shp2sdo tool, but it won't hurt anything:
    1.CREATE STRUCTURE - Login as GCM
    DROP TABLE VEHICLE_PARKING_AREA;
    CREATE TABLE VEHICLE_PARKING_AREA (
    PARKING_ID      NUMBER(38) NOT NULL PRIMARY KEY,
    OBJECTID      NUMBER,
    FNODE_      NUMBER,
    TNODE_      NUMBER,
    LPOLY_      NUMBER,
    RPOLY_      NUMBER,
    LENGTH      NUMBER,
    EOP_      NUMBER,
    EOP_ID      NUMBER,
    Shape_Leng      NUMBER,
    GEOMETRY      MDSYS.SDO_GEOMETRY);
    2. CD TO WHERE DATA IS AND UPLOAD DATA VIA DOS BOX USING SQLLDR:
    SQLLDR USERID=GCM/GCM CONTROL=VEHICLE_PARKING_AREA.ctl
    3. POPULATE SDO_GEOMETRY TABLE:
    DELETE FROM USER_SDO_GEOM_METADATA WHERE TABLE_NAME = 'VEHICLE_PARKING_AREA';
    INSERT INTO USER_SDO_GEOM_METADATA (TABLE_NAME, COLUMN_NAME, DIMINFO, SRID)
    VALUES ('VEHICLE_PARKING_AREA', 'GEOMETRY',
    MDSYS.SDO_DIM_ARRAY
    (MDSYS.SDO_DIM_ELEMENT('X', -180.000000000, 180.000000000, 0.000000050),
    MDSYS.SDO_DIM_ELEMENT('Y', -90.000000000, 90.000000000, 0.000000050)
    8307);
    COMMIT;
    --- AT this point, you can view the data in the Oracle Spatial Index Advisor...
    4. FIX GEOMETRY
    execute sdo_migrate.to_current('VEHICLE_PARKING_AREA','GEOMETRY');
    5. VALIDATE GEOMETRY (SAVE BUFFER - ALL SHOULD Be TRUE!)
    If you see something like: 13356 [Element <1>] [Coordinate <1>] instead of TRUE, it has problems!
    Fix it, and go on.
    SELECT c.PARKING_ID, SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(c.geometry, 0.000000005)
    FROM VEHICLE_PARKING_AREA c;
    6. CREATE SPATIAL INDEX
    DROP INDEX GCM.tvehprk_SPATIAL_IDX;
    CREATE INDEX GCM.tvehprk_SPATIAL_IDX ON GCM.VEHICLE_PARKING_AREA(GEOMETRY)
    INDEXTYPE IS MDSYS.SPATIAL_INDEX;
    -- PARAMETERS('SDO_INDX_DIMS=2 INITIAL=1K NEXT=1K PCTINCREASE=0');
    7. REGISTER FEATURE WITH SDE:
    sdelayer -o register -l VEHICLE_PARKING_AREA,GEOMETRY -e nls+ -c PARKING_ID -C USER -S "ROADS" -u gcm -p gcm@gcm -i sde:oracle9i
    8. MODIFY THE SDE SPATIAL REF # TO UTM:
    sdelayer -o alter -l VEHICLE_PARKING_AREA,GEOMETRY -G 4326 -u gcm -p gcm@gcm -i sde:oracle9i
    OPTIONAL: View min and max values to see if there is invalid range data:
    SELECT aa.MINX, bb.MINY, cc.MAXX, dd.MAXY FROM
    (SELECT MIN(t.X) MINX
         FROM GCM.VEHICLE_PARKING_AREA c,
         TABLE(SDO_UTIL.GETVERTICES(c.GEOMETRY)) t) aa,
    (SELECT MAX(t.X) MAXX
         FROM GCM.VEHICLE_PARKING_AREA c,
         TABLE(SDO_UTIL.GETVERTICES(c.GEOMETRY)) t) cc,
    (SELECT MIN(t.Y) MINY
         FROM GCM.VEHICLE_PARKING_AREA c,
         TABLE(SDO_UTIL.GETVERTICES(c.GEOMETRY)) t) bb,
    (SELECT MAX(t.Y) MAXY
         FROM GCM.VEHICLE_PARKING_AREA c,
         TABLE(SDO_UTIL.GETVERTICES(c.GEOMETRY)) t) dd;
    OBJECTWS of TYPE:
    SELECT COUNT(1) "UNKNOWN"
         FROM GCM.VEHICLE_PARKING_AREA M
         WHERE M.GEOMETRY.GET_GTYPE() = 0;
    SELECT COUNT(1) "POINT"
         FROM GCM.VEHICLE_PARKING_AREA M
         WHERE M.GEOMETRY.GET_GTYPE() = 1;
    SELECT COUNT(1) "LINE or CURVE"
         FROM GCM.VEHICLE_PARKING_AREA M
         WHERE M.GEOMETRY.GET_GTYPE() = 2;
    SELECT COUNT(1) "POLYGON"
         FROM GCM.VEHICLE_PARKING_AREA M
         WHERE M.GEOMETRY.GET_GTYPE() = 3;
    SELECT COUNT(1) "COLLECTION"
         FROM GCM.VEHICLE_PARKING_AREA M
         WHERE M.GEOMETRY.GET_GTYPE() = 4;
    SELECT COUNT(1) "MULTIPOINT"
         FROM GCM.VEHICLE_PARKING_AREA M
         WHERE M.GEOMETRY.GET_GTYPE() = 5;
    SELECT COUNT(1) "MULTILINE or MULTICURVE"
         FROM GCM.VEHICLE_PARKING_AREA M
         WHERE M.GEOMETRY.GET_GTYPE() = 6;
    SELECT COUNT(1) "MULTIPOLYGON"
         FROM GCM.VEHICLE_PARKING_AREA M
         WHERE M.GEOMETRY.GET_GTYPE() = 7;

  • Oracle Payroll Integration with Oracle Financials Suite 11i

    I would be grateful if anyone can describe the relationship and flow cycle between Oracle Payroll & Oracle Financials Suite 11i 'GL, AP, FA & AR' if any.

    Hi Suvi;
    Similar issue mention here many times, please see:
    SOA
    Oracle Ebiz R12.1: Out of the Box Web services avialable
    SOA-ebs integration
    Re: Oracle SOA suite integration with EBS 11.5.10 SSA
    If those are not helps than please update thread
    Regard
    Helios

  • Error in Retroactive wages in payslip and Payroll register

    Dear Consultants,
    One of my client facing error while retroactive wage display in payslip and as well as Payroll register, when the employee is having any retro arrears that time the total arrears are coming as "Stat.net subs.adjustment" but client want the break up of this total arrear amount.
    sample payslip :
    Then I have created a new Payroll remuneration statement through PC00_M40_CEDT as below
    After doing this changes the in the payslip I am able to see the retro amount break up in pay slip, but the retro amount is not calculated to /101 gross amount, and PF employee contribution is coming 3 times. can any one let me now what are the exact requirement for this issue ?
    When I checked in RT table after running with the new paylip varient there are only two PF employee contribytions are there 1 is /3F1 calculating for current month earnings, and /ZF5 calculating for retro amount. there is no other employee PF deductions are there then form where this 3rd PF is coming in payslip? please do needful.
    Thanks
    Naresh

    Dear Praneeth,
    Do I need to create new wage types for arrears amount? and am giving the currently using PCRs
    IN42, ZN43 (IN43), IN44. kindly help me in changing of this PCRs.
    PCR (currently using in Payroll schema):
    IN42:
    PCR ZN43:
    PCR IN44:
    This are the PCRs IN42, ZN43 (IN43), IN44 using in production payroll Schema.
    please do needful.
    Thanks Regards,
    Naresh

  • How to print the Cheques in Oracle Payroll in R12

    After Running the Cheque Writer Process in Oracle Payroll how can one print the Cheque Leaves in the Payroll module for each employee that is to be paid through cheque.
    Please give the Navigation for the same.
    Regards,
    Chetan

    Please if there is any one who has tried out some customisation on how to print the cheques after running the cheque writer process kindly share it with me as i am in big trouble here....

  • How to setup the Advance payment in Oracle Payroll

    Dear Friends,
    Can any one pls let me Know,How to setup the Advance payment in Oracle Payroll.. Pls ..
    with regards
    Veeru

    GLOBAL HRMS , XX_legislation
    Plz help

  • Oracle Payroll and Payslip Report problem

    Hi everyone,
    When I am running the Saudi payroll registered and Saudi payslip report in oracle r12. in the parameter list i didn't getting the current reporting period end date, it showing me only old reporting end period date. please can anyone help me how to get lov of all the period end dates to run the payroll and payslip.
    Thank you

    Solved, Thank you

  • How to Handle Leave Encashment in Oracle Payroll

    Dear Friends,
    Can any one pls let me Know,How to Handle Leave Encashment in Oracle Payroll.. Pls help me on this..
    with regards
    Veeru

    Hi Vinayaka Prabhu,
    Thank you for the information .. Here is the Scenario.. we are implementing HRMS Version12i to an real Estate Company in an Middle east.. Client Requirement is Suppose Annual Leave Entitlement for an employee is 14 days at the end of the year,employee can encash the leave other wise he can carry forward to the next year .. Can you pls help me out on this ..
    Note: If you have any setup document can you pls share it with me ([email protected])..
    with regards
    veeru

  • Domestic Partner needs to be added to payroll register in order

    Hi llll,
    Domestic Partner needs to be added to payroll register in order to reconcile during recon.
    Help me on this

    You can't.  The iPad trusts whatever DNS provider you have told it to trust.  If that DNS provider has incorrect or outdated information then you might have a word with whoever runs it and ask them to make the change.
    Also, your description looks a little strange.  You may not need to make such a change.  You can tell your browser to go directly to a numeric IP address rather than the name of the site, for example:
    http://93.184.216.119
    That should let you get the required web page without needing to set up anything special with your DNS provider.

  • PPR Report ,How to display Label with TOTAl

    Hi,
    How Can i display PPR Report ,How to display Label with TOTAl like
    [http://apex.oracle.com/pls/apex/f?p=267:30:]
    Thanks
    Edited by: 805629 on Jan 6, 2011 3:34 AM

    Hi,
    For PPR Report:
    Select "Yes" in "Enable Partial Page Refresh" item of "Layout and Pagination" region in Report Attributes of that report.
    For display Label with TOTAL:
    Use "Break Formatting" region in Report Attributes of that report.
    Regards,
    Kartik Patel
    http://patelkartik.blogspot.com/
    http://apex.oracle.com/pls/apex/f?p=9904351712:1

  • How to transfer oracle payroll costing data to a legacy financial system

    can some 1 help me with the select query that can pick the exact data of oracle payroll costing for the pay period and dump into my Financial system that is not an oracle product??

    Condition 1.
    ppa.action_type = 'C'  
    and ppa.payroll_id = :p_payroll_id
    and ppa.EFFECTIVE_DATE between to_date('01-'||:PMON || '-'||:PYEAR,'dd-Mon-yyyy') and last_day(to_date('01-'||:PMON || '-'||:PYEAR,'dd-Mon-yyyy'))Above 3 conditions give the 'Costing' processes for the particular payroll that is processed for the given date range.
    Condition 2
    and ppa.PAYROLL_ACTION_ID = paa.PAYROLL_ACTION_IDthis condition restricts the assignment_action_id selected from pay_assignment_actions to the assignment_action_id for the payroll action selected by condition 1. ie result includes those assignments which are a result of costing process for the particular period.
    Hope this has explained the query. You can also try checking the correctness of your result by including ppa.EFFECTIVE_DATE in the select statement.

  • Oracle HR Rel 11 and Oracle Payroll 11i

    Oracle HR Rel 11.0.3 is already implemented and we are going to implement Oracle Payroll. I have a crazy idea to implement Payroll Rel 11i. Is that possible?. If yes, what are the risk areas for me to consider?.

    call me uk 020 8691 8704, and i'll put you in touch with someone who can.

Maybe you are looking for

  • Is there a way to put a pdf on newsstand without using iBook?

    I have some travel pdfs that i'd like to access on my iPhone 4. Is there a way to put them directly onto newsstand, without having to download iBooks (and use up valuable space)? Thanks!

  • How to share contact including photo between iPhones?

    I tried iMessage and e-mailing a vCard, but neither method transfers the contact along with their photo between an iP5 and an iP4. What is the correct method?

  • NWDI in upgrade project - Recommendations

    Dear All, We are upgrading ECC and Portal. Earlier client doesn't have NWDI. Now we are using NWDI, so the customer wants the below recommendations. 1. Provide a recommendation for use of NWDI within the Upgrade project. 2. Provide a recommendation f

  • How to configure a VME device within the software?

    I've got a VME-MXI-2 interface cobnnected to a VME crate. I'm using the ni-vxi driver to access the VME cards in the crate. I can't configure the VME configuration manually using the tools for variuos reasons. So I tried to do it directly in the soft

  • Live Clock

    I found a live clock script that I like. The problem I am having is pasting the script to where it needs to go. I have tried paste is various locations with no luck. Check it out and let me know what you think. Below is the link for my web page and t