Payroll Reconciliation Report - HR ABAP --- Urgent

Hi Guys,
I am having a doubt regarding a standard report very commonly used in HR Reporting in SAP.
How does it selects the Payroll Results from the cluster ? Based on which date ...?
Is it Check Date/Payment date or some other date ?
Actually I have a requirement where i need to fetch the amount for a wagetype.
In this I need to fetch the values of that wage type based on the check date, i.e. when the company has paid the amount to the person.
I have to fetch the amount of this wage type for all the payroll runs :
1 - Regular
2 - Retro.
3 - Offcycle.
I have used the Payroll Reconciliation Report and exporting the final total table which has all the results for the wage type selected on the selection screen for the person between a particular start date and end date.
But I want to be sure that this way I will get the accurate results.
If anyone has any idea or know any link to follow please help me out.

Hi ,
sample code..
LOOP AT fp_i_final INTO l_wa_final.
FORM read_rgdir USING    fp_v_pernr    TYPE persno
                CHANGING fp_i_rgdir    TYPE ty_t_rgdir.
                        fp_i_errorlog   TYPE ty_t_errorlog.
*-- Local Declaration
DATA: l_wa_errorlog TYPE ty_errorlog. " Errorlog Work Area
*---->  FM for Read routines for cluster CD
  CALL FUNCTION 'CU_READ_RGDIR'
    EXPORTING
      persnr          = fp_v_pernr
    TABLES
      in_rgdir        = fp_i_rgdir
    EXCEPTIONS
      no_record_found = 0
      OTHERS          = 0.
*---> Cluster Directory details for Payroll
*---> Results is initial for perticular employee then continue .
    IF l_i_rgdir IS INITIAL.
      CONTINUE.
    ENDIF.
*----> Off-cycle dates
    IF cb_ocy NE l_c_x.
    ELSE.
*---> Off-cycle dates
      IF s_bondt-low IS NOT INITIAL AND
         s_bondt-high IS NOT INITIAL .
        DELETE l_i_rgdir WHERE fpbeg LT s_bondt-low  OR
                               fpend GT s_bondt-high.
      ENDIF.
    ENDIF.
*----> Check the ARRRES check box
    IF cb_arr = l_c_x.
*---> Delete the cluster directory details from check date and check the low date.
      IF NOT s_paydt-low IS INITIAL.
        DELETE l_i_rgdir WHERE paydt LT s_paydt-low .
      ENDIF.
*---> Delete the cluster directory details from check date and check the high and low dates.
      IF NOT s_paydt-low IS INITIAL AND
         NOT s_paydt-high IS INITIAL.
        DELETE l_i_rgdir WHERE paydt LT s_paydt-low OR
                               paydt GT s_paydt-high .
      ENDIF.
    ENDIF.
*-- Get the Payroll details for all Personnel Numbers entered
*-- on Selection Screen
    LOOP AT l_i_rgdir INTO l_wa_rgdir.
*---> Check for the flag
      IF l_wa_rgdir-srtza NE l_c_p AND
         l_wa_rgdir-srtza NE l_c_o .
*----> Sub-Routine to get the Payroll results into the
*----> Payroll RESULTS Table
*-- Local Declaration
  DATA: l_wa_errorlog TYPE ty_errorlog. " Errorlog Work Area
*----> FM to get Payroll Results table
  CALL FUNCTION 'PYXX_READ_PAYROLL_RESULT'
    EXPORTING
      employeenumber               = fp_v_pernr
      sequencenumber               = fp_v_seqnr
     read_only_international      = c_x
    CHANGING
      payroll_result               = fp_i_payresult
    EXCEPTIONS
      illegal_isocode_or_clusterid = 1
      error_generating_import      = 2
      import_mismatch_error        = 3
      subpool_dir_full             = 4
      no_read_authority            = 5
      no_record_found              = 6
      versions_do_not_match        = 7
      error_reading_archive        = 8
      error_reading_relid          = 9
      OTHERS                       = 10.
  IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
           WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
           INTO l_wa_errorlog-line.
*-- Populate Errorlog Int table
    APPEND l_wa_errorlog TO fp_i_errorlog.
    CLEAR  l_wa_errorlog.
  ENDIF.
