Replacement for Obsolete Payroll schemas 'KARMC' and 'XEDT' in ECC 6.0

Hi Experts,
I am working in a upgradation project. In HR Module (Payroll schema). Any one can help me out what are the replacement for obsolete payroll schemas 'KARMC' and 'XEDT' in ECC 6.0. (These two are there in 4.6C but, not in ECC 6.0)
Thanks in Advance,
Ramesh.

Hi Experts,
I am working in a upgradation project. In HR Module (Payroll schema). Any one can help me out what are the replacement for obsolete payroll schemas 'KARMC' and 'XEDT' in ECC 6.0. (These two are there in 4.6C but, not in ECC 6.0)
Thanks in Advance,
Ramesh.

Similar Messages

  • Payroll scheme - quarter and semi-annual payments

    Hi.
    I have the following questions concerning Payroll scheme I am working on.
    How can I check the following conditions?
    1. A wage type (WT) for quarter payment has not to be paid to a worker if he was hired during the last month of a quarter. For example, a worker was hired in September 01, 2011 - thus, in September a WT shouldn't be paid to him, 'cause September is the last month of a 3rd quarter.
    2. Another WT for semi-annual payment has not to be payed to a worker if he has been hired during the last 2 months of a half year period. For example, the worker was hired in November 01, 2011 - thus, in November and December a WT for semi-annual payment shoudn't be paid to him.
    Please, give me any tips to solve the issue, thank you.

    rkvarma,
    with which function will I be able to determine the months to start from?
    I want to make the following:
    - for quarter payments - to determine months 3, 6, 9, 12, and if employees were hired during these months, then the WT shouldn't be paid.
    - for semi-annual payments - to determine months 5,6 and 11,12, and if employees were hired during these months, then the WT shouldn't be paid.
    How to do this?

  • Replacements for obsolete function modules

    Hi,
    What is the best way to find out the replacement for the obsolete function modules? We are starting an upgrade project and are required to replace the obsolete function modules used in that. So before starting that I want to keep a list of obsolete function modules and their replacements ready.
    SS

    Hi,
    RODIR table gives not only FM, all obsoletes types.
    if you dont find, best way is when we check EPC for the program,
    in call function interface warnings shows, obsolete function modules.
    or do UCCHECK it will both obsolete and suggested replacements.
    Thanks
    Vinod

  • Replacement for obsolete 'FM NAMETAB_GET'

    Hi,
       We have been upgrading SAP from 4.6B to ECC6.0...During this process we have encountered an obsolete 'FM NAMETAB_GET', but as no documentation is available for the same, we are looking for an alternative / replacement for the 'FM NAMETAB_GET'...All suggestions are welcome...
    Thanks in advance

    Hi Nishant,
    here is the sample code for the function module NAMETAB_GET
    data:    begin of nametab occurs 60.
          include structure dntab.
    data:    end of nametab.
    call function 'NAMETAB_GET'
       exporting
         langu          = sy-langu
        tabname        = table
      tables
         nametab        = nametab
       exceptions
        no_texts_found = 1.
    REPLACEMENT
    data:    begin of nametab occurs 60.
            include structure DFIES.
    data:    end of nametab.
    CALL FUNCTION 'DDIF_NAMETAB_GET'
      EXPORTING
        TABNAME           = table
    TABLES
       DFIES_TAB         = nametab
    EXCEPTIONS
       NOT_FOUND         = 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.
    rewards if useful......

  • Replacement for obsolete field groups in ECC 6

    Hi ,
    I am working in a upgrade project from ecc4.7 to ecc6
    So i am finding difficulties for
    replacing FIELD groups.
    FIELD-GROUPS : HEADER, DETAIL.
    INSERT :    w_EBAN_TMP-EKORG
                w_EBAN_TMP-EKGRP
                w_EBAN_TMP-BANFN                 "Requisition Number
    INTO HEADER.
    INSERT      w_EBAN_TMP-EBELN                 "Purchase Order Number
                w_EBAN_TMP-EKORG                 "Purchase Org.
                w_EBAN_TMP-EKGRP                 "Purchase Group
                w_EBAN_TMP-BEDAT                 "Purchase Order Creation Date
                w_EBAN_TMP-BADAT                 "Requisition Creation Date
                w_EBAN_TMP-ESTKZ                 "(Manually or  MRP)
                w_EBAN_TMP-MATNR                 "Part number
                w_EBAN_TMP-BANFN                 "Requisition Number
                w_EBAN_TMP-BADAT                 "PO Creation Date
                w_EBAN_TMP-NAME1                 "Vendor Name
                TOT                            "used to get the avg
                TOTAL05                        " <= 05 days
                TOTAL10                        " <= 10 days
                TOTAL15                        " <= 15 days
                TOTAL20                        " <= 20 days
                TOTAL25                        " <= 25 days
                TOTAL30                        " <= 30 days
                TOTAL31                        " >= 31 days
                VALUE05
                VALUE10
                VALUE15
                VALUE20
                VALUE25
                VALUE30
                VALUE31
                VIAMAN                        "Created Manually
                VIAMRP                        "Created via MRP
                w_EBAN_TMP-URGENT               "Urgent mark         "AB25385
      INTO DETAIL.
    WHILE ,IN EXTENDED SYNTAX CHECKING A MESSAGE IS GIVING THAT .
    "  " FIELD-GROUPS ARE NO LONGER USED.
    The current ABAP command is obsolete
    Field groups cannot be created in the OO context.
    Internal Message Code: FIELD-GROUPS 000
    (The message cannot be hidden using pseudo-comment "#EC .., bzw. durch SET
    EXTENDED CHECK OFF/ON)  ""

    Extract from [Type Definitions and Data Declarations|http://help.sap.com/abapdocu_70/en/ABENABAP_OBJECTS_DIFF_TYPES_DATA.htm]
    No Definition of Field Groups in Methods
        The statement FIELD-GROUPS is not allowed in methods.
    Error message in methods if the following syntax is used:
    METHOD ...
      FIELD-GROUPS fg.
    ENDMETHOD.
    Reason:
    An [extract dataset|http://help.sap.com/abapdocu_70/en/ABENEXTRACT_DATASET_GLOSRY.htm] currently exists only as a global object of the [main program|http://help.sap.com/abapdocu_70/en/ABENFRAME_PROGRAM_GLOSRY.htm]. Therefore the field groups can only be defined globally in the main program. However, the definition of the field group structure, which is enerated at runtime by the statement INSERT ... INTO fg, can also be executed in methods.
    (SCI is "picky")
    Regards,
    Raymond

  • Is there a replacement for CS6 coming out soon and what will it be called

    Is there a replacement coming out for CS 6 and what will it be called

    Adobe still sells CS6 (for now anyway).
    http://www.adobe.com/products/catalog/cs6._sl_id-contentfilter_sl_catalog_sl_software_sl_c reativesuite6.html
    Click the Buy button then I want to buy: Upgrade. Then complete your purchase.
    However, the days of upgrading every other version are gone. Before Adobe released the Cloud, starting with CS6, they amended the upgrade policy and were requiring upgrades with every version.
    But that all disappeared soon after when Adobe chose to discontinue perpetually licensed versions altogether last year and go 100% Cloud (subscription) only when they launched CC. They're still selling CS6 for those who insist on it but it'll no doubt disappear over time and there will be no CS7 perpetually licensed version.
    The future in Adobe's eyes without doubt is the Cloud, requiring monthly payments and automated periodic license checks on Adobe servers via the internet.

  • Function Module for getting Payroll start date and end date

    Hi Gurus,
      If I give one date then is there any function module to find the payroll period start date and enddate for that given date?
    Points will be awarded
    Thanks
    Ravi

    Hi,
      Try these FMs
    HR_PAYROLL_PERIODS_GET
    HR_BEN_PAY_GET_PAYROLL_PERIODS
    HR_PAYROLL_PERIOD_GET
    HR_P06I_GET_PAYROLL_PERIOD
    Regards,
    PRashant

  • About ordering replacement for faulty earbuds...and serial numbers...

    hello...
    i saw this user called "tsik" in this forum who says :
    "yes they are you just need to fill out a form online and they will send you a new pair in a day or two " about faulty earphones.....
    well..can some1 post the link to this form?? apple's site is very difficult to navigate....
    PLUS : i have registered my ipod about 2 weeks back...how do i see it on the site? i mean...suppose i am not carrying the pod right now and need my serial no. how do i check it up on apple's site??

    Click Here to go to the Apple iPod Service site for the replacement of your headphones.
    For help on finding your iPod serial number in iTunes click here.
    I hope these links work for you!
    -Matt
    eMachines   Windows XP Pro   5G 30GB Black iPod

  • Better replacement for Obsolete statement

    Hi ,
    During upgradation to ECC 6.0 , at many places in order to correct the Unicode error we need to use the Move statement. Since the Move-Corresponding is an obsolete statement now , so we can't use it any more. It is  very difficult and highly time consuming to move huge structures and internal tables field by field . Is there any alternative to this ?

    Move-Corresponding is an obsolete statement now
    Who said ????
    at many places in order to correct the Unicode error we need to use the Move statement
    What type of error ?

  • HT6154 New Battery replaced for iphone4, got a diagnostic and its NOT the battery it drains horrible by itself, i barely use my phone. HELP im about to erase everything to figure out the prob!

    Drains really bad, i've tried everything like deleting apps, turning off stuff, turning off notifications, downloaded the app battery monitor etc nothing is working.

    Unless Apple replaced your battery, and it appears they didn't, you're pretty much on your own now. Have you tried going back to whoever replaced your battery? That's gonna be your only choice now, because if a third-party replaced your battery, Apple won't touch your phone now.

  • Replacement for FM  WS_MSG as it is obsolete in ECC6.0

    HI ALL,
                  can you please suggest me the replacement for obsolete  FM  WS_MSG.

    Try with
    HELP_VALUES_GET_WITH_VALUE
    POPUP_TO_DISPLAY_TEXT
    Regards.

  • Replacement of Obsolete Fm HR_DISPLAY_BASIC_LIST in ECC6.0 ??

    While upgrading to ECC6.0 (unicode enviromnent), what should be replacement for
    obsolete funciton module HR_DISPLAY_BASIC_LIST  ??
    (if suggesting REUSE_ALV_GRID_DISPLAY, please check the parameters and feedback).
    thanks,
    Susan

    Hi Remi,
    can you help me in replacing the below , as facing problem in pameter matching:
    CALL FUNCTION 'HR_DISPLAY_BASIC_LIST'
           EXPORTING
                BASIC_LIST_TITLE     = SY-TITLE
                FILE_NAME            = MYREPORT
                HEAD_LINE1           = P_RECORD_CONTROL-RECORD_TITLE
                HEAD_LINE2           = HEADLINE2
                FOOT_NOTE3           = P_TEMSE_OBJECT-FULL_NAME
                LAY_OUT              = 1  "Table ctrl error for 20+ cols
                LIST_LEVEL           = P_RECORD_CONTROL-SCREEN
                CURRENT_REPORT       = MYREPORT
           TABLES
                DATA_TAB             = T_INPUT_TABLE
                FIELDNAME_TAB        = P_FIELD_NAME_TABLE
           EXCEPTIONS
                DOWNLOAD_PROBLEM     = 1
                NO_DATA_TAB_ENTRIES  = 2
                TABLE_MISMATCH       = 3
                PRINT_PROBLEMS       = 4
                OTHERS               = 5.
    thanks & regards,
    Susan

  • Replacement for 'WS_MSG'

    Hi All,
            Can anyone suggest a replacement for obsolete FM "WS_MSG".?
    Thanks ,
    Vasuki

    Refer to the below thread -
    is 'POPUP_TO_DISPLAY_TEXT' obsolete ..if so how to check
    Please refer to the earlier threads in the Forum before posting a new thread.

  • Requesting help-Schema creation and databinding

    We are using Livecycle ES 2, I am facing issues in traversing forms from one stage to another, forms are not holding datas from the previous stages.
    The steps which I followed are,
    1) Created schema to define the fields and data types
    2) Created two new forms in designer , to which schema has been binded to corresponding fields(data View ->> Create Connection->> Schema)
    3) Created a process, created two XML variables(xfaform data type has not been found!)  to hold the created forms
    4) Form1 has been mapped to XMLVariable1
    5) Form2 has been mapped to XMLVariable2
    6) On process, in stage1 - Form1 should appear and in stage2 - Form2 should appear to the end user
    7) in between stage1 and stage2, a setvalue stage is there to map the common data from form1 to form2
    8) So in stage2, user will get form2 well binded with the data from form2
    + few extra fields for user inputs
    9) To map the  data from form1 to form2, I am using "Location-Expression"
    property of setvalue stage
    10) "Location-Expression" is using the XMLvariables - drill down
    XMLVariable2(/process_data/IMFormData/xdp/datasets/data) assign
    XMVariable2(/process_data/FormData/xdp/datasets/data)
    But, when the form reaches stage2, form2 doesnt holding the data from
    form1
    Please help me to sort it out.Also, please let me know if there any tools or tips with you to create schema in much faster and efficient way.

    You do not need a schema (but you can use one if you need it). The form design is in fact a definition of the data structure. By default when a form is created without a schema the fields get Normal binding which allows data files with nodes and structure that have the same name as the field to populate those fields.
    If you still want to create a schema ...you can go into the File/Form Properties/Preview tab and create sampel data. This sample data file can be used by many programs that convert an XML file into a schema. Just do a search in teh web for xml to schema creation and you will get many hits.
    Lastly you coudl even use the sample XML file as the input file (Designer's Data connections allow for a sample xml file as well).
    Hope that helps
    Paul

  • Pthread_cond_timedwait replacement for iOS (monotonic/mach time)

    Hi,
    I'm interested in a pthread_cond_timedwait replacement for iOS. On Android and Linux, the monotonic time could be chosen as a base time, however, on iOS, monotonic time (or mach time) is not supported for this function.
    Is there any suitable replacement for pthread conditional variables with monotonic time support?
    Thanks a lot.
    Regards,
    Michal

    Have you considered using GCD? I am slowly and happily forgetting anything I ever knew about pthreads. I don't know about that function but GCD supports semaphores with nanosecond timeout precision.

Maybe you are looking for

  • Grouping of vendor's for reporting purpose

    Dear Experts, i have an issue where i have different vendor code (For example - IBM- Mumbai, IBM-Bangalore,IBM- US,IBM-Germany). i have created different vendor code for all these companies. Now i want to link all these vendors under single grouping

  • Payment wizard, Invoice devided on more than one bank

    Dear Ladies and Gentlemen, our costumer has the following problem: By using the payment wizard for creditors you have the possibility to choose banks from which the payments will be transferred. This happens in step 5 of 9. You can insert the desired

  • Encoding error occurs using parameter "default path for scripts"

    Hello, assume we have a script "/home/artur/tymczasowe/test.sql". I can execute it using SQL Developer by: @/home/artur/tymczasowe/test.sql Everything works as expected. Then I set parameter "Tools - Preferences - Database - Worksheet - Default path

  • Is Aperture 3.3 for me? I used to use picnik (don't laugh) :)

    I recently upgraded to a 2012 MacBook Air 11 inch with 4GB of memory, 4,000 graphics etc. I take pictures with my Sony Cyber-shot 14.1 MP, 4x optical zoom, retractable lenses that says Carl Zeis Vario Tessar 2,7-5,7/4,7-18,8, my iPhone 4s, and my bui

  • Standard vs. Enterprise - How to determine

    What is the plSQL to determine which version of oracle I have installed--- standard or enterprise edition? I tried the v$version and was unable to determine said information.