SAP HR MODULES

hi
what are the SAP HR Modules that I can specialize in as a SAP HR Support consultant?

Hi Vee Nel,
If you are working in a support project you can get expertise on the modules that are been used in that specific project.It all depends on the project which you are working or going to work.
In support projects you can expect lot of work if the project is not stabilised , and on the other hand you may not have hands on enough work if the project is stabilised.
Comming to Modules in HCM, as I  said earlier each client will have different modules and based on country specific too. If you are suppporting US clients then you will get a chance to work on OM PA TIme, Payroll ( some time upto gross calculations, and some times till net calculation) Travell, and Benefits. Compensation management, LSO, PD , TE will be used by some clients. Same with Indian and UK Clients too. It all depends on client and project which we are working on.
All the best.
Regards,
Sri..

Similar Messages

  • Exception handling for a standard SAP Function Module - the OO way

    Hello,
    I was wondering what is the correct way to call a standard SAP function module inside a method of global class.
    I want to display the error via the:
    get_text( ) and get_longtext( ) methods.
    I don't want to use the sy-subrc check. Is this possible?
    My example doesn't seem to work...
    See example bellow:
    DATA: ex_object_cx_root TYPE REF TO cx_root,
          ex_text TYPE string,
          ex_text_long TYPE string.
    TRY.
          CALL FUNCTION 'L_TO_CONFIRM'
            EXPORTING
              i_lgnum                        = i_lgnum      " Warehouse number
              i_tanum                        = i_tanum      " Transfer order number
              i_quknz                        = '1'          " '1' - confirm withdrawal only (picking )
              i_commit_work                  = 'X'          " Indicator whether COMMIT WORK in function module
            TABLES
              t_ltap_conf                    = it_ltap_conf " Table of items to be confirmed
            EXCEPTIONS
              to_confirmed                   = 1    " Transfer order already confirmed
              to_doesnt_exist                = 2
              item_confirmed                 = 3
              item_subsystem                 = 4
              to_item_split_not_allowed      = 51
              input_wrong                    = 52
              OTHERS                         = 53.
        CATCH cx_root INTO ex_object_cx_root.
          ex_text = ex_object_cx_root->get_text( ).
          ex_text_long = ex_object_cx_root->get_longtext( ).
          " Error:
          RAISE EXCEPTION TYPE zcx_transfer_order
            EXPORTING textid = zcx_transfer_order=>zcx_transfer_order
                 err_class = 'ZCL_WM_TRANSFER_ORDER'
                 err_method = 'CONFIRM_TO_2STEP_PICKING'
                 err_message_text = ex_text
                 err_message_text_long = ex_text_long.
      ENDTRY.
    Thank you very much in advance

    Hello Marko,
    If i understand correctly you've enclosed the call to the FM 'L_TO_CONFIRM' inside the TRY ... CATCH ... ENDTRY block.
    CATCH cx_root INTO ex_object_cx_root.
          ex_text = ex_object_cx_root->get_text( ).
          ex_text_long = ex_object_cx_root->get_longtext( ).
    You can't do this because the FM 'L_TO_CONFIRM' doesn't propagate OO exceptions!
    Your approach is almost correct, what you've to do is goes like this:
    CALL FUNCTION 'L_TO_CONFIRM'
      EXPORTING
        i_lgnum                        = i_lgnum      " Warehouse number
        i_tanum                        = i_tanum      " Transfer order number
        i_quknz                        = '1'          " '1' - confirm withdrawal only (picking )
        i_commit_work                  = 'X'          " Indicator whether COMMIT WORK in function module
      TABLES
        t_ltap_conf                    = it_ltap_conf " Table of items to be confirmed
      EXCEPTIONS
        to_confirmed                   = 1    " Transfer order already confirmed
        to_doesnt_exist                = 2
        item_confirmed                 = 3
        item_subsystem                 = 4
        to_item_split_not_allowed      = 51
        input_wrong                    = 52
        OTHERS                         = 53.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
              INTO ex_text. "Get the ex_text by this technique & not by CX_ROOT->GET_TEXT()
    ENDIF.
    I'll have to check how to fetch the long text of the message
    BR,
    Suhas

  • IDOC message type for "Site" in SAP Retail module?

    Hi All,
    We have the need to transfer master data (through master data change pointers) of Retail Sites within the SAP Retail module (transaction:  WB01, WB02).  Does anyone know if there's an IDOC message/type already associated with this?  Thanks in advance for your help!
    Cheers,
    Matt

    Hi,
    please read SAP notes 892103 and 551035.
    The correct IDOC type should be FIDCC1 / FIDCC2.
    Best regards,
    Andreas

  • Configuration steps involved after creation of new personnel subarea in sap hr module

    Dear Friends,
    Let me know what all config to be done after creation of a new personnel sub area in SAP HR module?
    So that all infotypes including IT0007 & IT0008 are captured for hiring an employee & running the payroll ?
    Reg,
    TD

    Hi Tanuja,
    Normal customization only you have to do for every PA & PSA. if you don't have the steps i will give you the steps.

  • REQ SAP FI MODULE- CERTIFICATION EXAM QUESTIONS AND ANSWERS

    REQ SAP FI MODULE- CERTIFICATION EXAM QUESTIONS AND ANSWERS
    Moderator: We should be thankful that you don't require to solve the exam for you

    Please type "certification" in the search field, you can find many threads regardding this.

  • Reading SAP function modules using FromSAPIdentity pass

    Hi,
    We have SAP NW IDM 7.2 SP7 environment
    And I have been using FromSAPIdentity pass to read SAP function modules.
    A typical configuration will looks like below
    Above works like a charm and everything is as expected :-)
    Now i am trying to fetch data from another function module.
    Here the challenge is import parameter entry need to be provided with selection criteria say something like below for PARAMETER1
    SIGN=E
    OPTION=EQ
    LOW=<Value>
    HIGH=<Value>
    Does FromSAPIdentity pass accepts selection criteria input for "PARAMETERS" ?
    If yes, which format should i follow to provide those values ?
    Thanks
    Karthik

    Use DD03L table .
    Also use this FM.
    F4_DD_TABLE_FIELDS
    DD_GET_DD03P

  • Crystal Reports Charting Issue with SAP Function Module

    I created a custom SAP Function module that returns 2 tables. The first table (summary table) contains two columns, column "a"  contains a grouping and column "b" is a quantity.  The second table is the detail and is linked to the first table by the grouping, column "a" , in both tables.  I can bring the function module into Crystal Reports, but cannot create a drill down using a pie chart off the summary table.  When I go into the Chart Expert - Data Tab only the Advance button is active and the Group, Cross-Tab, and OLAP buttons are deactivated.  First of all, is it possible to do this using a SAP Function Module, if yes, what am I doing wrong.

    hello Jhess,
    i am not sure if you found an answer for your question yet. if you have a Group and a Summary on your report (i.e. the Sum of your Quantity field) then group charts should be enabled.
    cheers,
    jamie

  • For Professional level certification aspirants in SAP Controlling module

    Dear all Professional level Certification aspirants in SAP CO module,
    I have recently passed the Certification test on SAP Management Accounting (CO) module in version ERP 6.0 EHP4.  I have more than 4 years experience in SAP Controlling module.The following are some of my suggestions regarding preparation for the exam.
    1. All the questions were scenario based. The exam tests expert level knowledge and real time scenarios in the module. The theoritical knowledge is not sufficient to clear the exam. Unless you have atleast 5 to 6 implementations in Controlling module, it is not advisable to give it a try.
    2. Detailed knowledge of the system configuration settings about the various courses mentioned in the syllabus is required. One needs a clear understanding of Special costing functions, ERP integration, Transfer Pricing, Material ledger, New GL Parallel valuation, Planning and Budgeting fuctions in various components etc.
    3. The exam tests in-depth knowledge about various integration aspects of Controlling module with other modules. The advanced master data functionalities of other logistical modules like MM, SD, PP, PM, QM, PS, CS, HCM is tested in detail.
    4. Several methods of process and performance optimization of the system are also tested.
    3. Some reporting aspects of BW and BI are also tested. The cross application aspects of the system are also tested.
    4. The exam also tests the real time skills in preparing Blueprints, Business Process design and trouble shooting the system. Being knowledgeable about some of the processing errors and message classes will be of great help.
    Hope this information helps you in preparing for the certification.
    Should you need any clarifications, please post a reply to this thread and I will post answers.
    All the Best!!
    VS.

    Hi Vikrant,
    the pass mark for the exam is 58%. However it may be different. The passing mark shown on your screen on the day will be the correct passing mark.
    All the questions were scenario based which would involve high analytical skills and through understanding of the system integration. It would be difficult to tell any specific question. The questions carry different weightage. If you answer the questions with less weightage correctly than the questions with more weightage, you end up scoring less though you answer more number of questions correctly. and it is vice versa. Go through your syllabus and cources and try to concentrate on the topic areas which contain more weightage.
    Moreover, the exam is not completely technical in nature. It tests a lot of analytical and problem solving skills required on the job.
    Note:Please do not ask the questions or contents of the exam as they are confidential.
    Hope this information helps you.
    All the best for your exam!
    Regards,
    Vishnu.

  • Routines related to SAP SD module

    Hi can anyone give me some links related to SAP SD module plz. I am new to routines, please help me out.
    Thanks in advance.
    I apprecieate ur help

    Here are some links related to SD Module.
    http://www.sap-img.com/sap-sd.htm
    http://help.sap.com/saphelp_46c/helpdata/en/8c/df293581dc1f79e10000009b38f889/frameset.htm
    Regards,
    RIch Heilman

  • Key Differences in ECC 6.0 and 4.6C with respect to SAP SD Module

    Dear All,
    I would like to know the know the Key Differences in ECC 6.0 and 4.6C with respect to SAP SD Module. I have already gone throught the release notes and
    upgrade erp in service.sap.com. I have also checked solution browser.
    Its Urgent.
    Regards,
    Rakesh

    Hi Rakesh,
    Some of the differences are:
    1. Document Flow
    In ECC 6.0, The flow of sales documents is seen much better and improved as compared to 4.6C. Once You look at the screen, You will clearly figure out the difference.
    2. Sales Order Look and Feel
    There are more tabs in ECC 6.0  for Item Level Details.
    The Sales Doc. appears as supremely perfect.
    3. ECC 6.0 is built on NetWeaver Technology  (that possess SOA i.e. service oriented architecture) , Hence more reliable and Improved as compared to previous one.
    Hope this will help you. Reward if found useful
    Regards,
    Gaurav Raghav

  • To implement SAP HCM module in existing SAP ECC 6.0

    Hi,
    I have SAP ECC 6.0 system already implemented 2 years back.
    I am planning to implement SAP HCM with OM, PA, SAP Time management, SAP PAYROLL in existing SAP ECC 6.0 system.
    I have currently 3 system landscape for SAP ECC.
    I would like to know what change/addition is required in above landscape to implement SAP HCM module in existing SAP ECC 6.0
    Do share your view.
    Regards.

    Hi.
    As per you, Already designed Landscape. Why dont you follow you existing Landscape which is alredy proved for other modules.
    Normally Dev/Quality/Production clients will there..
    If more that depends upon flexibility in Each client and defining different business for testing and production interfaces purpose.
    Better use Existing only remaining modules already sucessfully running in Production Right????

  • Documentation for SAP function modules??

    Hello,
    is there any documentation for the SAP function modules available?
    I need documentation for SJ01 (SAP Objects). If I try to view the documentation in SE80, I get the error message: "Document OJ_XXX(whatever I selected) is not available in language DE"
    Where can I get this documentation?
    Is there an overview+documentation available somewhere of all SAP functions which may be used for own programs? Or how do I know what's already available and how to use it?
    Thanks
    Steffi

    Hi,
    Go thru this links
    http://sap.ittoolbox.com/topics/t.asp?t=303&p=449&h2=322&h1=303&h3=449
    http://www.erpgenie.com/abap/functions.htm
    Thanks
    Sunil

  • BAPI's in SAP SRM Module

    Hi SAP Gurus,
         Please provide me the list of BAPI's with its descriptions for SAP SRM module.
    regards,
    George.

    Hi,
    Which BAPIs are you looking for ? What's your detailed requirement ?
    Using SE37 Transaction, you cand find the BAPI Function modules.
    Search using BAPI* or META* to get all the existing SRM BAPIs.
    Meta function are generic call to external system. Depending on system kind and release, the function to call is different. The bapi that the Meta will effectly call in a backend is defined in table bbp_function_map.
    Some sample BAPIs in SRM ->
    Re: get vendor number BAPI or functional module
    Standard BAPI to pull out data from SRM 5.5
    BAPI_POEC_CREATE
    bapi_srm_doc_getlist
    BBP_VENDOR_GET_NON_BAPI
    BAPI_PCA_MASTER_CREATE
    BAPI_ORGMASTER_REPLICATE
    PCA_MASTER_CREATE
    BAPI_ORGMASTER_SAVE_ORIG_MULT
    BAPI_ORGMASTER_SAVE_REPL_MULT
    BBP_BAPI_CONF_CREATE_IN
    BBP_BAPI_CONF_RESPONSE_CRT
    BBP_BAPI_INV_RESPONSE_CRT
    BBP_BAPI_INV_SEND
    BBP_BAPI_IV_CREATE_IN
    BBP_BAPI_PCO_CREATE_IN
    BBP_BAPI_PO_SEND
    ALE_ORGMASTER_SAVE_REPL_MULT
    IDOC_INPUT_ORGMASTER
    RSO_GET_MASTER_DATA
    RSSEM_UPB_MASTER_DATA
    UPDATE_MASTER
    MASTERIDOC_CREATE_REQ_ADRMAS
    MASTERIDOC_CREATE_SMD_ADRMAS
    UPC_MASTER_DATA_MAINTAIN
    RSDPW_MASTERDATA_UPLOAD
    UPC_BW_MASTER_DATA_MAINTAIN
    UPSDL_MASTER_IDOC_CREATE
    MASTER_IDOC_CREATE_UPSMAS
    MASTER_IDOC_CREATE_UPSRCP
    BR,
    Disha.
    Do reward points for  useful answers.

  • SAP Functional Module for authorization tables

    I would like to know are there any standard SAP Functional Modules which could update the Authorization Tables, like AGR_1251.
    Thank you

    Hi Prabhu,
    Other than function modules with role, I had also tried to look for function modules with AuthObject*.
    Because, I would like to update remove one of the authorization object from the system. For example, remove all data which AUTHORIZATION OBJECT = S_SCD0 and ACTIVITY = 06 in the system.
    I got the list of functions from the search, but all of them are without proper documentations. So is very hard for me to understand their functionalities and purposes.
    Kindly advice.
    Thank you.

  • Know about sap EPM Module

    Sir,
    Can u explain the what is difference between SAP EPM & BPC, or Both are same...
    Is it good career growth is there for SAP EPM ???????
    I am planning to do sap EPM module...
    Kindly give valuble suggestions....

    Sir,
    Yesterday I attended interview at delhi india one small company they are offering for me as a sap EPM consultant (fresher) job position,.
    So i have to join above for the postion as a sap epm Consultant (fresher job), I don't know excactly what is the EPM & BPC.
    i was discussed to my frnd on yersterday night he said SAP EPM is different tool & SAP BPC is the different tool still i am confusing what i have to do the nextstep.
    i know only about sap fico tool. my education (MBA Finance). Is it suitable for the above job postion and as well as sap epm tool career growth is good ?????? not.....
    Kindly give your suggestions.

Maybe you are looking for