*----> Check the check boxs are either ARRRS,Deductions are not taken and Off-cycle.
        IF ( cb_arr = l_c_x AND cb_ded = l_c_x AND cb_ocy = l_c_x ) OR
           ( cb_arr = l_c_x AND cb_ocy = l_c_x ) OR ( cb_ded = l_c_x AND cb_ocy = l_c_x ).
*----> Check for the Normal Run, Retroactive run and off-cycle run.
*---> Check the Normal run in pc_payresult
          IF ( l_wa_rgdir-fpper EQ l_wa_rgdir-inper AND
               l_wa_rgdir-ocrsn IS INITIAL AND  l_wa_rgdir-inocr IS INITIAL ) OR
*----> Check the Retroactive run pc_payresult
             ( ( l_wa_rgdir-fpper NE l_wa_rgdir-inper ) AND
               ( l_wa_rgdir-ocrsn IS INITIAL ) AND ( l_wa_rgdir-inocr IS INITIAL ) ) OR
*----> Check the Off-cycle run pc_payresult
             ( ( l_wa_rgdir-fpper NE l_wa_rgdir-inper ) AND
               ( l_wa_rgdir-ocrsn IS NOT INITIAL  ) OR ( l_wa_rgdir-inocr IS NOT INITIAL ) ).
*---> Get the Amount for particular Wagetype based on Wagetype
*---> entered on selection screen
  CLEAR l_wa_lgart.
  LOOP AT fp_p_lgart INTO l_wa_lgart.
   SORT fp_l_i_payresult-inter-rt BY lgart.
    CLEAR l_wa_rt.
*---> Read the rt cluster results based on the wage type
    LOOP AT fp_l_i_payresult-inter-rt INTO l_wa_rt WHERE lgart = l_wa_lgart-lgart.
      l_wa_final-betrg =  l_wa_rt-betrg.
      l_wa_final-lgart =  l_wa_lgart-lgart.
*---> Read the fp_i_vendor internal table based on wage type and
*---> append the lifnr and ernam value to final internal table.
      SORT fp_i_vendor BY lgart.
      CLEAR l_wa_vendor.
      READ TABLE fp_i_vendor INTO l_wa_vendor WITH KEY lgart = l_wa_lgart-lgart BINARY SEARCH.
      IF sy-subrc EQ 0.
       l_wa_final-lifnr = l_wa_vendor-lifnr.
       l_wa_final-crenr = l_wa_vendor-ernam.
     ENDIF.
        l_v_lifnr = l_wa_vendor-lifnr.
        l_v_crenr = l_wa_vendor-ernam.
      ENDIF.
      l_wa_final-lifnr = l_v_lifnr.
      l_wa_final-crenr = l_v_crenr.
      CLEAR : l_v_crenr,l_v_lifnr.
      APPEND  l_wa_final TO i_final1.
*---> Modify the tax authority to final internal table .
      SORT fp_l_i_payresult-nat-tcrt BY lgart.
      CLEAR l_wa_tcrt.
*---> Read the tcrt cluster results based on the wage type and
*---> Get the tax id and tax authority from tcrt cluster.
      READ TABLE fp_l_i_payresult-nat-tcrt INTO l_wa_tcrt
                                WITH KEY lgart = l_wa_final-lgart BINARY SEARCH.
      IF sy-subrc = 0.
        READ TABLE i_final1 INTO l_wa_final WITH KEY lgart = l_wa_tcrt-lgart."l_wa_final-lgart.
        IF sy-subrc = 0.
          l_wa_final-txcmp =  l_wa_tcrt-txcmp.
          l_wa_final-taxau =  l_wa_tcrt-taxau.
          MODIFY i_final1 FROM l_wa_final INDEX sy-tabix.
        ENDIF.
      ENDIF.
    ENDLOOP.
*---Crt
   SORT fp_l_i_payresult-inter-crt BY lgart.
    CLEAR l_wa_crt.
