Payroll report authorization

Hi experts,
I use P_ABAP in payroll report, COARS value is "1".
I met a case that an employee was in personal area "0001"  from 2007.04.01  to 2007.05.31. Since 2007.06.01 he has been in in personal area "0002'.
I run payroll report to query his payroll result from 2007.04.01  to 2007.05.31, but i failed. I get message;
"Personnel numbers skipped by the database driver"
"Reason 1: insufficient authorization, no. skipped personnel nos.:"
How can i do query the employee's payroll result in Pa Aare "0001"?
Thank you !
NT

Hi Om,
Thank you for the kind help.
I can query the employee by t_code PPOME from 2007.04.01 to 2007.05.31, so I think structural authorization seems fine.  And by t_code PA20 also can query him. 
But I can't query his payroll result by running payroll report, and standard PNP report catorgary used in the payroll report.
I don't know whether I took mistake in assignment authorization to the report with P_ABAP ?
Best regards,
NT

Similar Messages

  • IN HR PAYROLL REPORT USING PNP LOGICAL DATABASE

    Dear abapers,
                            when i ab runing HR payroll report usin PNP Logical database there are some error occurs.
                INCLUDE  DBPNPCOM
                         IN UNICODE PROGRAMS, THE "-" CHARECTOR CAN NOT APPEAR IN NAME , AS IT DOES HERE IN THE NAME
                        PNP-SW-FOUND.
         INCLUDE  DBPNPCOM
                       IN UNICODE PROGRAMS , THE "-" THE CHARECTOR CAN NOT APPEAR  IN NAMES, AS IT DOES HERE IN THE NAME
                       PNP-SW-IGNORELOCKEDRECORDS.
         INCLUDE  DBPNPCOM
                       IN UNICODE PROGRAMS , THE "-" THE CHARECTOR CAN NOT APPEAR  IN NAMES, AS IT DOES HERE IN THE NAME
                       PNP-SW-ENQUEUEPERNR.
                            PLEASE GIVE ME SOLUTIONS .
                                                                         THANK YOU SIR.

    Hi, please check, these might be warnings, not errors.

  • Performance issue in HR Payroll Report

    Hi Experts
    I having performance issue in HR payroll report
    My issue as follows
    I have selection period to select date range
    if I select start date & end date Which is giving EMP name, wage type,wage text, amount, etc
    whenever I excute it takes morethan one hour to get the resust
    my code is some wht like this
    loop at GT_REDIR where
    begda(start date) ge pnpbegda and
    endat(end date) le pnpendat and
    paytyp eq ''
    move gt-sqnr to  lv_sqnr
    call function PYXX_READ_PAYROLL_RESULT
    here i am passing pernr  and sequence number
    please give me some idea to fix this issue
    Thanks in Advance
    Gopinath Subramanyam

    Hi Jhings
    Thanks for Your immediate reply
    data is  coming from cluster table and also I am using Logical database
    I will post my code here soon
    Regards
    Gopinath subramayam

  • BW report authorization for restrict cost center

    dear all,
    i have problem on BW report authorization for restrict cost center.....when i execute the query, after selection screen, appear error message 'you cannot change zv_cctr for characteristic 0COSTCENTER during query'.
    note : zv_cctr is variable restriction for costcenter, type processing = customer exit.
    below the customer exit :
    WHEN 'ZV_CCTR'.
        IF i_step = 2.
          DATA : gt_mstuidvscc TYPE TABLE OF  ztbw_mstuidvscc,
                 gs_mstuidvscc TYPE  ztbw_mstuidvscc,
                 wa_final2(10) TYPE c.
          SELECT * FROM ztbw_mstuidvscc INTO CORRESPONDING FIELDS OF TABLE gt_mstuidvscc
            WHERE userid = 'sy-uname'.
          LOOP AT gt_mstuidvscc INTO gs_mstuidvscc.
            wa_final2 = gs_mstuidvscc-kostl.
            l_s_range-opt = 'EQ'.
            l_s_range-high = wa_final2.
            APPEND l_s_range TO e_t_range.
          ENDLOOP.
        ENDIF.
    Regards,
    Tony

    i defined variable as ready for input and mandatory.
    regards,
    Tony

  • HR-ABAP Payroll report

    Hi Gurus,
       I have to display payroll report ( With PNP logical data base ), where in I have to compare indicator 'P' & 'A' records of each personal number for given period.
      sample code & useful links will be  rewarded with points.
    Thanks,
    U.S.Raju

    refer program
    EXAMPLE_PNP_GET_PAYROLL.
    It might be useful to u....

  • Regarding payroll report abap hr

    hi experts
    i have developed one payroll report for indian payroll
    its working fine for  For View payroll periods like PC00 M99 CWTR - Wage type reporter
    i have used HRCM PAYROLL RESULTS GET this function module to fetch payroll results.
    Problem is
    my end user asking in view payroll perids like PC00 M99 CWTR - Wage type reporter 
    plz tell me the alternative procedure for fetching in view payroll perids.
    please send me sample payroll report
    thanks advance

    have a go at using this base code.
    data: go_prr type ref to cl_hrpay99_prr_4_pnp_reps,
          gt_pernr_pr type h99_hr_pay_result_tab,
          go_pernr_pr type ref to cl_hr_pay_result_gb,
          g_retro     type h99_add_retroes,
          im_pnpabkrs type hrpy_tt_abkrs.
    tables: pernr,
            t512t.
    select-options r_lgart for t512t-lgart.
    parameters:   p_inper  radiobutton group g1,
                  p_frper  radiobutton group g1.
    field-symbols <pernr_pr> type ref to cl_hr_pay_result.
    field-symbols <wa_rt>    type pc207.
    field-symbols <wa_crt>   type pc208.
    start-of-selection.
      im_pnpabkrs = pnpabkrs[].
      if not p_inper is initial.
        g_retro = 'X'.
      else.
        g_retro = ' '.
      endif.
    Call the method that gets the payroll info
      call method cl_hrpay99_prr_4_pnp_reps=>get_instance
        exporting
          im_pn_begda             = pn-begda
          im_pn_endda             = pn-endda
          im_ipview               = g_retro        "In period
          im_pnpabkrs             = im_pnpabkrs    "For sepecif payroll areas only
          im_molga                = '08'
          im_add_retroes_to_rgdir = g_retro        "In period Retors
        importing
          ex_prr                  = go_prr
        exceptions
          invalid_entries         = 1.
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
      write:/ 'Payroll Results from RT Table'.
      skip.
      write: / 'Emp No  ',
               'For Pd',
               'In PER',
               'S',
               'WTs ',
               '              AMOUNT',
               '                 RATE',
               '                UNITS',
               'FP PAY',
               'IN PAY'.
    get pernr.
    get the actual payments
      call method go_prr->get_pernr_payr_results_allin1
        exporting
          im_pernr                 = pernr-pernr
        importing
          ex_pernr_payroll_results = gt_pernr_pr
        exceptions
          others                   = 1.
      check sy-subrc = 0.
      loop at gt_pernr_pr assigning <pernr_pr>.
        go_pernr_pr ?= <pernr_pr>.
        loop at go_pernr_pr->inter-rt assigning <wa_rt>.
          check <wa_rt>-lgart in r_lgart.
    Paid 'In Period' subtract any item that is a part payment
          if not p_inper is initial.
            if go_pernr_pr->period-srtza = 'P'.
              <wa_rt>-anzhl = <wa_rt>-anzhl * -1.
              <wa_rt>-betrg = <wa_rt>-betrg * -1.
              <wa_rt>-betpe = <wa_rt>-betpe * -1.
            endif.
            write : / pernr-pernr,
                      go_pernr_pr->period-fpper, go_pernr_pr->period-inper,
                      go_pernr_pr->period-srtza, <wa_rt>-lgart, <wa_rt>-betrg, <wa_rt>-betpe,
                      <wa_rt>-anzhl,
                     go_pernr_pr->inter-versc-abkrs, '   ', go_pernr_pr->inter-versc-iabkrs.
          else.
    This part is 'For Period'
            check go_pernr_pr->period-srtza = 'A'.
            write : / pernr-pernr,
                     go_pernr_pr->period-fpper, go_pernr_pr->period-inper,
                     go_pernr_pr->period-srtza, <wa_rt>-lgart, <wa_rt>-betrg, <wa_rt>-betpe,
                    <wa_rt>-anzhl ,
                     go_pernr_pr->inter-versc-abkrs, '  ', go_pernr_pr->inter-versc-iabkrs.
          endif.
        endloop.
      endloop.
    Jules

  • HR payroll reporting

    Hi ALL
    Just a quick question.....I am doing payroll reporting using logical database PNPCE, do I need to use standard includes for payroll. if yes why these includes are used for.
    cheers
    AJ

    you need not use any standard includes
    Use the following code
    NODES: payroll TYPE paygb_result.
    * after Get pernr event
    GET payroll.
      CLEAR:wa_empdets-total_sum,wa_empdets-amt_deduc,wa_empdets-balance.
    * fetch arrestable earnings from results table
      LOOP AT payroll-inter-rt INTO wa_rt WHERE lgart = '/141'.
    *    IF wa_rt-lgart = '/141'.
        MOVE: wa_rt-betrg TO wa_empdets-earnings.
    *    ENDIF.
      ENDLOOP.

  • Reporting authorization issue after BI 701 05 EHP1 upgrade

    Hello,
    We have recently upgraded our BI 7.0 to BI 701 EHP1 with 05 patch level. After this we had a problem with reporting authorizations for a report (query), which has created under Virtual Infoprovider.
    Earlier the report use to be execute perfectly with authorizations S_RS_ICUBE object with Act 03, Subobject DATA, but after upgrade to EHP1, while executing report its throwing a error pasted below.
    =============================================================================================
    "Diagnosis
    Errors occured while reading a VirtualProvider outside the BI system. Check whether the previous error messages contains any information about the possible cause of this error.
    It is possible that the error message can not be displayed because the error message class does not exist in the BI system. If this is the case, only the name of the error class and the message number are displayed. View the error class in the source system of the VirtualProvider.
    System Response
    Procedure
    Since the error is not necessarily in the BI system, there is no specific procedure for resolving it. With VirtualProviders, problems often occure with the connection to the system; these can lead to system termination. If the code for the VirtualProvider is not from the SAP, contact the relevant person to help resolve the issue.
    If an SQL error is listed in the previous message, see the procedure for SQL errors."
    ===============================================================================================
    After running st01 trace we identified the missing authorization is S_RS_ICUBE with Act 03, subobject DEFINATION.
    Here please tell why is the subobject check is performed to execute a report (query), as this is happening after EHP1 upgrade, so let me know if anyone had any clue on this ...
    Thanks

    Hi Martin,
    Thanks for reply.
    The assumption what you made are correct, but these are the possible reasons only. Is there any specific note or any info from sap that these changes came due to the new release change, so that i can tell my manager clearly.
    And I am not sure whether this is impacting the reports which using the VirtualProviders (Virtual CUBE) in place. If you could get bit more information that will be helpful...Thanks in advance.
    Sridhar

  • Payroll Report

    Hi,
       My company has implemented HR & Finance.
    Today my finance team asked me to develop PAYROLL report for them.They asked to them a brief inputs about the avaliable business content PAYROLL reports......
    So what exactly i am looking for....Is the Payroll report belongs to Finance Team or HR Team...
    Please explain me in Brief.......
    Thanks

    Hi,
       Thanks for all the info provided.
    They were talking about the budgeting...etc
    What exactly 'Personal Cost Planning and Simulation' fits in
    Help will be really appericiated.
    Thanks

  • Want A Sample PayRoll Report

    Hi All Experts,
        I am new to ABAP-HR,I want One Sample PayRoll Report.Thanks in Advance.

    am providing you the e-link :
    http://cma.zdnet.com/book/abap/
    http://cma.zdnet.com/book/abap/index.htm
    http://www.sapdevelopment.co.uk/
    http://www.sap-img.com/
    http://juliet.stfx.ca/people/fac/infosys/abap.htm
    http://help.sap.com/saphelp_46c/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_46c/helpdata/en/d6/0db357494511d182b70000e829fbfe/frameset.htm
    http://www.henrikfrank.dk/abapexamples/SapScript/sapscript.htm
    http://www.sapgenie.com/abap/example_code.htm
    http://www.geocities.com/SiliconValley/Campus/6345/abapindx.htm
    http://help.sap.com/printdocu/core/Print46c/en/Data/Index_en.htm
    http://help.sap.com/saphelp_40b/helpdata/en/4f/991f82446d11d189700000e8322d00/applet.htm
    http://www.sap-img.com/abap-function.htm
    http://www.sapgenie.com/abap/code/abap19.htm
    http://www.sap-img.com/abap/more-than-100-abap-interview-faqs.htm
    http://www.planetsap.com/Tips_and_Tricks.htm
    http://help.sap.com/saphelp_40b/helpdata/ru/d6/0dc169494511d182b70000e829fbfe/applet.htm
    http://www.henrikfrank.dk/abapexamples/SapScript/symbols.htm
    http://www.henrikfrank.dk/abapexamples/index.html
    http://sap.ittoolbox.com/documents/document.asp?i=752
    http://members.aol.com/_ht_a/skarkada/sap/
    http://sappoint.com/abap/
    http://members.tripod.com/abap4/SAP_Functions.html
    http://members.ozemail.com.au/~anmari/sap/index.html
    http://www.planetsap.com/Userexit_List.htm
    http://www.planetsap.com/Tips_and_Tricks.htm
    http://www.kabai.com/abaps/q.htm
    http://www.planetsap.com/Userexit_List.htm
    http://help.sap.com/saphelp_bw21c/helpdata/en/c4/3a8090505211d189550000e829fbbd/frameset.htm
    http://www.sapgenie.com/abap/bapi/example.htm
    http://help.sap.com/saphelp_45b/helpdata/en/65/897415dc4ad111950d0060b03c6b76/content.htm
    http://www.sap-basis-abap.com/index.htm
    http://help.sap.com/saphelp_40b/helpdata/en/fc/eb2c46358411d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_46c/helpdata/en/aa/aeb23789e95378e10000009b38f8cf/frameset.htm
    http://www.geocities.com/ResearchTriangle/1635/system.html
    http://www.sapdesignguild.org/resources/MiniSG/3_Managing/3_Functions_Table_Control.htm
    http://help.sap.com/saphelp_45b/helpdata/en/d1/801bdf454211d189710000e8322d00/content.htm
    http://www.sapfans.com/sapfans/repos/saprep.htm
    http://www.planetsap.com/howdo_a.htm
    http://help.sap.com/saphelp_util464/helpdata/en/69/c2516e4ba111d189750000e8322d00/content.htm
    http://www.sapgenie.com/abap/smartforms_detail.htm
    http://www.sap-img.com/abap.htm
    http://help.sap.com/saphelp_46c/helpdata/en/fc/eb2d67358411d1829f0000e829fbfe/content.htm
    http://www.geocities.com/victorav15/sapr3/abap.html
    http://www.henrikfrank.dk/abapexamples/SapScript/sapscript.htm
    http://abap4.tripod.com/Other_Useful_Tips.html
    http://help.sap.com/saphelp_45b/helpdata/en/cf/21ee2b446011d189700000e8322d00/content.htm
    http://www.sap-basis-abap.com/sapmm.htm
    http://sap.ittoolbox.com/nav/t.asp?t=303&p=448&h1=303&h2=322&h3=448
    http://sapfans.com/
    http://cma.zdnet.com/book/abap/ch03/ch03.htm
    http://help.sap.com/saphelp_40b/helpdata/en/4f/991f82446d11d189700000e8322d00/applet.htm
    http://sappoint.com/abap/
    http://www.henrikfrank.dk/abapuk.html
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/abapindx.htm
    http://www.sapgenie.com/abap/index.htm
    http://www.sap-img.com/abap.htm
    http://www.sapdevelopment.co.uk/tips/tipshome.htm
    http://help.sap.com/printdocu/core/Print46c/en/Data/Index_en.htm
    http://sap.ittoolbox.com/nav/t.asp?t=322&p=322&h1=322
    http://sap.ittoolbox.com/nav/t.asp?t=448&p=448&h1=448
    http://www.thespot4sap.com/
    http://www.kabai.com/abaps/q.htm
    http://www.geocities.com/mpioud/Abap_programs.html
    http://www.sapgenie.com/abap/tips_and_tricks.htm
    http://www.sapassist.com/code/d.asp?whichpage=1&pagesize=10&i=10&a=c&o=&t=&q=&qt=
    For FAQ
    http://www.sap-img.com/abap/more-than-100-abap-interview-faqs.htm
    http://www.sapgenie.com/faq/abap.htm
    BAPI-step by step
    http://www.sapgenie.com/abap/bapi/example.htm
    Weblog for receive email and processing it through ABAP
    /people/thomas.jung3/blog/2004/09/09/receiving-e-mail-and-processing-it-with-abap--version-610-and-higher
    For Logical database
    http://help.sap.com/saphelp_46c/helpdata/en/9f/db9bed35c111d1829f0000e829fbfe/frameset.htm
    very useful
    http://help.sap.com/saphelp_46c/helpdata/EN/35/2cd77bd7705394e10000009b387c12/frameset.htm
    Useful link to websites
    http://www.hernangn.com.ar/sap.htm
    Useful for background
    http://www.sappoint.com/basis/bckprsng.pdf
    http://help.sap.com/saphelp_nw04/helpdata/en/6f/08703713bf277ee10000009b38f8cf/frameset.htm
    http://publib.boulder.ibm.com/infocenter/wbihelp/index.jsp?topic=/com.ibm.wbix_adapters.doc/doc/mysap4/sap4x41.htm
    Table control in BDC
    http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm
    For posting weblog,
    /people/sap.user72/blog/2005/06/28/sdn-weblogs-making-it-easier
    Dynamic Internal table -weblog in sdn
    /people/subramanian.venkateswaran2/blog/2004/11/19/dynamic-internal-table
    Smartforms
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    Workflow
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    ALV
    http://www.geocities.com/mpioud/Abap_programs.html
    Mail
    http://www.geocities.com/mpioud/Z_EMAIL_ABAP_REPORT.html
    http://www.thespot4sap.com/Articles/SAP_Mail_SO_Object_Send.asp
    http://www.sapdevelopment.co.uk/reporting/email/attach_xls.htm
    BOM Explosion
    /people/prakash.singh4/blog/2005/05/15/explode-boms-in-enterprise-portal-using-htmlb-tree--part-1-abap
    BOM
    http://help.sap.com/saphelp_erp2005/helpdata/en/ea/e9b7234c7211d189520000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/d1/2e4114a61711d2b423006094b9d648/frameset.htm
    http://www.sap-img.com/sap-sd/sales-bom-implementation.htm
    http://www.sap-basis-abap.com/sappp007.htm
    OLE
    http://www.sapgenie.com/abap/ole.htm
    http://help.sap.com/saphelp_46c/helpdata/en/59/ae3f2e488f11d189490000e829fbbd/frameset.htm
    ALVGRID with refresh
    http://www.geocities.com/mpioud/Z_DEMO_ALV_REFRESH_BUTTON.html
    For language setting and decimal separator
    /people/horst.keller/blog/2004/11/16/abap-geek-7-150-babylonian-confusion
    Oracle queries
    http://sqlzoo.net/
    To format SQL
    http://www.sqlinform.com/
    SCOT settings
    http://www.sap-img.com/basis/basis-faq.htm
    Status Icon ALV,Table Control,Tab Strip
    http://www.sapdesignguild.org/resources/MiniSG-old/from_develop/norm_status_icons.htm#positioning_4
    ALV Group Heading
    http://www.sap-img.com/fu037.htm
    For multiMedia
    /people/thomas.jung3/blog/2005/05/11/using-classic-activex-controls-in-the-abap-control-framework
    Uploading LOGO in SAP
    http://www.sap-img.com/ts001.htm
    LSMW
    http://www.sap-img.com/sap-data-migration.htm
    http://www.sapgenie.com/saptech/lsmw.htm
    http://sapabap.iespana.es/sapabap/manuales/pdf/lsmw.pdf
    http://www.sap.info/public/INT/int/glossary/int/glossaryletter/Word-17643ed1d6d658821_glossary/L#Word-17643ed1d6d658821_glossary
    Here are the two links which contains lots of PDFS:
    http://www.easymarketplace.de/online-pdfs-q-s.php
    http://www.consolut.de/saphelp/sap_online_help.html

  • Cost center and org unit missing in payroll report

    Hi Gurus,
    Our HR administrator has moved a position from one org. unit to another via PP01 - she has done this via a change action and not copy thus the record went missing and caused staff for that position with no Cost Center & Org Unit.
    Although the position has been reinstated back to the old org. unit, and relationship shows correct cost center and org. unit - still the payroll report does not pick up the same attributes.
    Please help.
    Thanks,
    MVM

    hi ,
    is the cost center data correctlly stays in 0001 infotype  ?
    if your connections are normal in pp01 1001 infotype , you can run rhintexx programs.

  • Concurrent Employment & BW HR/Payroll Reporting (PNP vs PNPCE)

    Has anyone implemented BW HR/Payroll reporting with concurrent employment?  What (if anything) needs to be done to the BW HR/Payroll extractors? How is the "central persons" concept portrayed in BW?  Is there any documentation on BW & concurrent employment?

    There were no responses to this query the last time. I would like to ask this question again. Has anyone implemented BI HR reporting with concurrent employment turned on the ECC side? I'd really appreciate if you could share any documentation on this subject.

  • Adding Selection Criteria in Any Payroll Report(PTax)

    Dear Experts,
       Can you please tell me the Payroll Report especially with the Professional Tax having the Column field of "Business Area". My Client want the report with Business Area Wise where it will helpful to identify the Region or Branch Office,when the G/L Account in FI at the time of mismathching.
      The Personnel area's are not equal to the Business area for my client.
    I have tried in the Table T599B, but it is not working . Please tell me if there is any specific to work on this table.
    Please throw some light..
    Thanks
    Praveen

    Dear All,
       As I added the Business Area field in  in Selection Field with use of "Further selection" button of the transaction PC00_M40_PTX,and generated the report..
    In the Generated report I have selected the "Change Layout " button and it doesnt shows the Business area Field.
    Please explain if any config is required..
    Thanks

  • Reporting authorization in BW 3.5: use of colon ":"

    Hello,
    we are using in our BW 3.5 system a reporting  authorization object ZAUTHOBJ. ZAUTHOBJ is defined on exactly one InfoObject ZINFOBJ (e.g. country).
    Some of our users have the following authorization
       ZINFOBJ = :
    so that they  view the values of an KYF aggregated with the characteristic ZINFOBJ. They cannot drill down to a certain value of ZINFOBJ, e.g. by filtering to a specific value.
    We are facing the following problem:
    If the user with the ":" authorization defines a query with an excluding filter on ZINFOBJ, e.g. excluding certain values, the query aggregates the KYF on the remaining values of the characteristic ZINFOBJ.
    So by this "backdoor" the user can find out the KYF of specific ZINFOBJ values.
    Is this a feature or a bug of SAP BW?
    Best regards
    Lothar

    Hi,
    We can think it as Back door or we can say We are misusing the concept of : in authorization.
    If we have to use ZAUTHOBJ = :, in any case we are not going to give Country as the free characterstic , Part of rows, and filter area.
    That means noware we use the country in the query.
    With rgds,
    Anil Kumar Sharma .P

  • Certified Payroll Report: WH347

    Hi Gurus,
    I am in the process of creating the Certified Payroll Report for US. It is a very common report for US tax processes, and it is hard to believe that, it does NOT come seeded.
    It would be great, if you could share it with me, if you have it.
    Thanks a bunch!
    - Viky

    try wage type reporter.
    PC00_M99_CWTR 
    you can select the specific wage types you are needing.
    regards
    stefan

Maybe you are looking for

  • PF Calculation for Employee Joined After 15th of the month.

    Hi All, I have an issue with the PF calculation where the system is calculating the period the person worked in the month not the full period while running his payroll in the next month. Exmp: Basic Salary 10000, PF- 12%=1200 Emp Joined on 18th of ap

  • Two iPads, an iPhone, an iPod, and a Nano

    First off, Merry Christmas to everyone! And it has been a very merry christmas for my family (me, my wife, and daughter.)  And this is because my mother gave us super gifts! An iPad for me and my wife, and a Nano for my 6-year-old daughter.  My wife

  • GRC 10.1 Access Request - Provisioning Logs Not Available

    Hello guys, I am currently running into an issue with the user provisioning logs, the Request Approval notification which is sent to the user are at the end of an approved access request are as below and the Provisioning Logs tab is throwing a timeou

  • Integration of SAP MI 7.1 and SAP PI 7.1 on the same Server

    Hi dear SAP Community, Does anyone know, if it's possible to use MI 7.1 and PI 7.1 on one server to create a big Enterprise Service Bus? Thank you! Best Regards Philipp

  • What new features in Lightroom 6 ?

    With Adobe Photoshop Lightoom 6 expected to be released later this year, what new featured would you like to see in the new version ?.