Sort remuneration statement (report RPCEDTP0)

Dear gurus,
I need to find an exit for report RPCEDTP0, because a need to sort the remuneration statement by name and last name.
The standard button SORT ORDER from report RPCEDTP0 is not giving me what I need...
Does anyone know something that may help me?
Thank you in advance,
PC

Hi Ted Dinh!
Your advice seemed to be such a good one... but I'm not having success
I created an enhancement in form 'FILL_SORT_CONDITION_TABS' ( include: 'LRPPNTOC') and inserted this code inside it:
  SORTORDERS-FIELDNAME = 'ENAME'.
  SORTORDERS-POSITION = '26'.
  APPEND SORTORDERS.
But when I click on button 'SORT ORDER'... I don't see any difference..
Do you have some idea of what can be happening?
Regards,
Priscila

Similar Messages

  • Payroll Remuneration Statements - Print Entire History for one employee?

    Has anyone found a way to print an employee's complete historical list of remuneration statments as a group rather than selecting them one at a time and printing them individually?
    Our payroll manager gets two or three court subpoenas per month to provide individual copies of all remuneration statements for a single  This can total more than 200 statements.  It takes a lot of time to individually display each statement and print it before moving on to the next one.
    Has anyone developed a report that could print all of an employee's statements for a selected time period without the need to print them individually?
    We would appreciate any help you can provide.
    Thanks!
    Robin

    Hi Robin - Here's an idea that won't require any programming at all (hope it works for you!).
    You can run the paystub program manually with a list of personnel numbers - so one execution of the program (per payroll area) will print stubs for all the employees you selected. Here's how I would do that.
    First - determine the payroll form variant used for your paystub; that can be found in the variant for your pre-DME program. Run transaction pc00_m10_cdtc and bring up the variant you use for running pre-DME in your regular payroll runs. The payroll form variant name is in the 'Display variant payroll form' field.
    Second - Run transaction pc00_m10_cedt, and use the variant you found from the previous step. Enter the list of personnel numbers and the pay period you want to print, then execute the report. You should get a list of all the paystubs for those personnel numbers.
    Keep in mind that you have to run this per payroll area. You can keep the same personnel number list each time, just change the payroll areas each time you run it.
    You could keep an Excel spreadsheet during the day that has the list of personnel numbers, and then at the end of the day copy & paste them into the selection screen of pc00_m10_cedt. When you go into the extended maintenance for the personnel number field, you can paste the whol list there by pressing Shift+F12 (or select the right icon).
    Hope that works for you!

  • Send a remuneration statement (paystub) as a PDF attachment by e-mail

    Hi,
    Does anybody send to their employees remuneration statement (paystub) as a PDF attachment by e-mail?
    Could you please share the method that you using for it and advice why you choose this method?
    I need to analyse at least two options:
    u2022     Sending standard SAP Remuneration FORM
    u2022     Sending custom made Remuneration FORM (more relevant to my situation)
    Thank you in advance,
    Yutah

    Thank you Rohan,
    It may work for standard SAP payslip form but still need to find out how to send it out by e-mail automatically after pay-run is done to a bunch of employees.
    Is there any standard solution or I need to create custom program to do it?
    Any idea about custom made payslip form.
    Right now we create a text file which we send to third party for payslip printing and have a custom made report which reads this file if we need to display/print payslip in house.

  • Comparitive Statement report

    Hi All,
    I am working on comparitive statement report,i am getting the output in horizontal rows in ALV.
    But i have to get it like ME49 output. i.e.,
                                      Vendor number----
    Vendor Number
                                            100016----
    100017
    Gross Price    200----
    250
    Vat                8.00----
    4.00
    Discount        1.00----
    1.00
    i have tried it using fieldcatalog_merge, list_display,Grd_dislay,but it did not work
    can anybody help me out to put these horizontal rows,vertically  like as above mentioned.
    Thanks in Advance.
    With Regards,
    Sharmishta.

    see the following example
    *REPORT z_alv_hierseq_list.
    Program with FM REUSE_ALV_HIERSEQ_LIST_DISPLAY                    
    TYPE-POOLS: slis.                    " ALV Global types
    CONSTANTS :
      c_x VALUE 'X',
      c_gt_vbap TYPE slis_tabname VALUE 'GT_VBAP',
      c_gt_vbak TYPE slis_tabname VALUE 'GT_VBAK'.
    SELECTION-SCREEN :
      SKIP, BEGIN OF LINE,COMMENT 5(27) v_1 FOR FIELD p_max.    "#EC NEEDED
    PARAMETERS p_max(02) TYPE n DEFAULT '10' OBLIGATORY.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN :
      SKIP, BEGIN OF LINE,COMMENT 5(27) v_2 FOR FIELD p_expand. "#EC NEEDED
    PARAMETERS p_expand AS CHECKBOX DEFAULT c_x.
    SELECTION-SCREEN END OF LINE.
    TYPES :
    1st Table
      BEGIN OF ty_vbak,
        vbeln TYPE vbak-vbeln,             " Sales document
        kunnr TYPE vbak-kunnr,             " Sold-to party
        netwr TYPE vbak-netwr,             " Net Value of the Sales Order
        erdat TYPE vbak-erdat,             " Creation date
        waerk TYPE vbak-waerk,             " SD document currency
        expand TYPE xfeld,
      END OF ty_vbak,
    2nd Table
      BEGIN OF ty_vbap,
        vbeln TYPE vbap-vbeln,             " Sales document
        posnr TYPE vbap-posnr,             " Sales document
        matnr TYPE vbap-matnr,             " Material number
        arktx TYPE vbap-arktx,             " Material description
        netwr TYPE vbap-netwr,             " Net Value of the Sales Order
        waerk TYPE vbap-waerk,             " SD document currency
      END OF ty_vbap.
    DATA :
    1st Table
      gt_vbak TYPE TABLE OF ty_vbak,
    2nd Table
      gt_vbap TYPE TABLE OF ty_vbap.
    INITIALIZATION.
      v_1 = 'Maximum of records to read'.
      v_2 = 'With ''EXPAND'' field'.
    START-OF-SELECTION.
    Read Sales Document: Header Data
      SELECT vbeln kunnr netwr waerk erdat
        FROM vbak
          UP TO p_max ROWS
        INTO CORRESPONDING FIELDS OF TABLE gt_vbak.
      IF gt_vbak[] IS NOT INITIAL.
      Read Sales Document: Item Data
        SELECT vbeln posnr matnr arktx netwr waerk
          FROM vbap
          INTO CORRESPONDING FIELDS OF TABLE gt_vbap
           FOR ALL ENTRIES IN gt_vbak
         WHERE vbeln = gt_vbak-vbeln.
      ENDIF.
    END-OF-SELECTION.
      PERFORM f_display.
          Form  F_DISPLAY
    FORM f_display.
    Macro definition
      DEFINE m_fieldcat.
        ls_fieldcat-tabname = &1.
        ls_fieldcat-fieldname = &2.
        ls_fieldcat-ref_tabname = &3.
        ls_fieldcat-cfieldname = &4.       " Field with currency unit
        append ls_fieldcat to lt_fieldcat.
      END-OF-DEFINITION.
      DEFINE m_sort.
        ls_sort-tabname = &1.
        ls_sort-fieldname = &2.
        ls_sort-up        = c_x.
        append ls_sort to lt_sort.
      END-OF-DEFINITION.
      DATA:
        ls_layout   TYPE slis_layout_alv,
        ls_keyinfo  TYPE slis_keyinfo_alv,
        ls_sort     TYPE slis_sortinfo_alv,
        lt_sort     TYPE slis_t_sortinfo_alv," Sort table
        ls_fieldcat TYPE slis_fieldcat_alv,
        lt_fieldcat TYPE slis_t_fieldcat_alv." Field catalog
      ls_layout-group_change_edit = c_x.
      ls_layout-colwidth_optimize = c_x.
      ls_layout-zebra             = c_x.
      ls_layout-detail_popup      = c_x.
      ls_layout-get_selinfos      = c_x.
      IF p_expand = c_x.
        ls_layout-expand_fieldname  = 'EXPAND'.
      ENDIF.
    Build field catalog and sort table
      m_fieldcat c_gt_vbak 'VBELN' 'VBAK' ''.
      m_fieldcat c_gt_vbak 'KUNNR' 'VBAK' ''.
      m_fieldcat c_gt_vbak 'NETWR' 'VBAK' 'WAERK'.
      m_fieldcat c_gt_vbak 'WAERK' 'VBAK' ''.
      m_fieldcat c_gt_vbak 'ERDAT' 'VBAK' ''.
      m_fieldcat c_gt_vbap 'POSNR' 'VBAP' ''.
      m_fieldcat c_gt_vbap 'MATNR' 'VBAP' ''.
      m_fieldcat c_gt_vbap 'ARKTX' 'VBAP' ''.
      m_fieldcat c_gt_vbap 'NETWR' 'VBAP' 'WAERK'.
      m_fieldcat c_gt_vbap 'WAERK' 'VBAP' ''.
      m_sort c_gt_vbak 'KUNNR'.
      m_sort c_gt_vbap 'NETWR'.
      ls_keyinfo-header01 = 'VBELN'.
      ls_keyinfo-item01 = 'VBELN'.
      ls_keyinfo-item02 = 'POSNR'.
    Dipslay Hierarchical list
      CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
        EXPORTING
          i_callback_program      = sy-cprog
          i_callback_user_command = 'USER_COMMAND'
          is_layout               = ls_layout
          it_fieldcat             = lt_fieldcat
          it_sort                 = lt_sort
          i_tabname_header        = c_gt_vbak
          i_tabname_item          = c_gt_vbap
          is_keyinfo              = ls_keyinfo
          i_save                  = 'A'
        TABLES
          t_outtab_header         = gt_vbak
          t_outtab_item           = gt_vbap
        EXCEPTIONS
          program_error           = 1
          OTHERS                  = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                               " F_LIST_DISPLAY
          Form USER_COMMAND                                             *
    FORM user_command USING i_ucomm     TYPE sy-ucomm
                            is_selfield TYPE slis_selfield.     "#EC CALLED
      DATA ls_vbak TYPE ty_vbak.
      CASE i_ucomm.
        WHEN '&IC1'.                       " Pick
          CASE is_selfield-tabname.
            WHEN c_gt_vbap.
            WHEN c_gt_vbak.
              READ TABLE gt_vbak INDEX is_selfield-tabindex INTO ls_vbak.
              IF sy-subrc EQ 0.
              Sales order number
                SET PARAMETER ID 'AUN' FIELD ls_vbak-vbeln.
              Display Sales Order
                CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN.
              ENDIF.
          ENDCASE.
      ENDCASE.
    ENDFORM.                               " USER_COMMAND

  • Remuneration Statement Problem

    Hi Guys,
    I have a problem in remuneration statement in payroll,the problem is it is not printing whatever intput i am giving while configuring the form in PE51;i in details give what the step i have followed in payroll & also the error that i am facing at the end while running remuneration statement
    I first construct payroll area,wagetype,wagetype charectiristics,payscale area,payscale type,payscale group,payscale level in revise payscale group in IMG & then in 0008it i am saving all the necessary inputs & make the master record.Also configure other necessary inputs for the other it like o581,0582,0583....0590etc...
    Now i want to configure remuneration statement...so that i go to tcode PE51;i first coy standard remuneration statement(India) to a form "Zsurajit"
    Now choosing zsurajit,choose window checkbox click change double click on w1, against 01 group in ID i am giving my wagetype ,refresh,transfer & then save then choose cumulation id checkbox double click on earnings give my wagetype & in deduction also i am giving my wagetype in ids & transfer & save.i also check single field checkbox whether all the entry is correct or Not?
    Now i go to easy access,in payroll accounting i fist simulate,release,start,check,correction exit payroll against my payroll area.then in remuneration statement in payroll area & in personnel number give my inputs,choose my form name,print current period "A",print Retroactive runs 'X',layout of retroactive run "J",sort retroactive runs "1',output language b;but when i am executing no form or no value is coming message is coming Personnel number selected "1",personnel number printed "0",formatted form"0";when i am choosing number of test form 1 then i am just seeing the layout of the form but no value is coming.
    So my question is is the process i am following is ok?(I am running against standard schema & standard PCR) & also whether we have to give anything in test form while printing the form?
    So if you have any concern pls give your feedback.
    regards
    Surajit

    Make sure that u have included all the table names and feilds in PE51  Form or not
    cumulaton ids and Deductions and all those things
    Edited by: Sikindar on May 29, 2009 1:05 PM

  • Amount for wage type "Variable DA" not apeearing in Remuneration Statement

    I am learning Payroll-India on IDES 6.0. I have configured Dearness Allowance using "Incremental CPI slab based Calculation" method (not yet fully sure how I did it! will try to figure out!). I executed the "DA Report" for a personnel number and the VDA amount is computed there (it shows Rs. 1200). After this I used the "Start Payroll" to run the payroll for the personnel number. Tthe VDA amount is appearing in Infotype 0008 for the personnel number.  In the remuneration statement, neither the wage type text nor the amount is appearing ( I have done the necessary configuration to include the wage type in window W1).
    Please guide me on what could be going wrong.

    Dear
    showing data in the window .. you must have the Line Layout on Remuration.
    In Window must fill that values:
    SRG:           Table:             ID                   Long Text                         Ptype          Ctyp                                   Splits             Dsplits
    1     RT     /552     Difference prev. Period     01               1                                 *     *              
    1     RT     0001     Basic                          01               1                           *     *      
    1     RT     0002     House Rent                          01               1                           *     *
    Regerds,
    Rizwan

  • DA amount not appearing in infotype 008 & in Remuneration Statement

    I am learning Payroll-India on IDES 6.0. I have configured Dearness Allowance using "Incremental CPI slab based Calculation" method (not yet sure how I did it! will try to figure out!). I executed the "DA Report" for a personnel number and the VDA amount is computed there (it shows Rs. 1200). After this I used the "Start Payroll" to run the payroll for the personnel number. But the VDA amount is not appearing in Infotype 0008 for the personnel number. However, the text for the VDA wage type "Variable DA") is appearing. In the remuneration statement, neither the wage type text nor the amount is appearing ( I have done the necessary configuration to include the wage type in window W1).
    Please guide me on what could be going wrong.

    Hi,
    Now the VDA amount is appearing in infotype 0008 of the personnel number. I ran the DA batch program for the personnel number and then uploaded using sm35.
    After this, I started the payroll run for this personnel number, which was successful. But in the Remuneration Statement, neither the VDA text nor the VDA amount is appearing (I have done the necessary creation & transfer of the VDA wage type in Remuneration Statement).
    Please guide me.
    I have a related query. For the VDA wage type, I have set INVAL B in the wage type characteristics. Is it okay? If so, how should I create the entries for VDA wage type in the screen "Maintain Valuation of Base Wage Types" & in the screen "Calculate Eligibility for RAP's"?

  • Error while generating remuneration statement

    Hi
    I found an error, while generating remuneration statement. The error is "Start date 01.01.1800 is higher than end date 00.00.0000".
    Kindly help
    Shadeesh

    Hi shadeesh,
    Please check the payroll control record's start date and end date in PA03
    regards,
    Ayyaps

  • AR Customer statements report Page numbers Reset based on customer number

    Hello,
    In the AR Customer statements report, If I ran the report for multiple customers, page number has to be reset for each customer...
    Group Started like below,
    <?for-each-group:G_STATEMENT;STATEMENT_DATE?><?for-each-group:current-group();SEND_TO_ADDRESS_ID?>

    Hi Kittu,
    I got the answer using @section command.
    Below are the complete syntax in my case.
    Form field         --Xml Tag
    If Data Found --<?choose@section:?><?when:count(G_SETUP)!=0?>
    Group G_SETUP  --<?for-each@section:G_SETUP?>
    Group G_STATEMENT --<?for-each-group@section:G_STATEMENT;STATEMENT_DATE?><?for-each-group@section:current-group();SEND_TO_ADDRESS_ID?>
    Its working for me.
    Let me know if you required more information.
    Regards,
    Dasarath

  • Populating the Weekly Off's and Loss of Pay days in Remuneration Statement

    Hi Experts:
    I'm trying to Populate the Following information on the Remuneration Statement for the Payroll Period:
    1. Total Calender days.(used TKSOLL from WPBP)
    2. Total Actual Working days (used ADIVI)
    3. Total Weekly Off's
    4. Employee Worked days
    5. Loss of Pay days. ( I need AAUxx here)
    6. Holidays
    The first two fields i could able to populate, Please help me how to populate the rest of the fields.
    I'm using SAP standard remuneration statement and it has only few tables from which we have to pick the single fields. Can we assign any more tables for the Single fields.
    Thanks
    Srikanth Reddy

    Hai..
    configure the required wage types in AS IF principle of absences of the country node payroll.
    in pe51, add those wage types..

  • Financial Statements report - F.01

    Hello,
    I posted this question to the abap forum, but maybe you can help me better. As you know, the account amounts from the financial statement report come from financial documents. And when you create a financial document  you specify a document type(vendor invoice, vendor payment and many others). What i need to do is modify the report to show only amounts from certain types, not all types. For doing that, i need to know if there is a connection between the financial statement and the documents types. I searched the code of the report and i did not find anything relevant.
    Maybe you met this requirement before and talked with an abaper. If that is the case, maybe you can give me a suggestion.
    Thank you very much,
    Efren

    F.01 is build with the following tables.  You may go through each table to see if they are document type specific.  I would cautio if F.01 is the right report for you/your client.
    TABLES:   t001,  ska1,  bhdgd,
              t011,  skat,
              t011t, skb1,
              t009,  skc1a,
              t004,
              t009b,
              t009y.
    TABLES:   rfsdo.
    TABLES:   tgsb.
    TABLES:   fimsg.
    TABLES:   faglfreesel.

  • Document Date on Outgoing Payment/Statement Report PLD

    Hi,
    Is there a way to display the Document Date of the paid/outstanding invoice on the print layout for Remittances (Outgoing Payment) and Customer Statement (Ageing - Customer Statement Report)? At the moment it's only the Posting Date for the Outgoing Payment and Posting Date + Due Date for the Statement Report but would be great to have the Document Date too.
    Regards,
    Nat

    Hi Natalia,
    for adding the Document date to the Outgoing payments form you can add field via modification of the print layout. For example OVTG.Tax Date should represent the document date.
    I would like to know what is the scenario for the document date to be visible on the Aging report.
    Best Regards,
    Martin Slavik
    SAP Business One Solution Manager

  • New GL and Impact on BI Financial statement reports

    Dear All,
    I would like to know if and how the finacial statment reports  would be affected by using the new GL extractor 0FI_GL_14. New GL is being implemented on ECC,  hence the change in extractor in BI.
    Is there a standard cube that can be used for Financial statement reports(Balance Sheet comparision, BS by PC,P&L reporting by PC) for New GL.
    Currently we are getting our financial statement reports out of a Virtual cube which is based on a function module Module:RS_BCT_FIGL_DATA_GET_VC1.
    *Our current extractor for FIGL is 0FI_GL_4 .
    Appreciate your Input on this .

    Hi,
    You will find all the details here:
    http://help.sap.com/saphelp_nw70/helpdata/EN/49/5700570223413085021a8b4ef1087a/frameset.htm
    -Mayuri

  • Sales tax by state report in BI

    Hi Gurus,
    I have a requirement to design sales tax by state report in BI.
    Could you pls suggest how i need to approach.
    What is the standard datasource and standard DSO and cube.
    Do we have any standard sales tax by state standard query in BI.
    Regards
    Parnith

    Hi,
    I am not sure i got your question correctly (as you have not provided lot of information, its a generic question), so my answer will be, you can use the Datasource 2LIS_13_VDITM, which has the field MWSBP(tax), which brings tax information to BW and the same datasource also has Division, Sales District ,Sales Office etc, which can be used to derive State and you can stage this data in a billing item DSO (go to RSA1-- Business Content--> Datasources (select 2LIS_13_VDITM) and change grouping to Dataflow after and you will information about staging this datasource in BW (DSO, Cubes etc ).
    Cheers,
    CK

  • Income Statement Report from Flat File

    Dear Gurus,
    I'm in the process of creating an INCOME STATEMENT report from Flat File as for my learning purpose , can you please help me where to start in order to create the Flat File and how many KEY FIGURES & CHAR do I need.
    Thanks,
    -Neha

    Hi,
      As this is for your learning purpose, create the fields as per your requirement. Then create info objects of the same type in BI. Then you try to load the info cube from the flat file.
    for example: if my req is to have 4 fields like student name, marks, grade as my info objects. i have create the same fields in the flat file.
    Note: you can create the flat file in excel and save it as csv format.
    Edited by: arthishri on Sep 20, 2010 1:46 PM

Maybe you are looking for

  • Muse CC 2014.3 crashing on upload to FTP

    Though I've made updates to my site in before, Muse CC 2014.3 is now crashing on upload to FTP. I have tried to research this, but have yet to see an answer that fits. As I am only uploading changed content to my main home page it should not be diffi

  • Deprecated methods in Interfaces

    Hi all, I'm implementing an interface containing some deprecated methods. These deprecated methods have to be implemented, of course. If I compile my implementation I get deprecation warnings for these implemented methods. Does anyone know how I can

  • Documentation on Linking fields and adding formulas on PLDs

    Does anyone know of some good docs on  Linking fields and adding formulas on PLDs? Can't seem to find much. thanks

  • Profiler/CodeCoach not available.

    The profiler and code coach options are disabled on my run menu. I have installed OJVM, but I am using JDK1.4.1 and this seems to be the cause. The applications I am working on use JDK1.4.1 features so I can't compile them with 1.3... Is there anythi

  • PO Notification Error

    Hi, I have an issue with PO notifications,when a buyer approve a PO it goes to approver.Approver able to see the notification in the application and no notification goes to his mail all of sudden,previously it goes to mail. Regards, Sri