*---> Read the crt cluster results based on the wage type
    LOOP AT fp_l_i_payresult-inter-crt INTO l_wa_crt
                               WHERE  lgart = l_wa_lgart-lgart.
     l_wa_final-betrg =  l_wa_crt-betrg.
      l_wa_final-lgart =  l_wa_lgart-lgart.
      IF ( l_wa_crt-cumty = l_c_y ) OR ( l_wa_crt-cumty = l_c_k )
      OR ( l_wa_crt-cumty = l_c_d ).
        l_wa_final-ytd =  l_wa_crt-betrg.
      ELSEIF
      ( l_wa_crt-cumty = l_c_f ) OR ( l_wa_crt-cumty = l_c_m ).
        l_wa_final-mtd =  l_wa_crt-betrg.
      ELSEIF
      ( l_wa_crt-cumty = l_c_h ) OR ( l_wa_crt-cumty = l_c_q ).
        l_wa_final-qtd =  l_wa_crt-betrg.
      ENDIF.
      SORT fp_i_vendor BY lgart.
      CLEAR l_wa_vendor.
      READ TABLE fp_i_vendor INTO l_wa_vendor WITH KEY lgart = l_wa_lgart-lgart BINARY SEARCH.
      IF sy-subrc EQ 0.
       l_wa_final-lifnr = l_wa_vendor-lifnr.
       l_wa_final-crenr = l_wa_vendor-ernam.
     ENDIF.
        l_v_lifnr = l_wa_vendor-lifnr.
        l_v_crenr = l_wa_vendor-ernam.
      ENDIF.
      l_wa_final-lifnr = l_v_lifnr.
      l_wa_final-crenr = l_v_crenr.
      CLEAR : l_v_crenr,l_v_lifnr.
      APPEND  l_wa_final TO i_final1 .
*---> Modify the tax authority to final internal table .
      SORT fp_l_i_payresult-nat-tcrt BY lgart.
      CLEAR l_wa_tcrt.
*---> Read the tcrt cluster results based on the wage type and
*---> Get the tax id and tax authority from tcrt cluster.
      READ TABLE fp_l_i_payresult-nat-tcrt INTO l_wa_tcrt
                                WITH KEY lgart = l_wa_final-lgart BINARY SEARCH.
      IF sy-subrc = 0.
        READ TABLE i_final1 INTO l_wa_final WITH KEY lgart = l_wa_tcrt-lgart."l_wa_final-lgart.
        IF sy-subrc = 0.
          l_wa_final-txcmp =  l_wa_tcrt-txcmp.
          l_wa_final-taxau =  l_wa_tcrt-taxau.
          MODIFY i_final1 FROM l_wa_final INDEX sy-tabix.
        ENDIF.
      ENDIF.
      CLEAR : l_wa_crt.
    ENDLOOP.
*---DDNTK
   SORT fp_l_i_payresult-inter-ddntk BY lgart.
    CLEAR l_wa_ddntk.
*---> Read the ddntk cluster results based on the wage type
    LOOP AT fp_l_i_payresult-inter-ddntk INTO l_wa_ddntk
                               WHERE lgart = l_wa_lgart-lgart .
      l_wa_final-betrg =  l_wa_ddntk-betrg.
      l_wa_final-lgart =  l_wa_lgart-lgart.
*---> Read the fp_i_vendor internal table based on wage type and
*---> append the lifnr and ernam value to final internal table.
      SORT fp_i_vendor BY lgart.
      READ TABLE fp_i_vendor INTO l_wa_vendor WITH KEY lgart = l_wa_lgart-lgart BINARY SEARCH.
      IF sy-subrc EQ 0.
       l_wa_final-lifnr = l_wa_vendor-lifnr.
       l_wa_final-crenr = l_wa_vendor-ernam.
     ENDIF.
        l_v_lifnr = l_wa_vendor-lifnr.
        l_v_crenr = l_wa_vendor-ernam.
      ENDIF.
      l_wa_final-lifnr = l_v_lifnr.
      l_wa_final-crenr = l_v_crenr.
      CLEAR : l_v_crenr,l_v_lifnr.
      APPEND  l_wa_final TO i_final1 .
**---> Modify the tax authority to final internal table .
      SORT fp_l_i_payresult-nat-tcrt BY lgart.
      CLEAR l_wa_tcrt.
*---> Read the tcrt cluster results based on the wage type and
*---> Get the tax id and tax authority from tcrt cluster.
      READ TABLE fp_l_i_payresult-nat-tcrt INTO l_wa_tcrt
                                WITH KEY lgart =  l_wa_final-lgart BINARY SEARCH.
      IF sy-subrc = 0.
        READ TABLE i_final1 INTO l_wa_final WITH KEY lgart = l_wa_tcrt-lgart."l_wa_final-lgart.
        IF sy-subrc = 0.
          l_wa_final-txcmp =  l_wa_tcrt-txcmp.
          l_wa_final-taxau =  l_wa_tcrt-taxau.
          MODIFY i_final1 FROM l_wa_final INDEX sy-tabix.
        ENDIF.
      ENDIF.
    ENDLOOP.
*---ARRRS
   SORT fp_l_i_payresult-inter-arrrs BY lgart.
    CLEAR l_wa_arrrs.
*---> Read the arrrs cluster results based on the wage type
    LOOP AT fp_l_i_payresult-inter-arrrs INTO l_wa_arrrs
                               WHERE lgart = l_wa_lgart-lgart .
      l_wa_final-betrg =  l_wa_arrrs-betrg.
      l_wa_final-lgart =  l_wa_lgart-lgart.
      SORT fp_i_vendor BY lgart.
      CLEAR l_wa_vendor.
      READ TABLE fp_i_vendor INTO l_wa_vendor WITH KEY lgart = l_wa_lgart-lgart BINARY SEARCH.
      IF sy-subrc EQ 0.
       l_wa_final-lifnr = l_wa_vendor-lifnr.
       l_wa_final-crenr = l_wa_vendor-ernam.
     ENDIF.
        l_v_lifnr = l_wa_vendor-lifnr.
        l_v_crenr = l_wa_vendor-ernam.
      ENDIF.
      l_wa_final-lifnr = l_v_lifnr.
      l_wa_final-crenr = l_v_crenr.
      CLEAR : l_v_crenr,l_v_lifnr.
      APPEND  l_wa_final TO i_final1 .
**---> Modify the tax authority to final internal table .
      SORT fp_l_i_payresult-nat-tcrt BY lgart.
      CLEAR l_wa_tcrt.
*---> Read the tcrt cluster results based on the wage type and
*---> Get the tax id and tax authority from tcrt cluster.
      READ TABLE fp_l_i_payresult-nat-tcrt INTO l_wa_tcrt
                                WITH KEY lgart = l_wa_final-lgart BINARY SEARCH.
      IF sy-subrc = 0.
        READ TABLE i_final1 INTO l_wa_final WITH KEY lgart = l_wa_tcrt-lgart."l_wa_final-lgart.
        IF sy-subrc = 0.
          l_wa_final-txcmp =  l_wa_tcrt-txcmp.
          l_wa_final-taxau =  l_wa_tcrt-taxau.
          MODIFY i_final1 FROM l_wa_final INDEX sy-tabix.
        ENDIF.
      ENDIF.
    ENDLOOP.
  ENDLOOP.
          ENDIF.
  ENDLOOP.
**---> Cluster Directory details for Payroll Results is initial
IF l_i_rgdir IS INITIAL.
   MESSAGE i393 .   " no record found for the selection criteria
   LEAVE LIST-PROCESSING .
ENDIF.
*---> Final internal table details for Payroll Results is initial
  IF i_final1 IS INITIAL.
    MESSAGE i393 .   " no record found for the selection criteria
    LEAVE LIST-PROCESSING .
  ENDIF.
If u have any further clarification i will send one sample program..
Navin..

Similar Messages

  • Payroll Reconciliation Report

    Hi Experts,
                     Can you please resolve this:
    1) Payroll was run for pay-period 12.2008 (2008.12.01 - 2008.12.31)
        FI Posting completed and Net pay paid out via check too.
    2) This payroll of pp 12.2008 was reversed on 9thJan 2009. through Off-Cycle
    3) HR FI Financial was processed and all necessary reversals for the reversed off cycle payroll was processed too.
    Issue: When executing the Payroll Reconciliation Report, it is including the reversals from the last payroll of Dec 2008 but should not, as the reversals were from a 2008 period and should not be on a 2009 Report.
    Thanks And Regards,
    Somdeb Banerjee.

    Hi Sikindar,
    In the payroll reconciliation report:
    In one variant i am giving period selection i.e. pp 01.2009
    In another variant I am giving date selection i.e. 2009.01.01 - 2009.01.31
    In both the cases the report is pulling data for the voided result of 2008. However If I select and check 'Process Last Result Only' in the selection screen, the result is coming fine i.e. the voided result of 2008 is not showing up.
    However my client says that she needs to run this report on a quarterly basis by. So Pay period will not work to run this report. Also if 'Process Last Result Only' is checked, then the report might not pick the retro's.
    Thanks And Regards,
    Somdeb banerjee.

  • /4xx wage type error in Payroll Reconciliation Report - wta C941

    We recently updated our 6.04 system to SP74.  Now when we run a Payroll Reconciliation Report with wage type application C941, we get a hard error message as follows:  "You must include the corresponding  /4XX wage type".  Also same error on CCW2 and TAXT wta.
    I have checked table VC_596A_F and it has entries for Y401 - Y406, with corresponding entries for /401 through /406 for all the listed wta's above.
    Any thoughts on what I could check next to find this problem solution?  Any help would be greatly appreciated.
    David Denman

    We recently updated our 6.04 system to SP74.  Now when we run a Payroll Reconciliation Report with wage type application C941, we get a hard error message as follows:  "You must include the corresponding  /4XX wage type".  Also same error on CCW2 and TAXT wta.
    I have checked table VC_596A_F and it has entries for Y401 - Y406, with corresponding entries for /401 through /406 for all the listed wta's above.
    Any thoughts on what I could check next to find this problem solution?  Any help would be greatly appreciated.
    David Denman

  • Magnetic Media is not reconciling with Payroll Reconciliation Report..

    Hello Team
    Can anyone help me how to proceed/what to look at if Magnetic Media is not reconciling with Payroll Reconciliation Report..
    Any insight into this will be highly appreciable.
    Regards
    Raspreet

    Hi Charlene,
    The Recommended way to Reconcile you tax fomrs is as follows.
    1. Take the actual 941's submitted to authority.
    2. Run 941 for all Quarters using SAP Tax reporter and Reconciliation report 941 application.
    3. Run W-2 in Tax reporter and take copy of W-3 and 6559
    4. Run Reconciliation report using W-2 Application.
    Now first match the all 941 totals for all Taxable and Taxes with W-3 total. Then match your W-3 with 6559.
    Remember the totals on your final report has to match by penny to penny. If there are any 941-C take them also into consideration.
    I hope this helps.
    Arti

  • Hr payroll reconciliation report

    Hello All,
    i have a Hr reconciliation payroll report and requirement is like
    After Payroll Monthly Run, Payroll Admin and FI needs to fetch detail report on employees actual and to be paid monthly earning components. Report will be used to analyze payroll result before confirming final salary payment.
    and the output should in alv grid format.
    Moderator Message: Refer your Functional specs
    Edited by: kishan P on Sep 9, 2010 5:32 PM

    Hello All,
    i have a Hr reconciliation payroll report and requirement is like
    After Payroll Monthly Run, Payroll Admin and FI needs to fetch detail report on employees actual and to be paid monthly earning components. Report will be used to analyze payroll result before confirming final salary payment.
    and the output should in alv grid format.
    Moderator Message: Refer your Functional specs
    Edited by: kishan P on Sep 9, 2010 5:32 PM

  • URGENT: Grouping in Accrual Reconciliation Report

    Hello
    Could anyone please explain how grouping is done in the 'Accrual Reconciliation Report' - POXACREC ? How does the group - G_item_vendor work? Is grouping being done here?
    My requirement is to customize this report by the logic that : If item number is null, grouping should be done by Description. If anyone has any suggestions, please do reply.
    I am working on Oracle Applications version : 11.5.10.2

    Hi Anju,
    I suggest you to post this query on "oracle applications forum".
    Still I have an idea, you can give a try:
    Why can't you group on item||Description {concatenating both fields} field. Use this field just for group and use the individual fields for display and other purposes.
    Br,
    Gouri Sankar

  • Hi All difference between abap and hr-abap urgent pls

    Hi All difference between abap and hr-abap urgent pls

    Hello,
    To add to the above points regarding infotypes
    Infotypes stand apart in  HR and manage a volume of data in HR domain..they are unique to HR module ranging from basic employee information to time management and finally the custom infotypes.....
    Payroll and other monetory activities related to an employee also form a vital part of the HR module....
    while considering Reports..in HR data is mainly with respect to infotypes and the concept of PAKEY...7 key fields which uniquely defines any record in an infotype is used..with Pernr(employee number),Begda(begindate) and Endda(enddate) form an integral part of the key..Based on the time constraints(1,2,3) of an infotype the keys are judged (to retrieve data from an infotype)
    In ABAP HR we also have lots of predefined function modules that can be used..eg:go to se37..put 'HR*' and press F4...
    finally to update an HR infotype record we use the function module hr operation rather than direct updates...also there are standard audit trail reports that monitors various activities such as insert/modify/delete operations on an hr infotype record...
    Pls revert back for clarity and reward if helpful
    Regards
    Byju

  • Po Accrual Reconciliation report

    Hi Sir
    Hope you are doing well and good.
    I am new to R12 PO. For my client in 11.5.10.2 they have customized Po Accrual Reconciliation report. I came to know that in R11 they use view:PO_ACCRUAL_RECONCILE_TEMP and temporary table used in that view is PO_ACCRUAL_RECONCILE_TEMP_ALL.
    Now we are migrating this report to R12 and the above view was obsolete synonym in R12.
    1) After checking thoroughly i came to that temporary table was replaced with CST_AP_PO_RECONCILIATION & CST_RECONCILIATION_SUMMARY in R12. And i am unable to found view:PO_ACCRUAL_RECONCILE_TEMP replacement in R12. Can you please help me in this regard.
    2) Using the two new tables:CST_AP_PO_
    RECONCILIATION & CST_RECONCILIATION_SUMMARY, can we modify the query to get the same output as like R11
    This is very very urgent request.
    Best Regards
    Mani

    This is the forum for the SQL Developer tool. You need to ask your question in an eBusiness suite forum.

  • Crystal report using ABAP from SAP ECC6.0 EHP 3.0

    Hi Gurus,
    Can i create crystal report using ABAP in SAP ECC 6.0 EHP 3 . as i am not able to see this link in SPRO.
    IMG > SAP NetWeaver > Application Server > SAP List Viewer > Maintain SAP GUI Specific Settings.
    Kindly guide me urgently.

    http://help.sap.com/saphelp_slc/helpdata/en/27/c9ee1951fc4fb9ac322ac7e6fa7372/content.htm
    If I understood your question correctly.
    Have a look in the link above.
    It is possible to use Crystal Reports from ALV.
    Tammy Powlas also has some good guides on how to do this.
    The ABAP however is not covered that much.
    Best Regards
    Ingrid

  • Interactive reports in abap objects

    Hi,
           plz send me the code of  interactive report using ABAP Objects .
    Thanks,
    T.Sreekanth.

    Hi,
    It will be similar to what you do in normal report.
    Here you may create an object instance and then call some method on the object.
    AT LINE-SELECTION.
    create object obj.
    CALL METHOD obj->method1
    IMPORTING
      text = im_text.
    write: im_text.
    Regards,
    Sesh

  • AP PO Reconciliation Report

    Hello everyone
    In the attached sample of AP PO reconciliation report, there is a balance for PO but none for AP. Does it mean that no invoices were raised for that particular PO?

    Hello,
    Between Receiving and Invoicing, this report should print accrual account with a net balance not equal to zero in a summarized (so, this include, for example, Quantities differ between receipts and invoices, unit price differences, ... POs invoiced but not received)
    Now, for the case you reported, and assuming that full matching (billing) was occurred run the Accrual Reconciliation Load Run again to clear out POs from report.
    Thank you

  • Whts the corresponding BW report for AP Liability Reconciliation report?

    HI All,
    Whts the corresponding BW report for AP Liability Reconciliation report?
    R/3 report is: S_ALR_87012082 u2013 provides vendor balances that make this up.
    Whts the BW report for validating the R/3 data.
    Please Reply.
    Thansk in Advance.

    Hi,
         Yes, I was getting partial results. I got rid of it by unchecking the the options in the 'SQL' tab in the Universe parameters.
         Thanks for the help.
    Regards,
    Alok.

  • How do we clear the GR/IR Reconciliation Report on PO

    Hi expets,
    can you please help me to solve this issue
    "How do we clear the GR/IR Reconciliation Report on PO"
    thanks in advance,
    mohammad

    > "How do we clear the GR/IR Reconciliation Report on PO"
    Use MR11 Trxn Code GR/IR Clearance

  • Difference in AR Reconciliation Report

    My submitted AR Reconciliation Report has a different of $8,000.00 and the amount was found from a unapplied receipt. How could I trace the root cause of this different amount?? Aging 4-Buckets report??
    The amount in bule is the +/- amount from its own column
          Calculated Total for the Period                                             200,008,000.00
          Ending Balance as of xx-SEP-20xx                                     200,000,000.00
          Difference                                                                              ------------------------
                                                                                                                  8,000.00
                                                                                                       ========================
    Calculation:
    Total Activity in a period is calculated as follows:
    Transaction Register for the Period
    (-)Applied Receipts Register for the Period
    (-)Un-Applied Receipts Register for the Period
    (+)Adjustments Register for the Period
    (-)Invoice Exceptions for the Period
    (+)Rounding Differences for the Period (*)
    (+)Credit Memo gain/loss for the Period(*)
    = 200,008,000.00

    Hi ,
    Please see if the following notes help you:
    ARXRECON - How To Resolve AR Reconcilation Report Difference . (Doc ID 246804.1)
    AR Reconciliation Report Ending Balance Does Not Match ATB 7 Buckets Or ATB 4 Buckets (Doc ID 402199.1)
    11i: Differences On The AR Reconciliation Report In Case On Account Credit Memo Refunds (Doc ID 549648.1)
    Thanks &
    Best Regards,

  • PO issue (Accrual Reconciliation Report )

    Hi,
    when run the accrual reconciliation report for PO,I find the quantity *Unit price is not equal Amount when A/P Receipt Match,the details as follows:
    when find the original PO line ,find that the PO line's status is cancelled ,the price have changed from 6 to 45 , from 10 to 50 before cancelled this PO lines, how can do now let them equal ?
    and check the invoice for this po ,
    20081022     1     Bar     20     6     120.00
    CH0000059 1     Bar     -20     6     (120.00)
    20081022     2     Bar     20 10     200.00
    CH0000059 2 Bar     -20 10 (200.00)
    CHSZ-Compart Hi-Precision Tech                         Accrual Reconciliation Report                          Report Date:      02-12-2008 20:00     
    Account:     24.00000.317010.0000.0000.000                                                                 
    PO Number     Item+      Transaction     Src     Org      Date     Document Number     Line      Unit     Quantity      Unit Price      Amount      Variance      Balance     
    Vendor Name:     : ShenzhenBaoan                                                       
    240803218     Pdtn consumables     Receive     PO     CHS     2008-10-29     30509262     1     Bar     -20     6     (120.00)          (120.00)     
         Pdtn consumables     Return to Supplier     PO     CHS     2008-11-5     30509262     1     Bar     20     6     120.00           120.00      
         Pdtn consumables     A/P Receipt Match      AP     CHS     2008-10-29     20081022     1     Bar     *20     45     120.00           120.00*
         Pdtn consumables     A/P Receipt Match      AP     CHS     2008-11-5     CH0000059     1     Bar     -20     45     (900.00)          (900.00)     
         Pdtn consumables     Receive     PO     CHS     2008-10-29     30509262     2     Bar     -20     10     (200.00)          (200.00)     
         Pdtn consumables     Return to Supplier     PO     CHS     2008-11-5     30509262     2     Bar     20     10     200.00           200.00      
         Pdtn consumables     A/P Receipt Match      AP     CHS     2008-10-29     20081022     2     Bar     *20*     *50*     *200.00*           *200.00*
    Pdtn consumables     A/P Receipt Match      AP     CHS     2008-11-5     CH0000059     2     Bar     -20     50     (1,000.00)          (1,000.00)     
                                  Vendor          Subtotal               (1,580.00)     0     (1,580.00)     
                                                           ---------------- -     ---------------     ----------------     GL
                                       Account Subtotal:                     (67,550.27)     0     (67,550.27)     (67,550.27)
                                       Report Total:                     (67,460.15)     -90     (67,550.15)     
                                                           ================ =     ===============     ================
    Edited by: user638343 on Dec 28, 2008 10:56 PM
    Edited by: user638343 on Dec 28, 2008 10:57 PM
    Edited by: user638343 on Dec 28, 2008 10:58 PM
    Edited by: user638343 on Dec 28, 2008 10:59 PM
    Edited by: user638343 on Dec 28, 2008 11:00 PM
    Edited by: user638343 on Dec 28, 2008 11:07 PM

    have anybody can give advise ?
    Edited by: user638343 on Jan 8, 2009 10:24 PM

Maybe you are looking for