Currency change for Employee group level

Hi Guru's,
I am configuring Currency for all the Employee groups 1,2,3,4,etc.i am trying it in V_T510F_B,Can any one confirm if this is right or is there any way to configure the currency for all the employee group in one table ..
Regards,
Reddy

Hi,
Their is a currency change going on so now we are changeing the existing currency to EUR,so our requirment is that all the EG & ESG should get the currency EUR instead of the earlier one "JOD",
All the EG & ESG will have same currency EUR.
But after our finance team has changed the currency in Company code level still i can see the old currency .
Regards,
Reddy

Similar Messages

  • Propose or change automatically, Employee Group and Subgroup.

    Dear all, when executing an exit Action, thru transaction PA40, what's the best way to propose by default/change automatically, the employee group/subgroup?
    Example: I want to change the employee group from '1' (Active) to '2' (Inactive), but the fields are disabled for input.
    Do i have to do this thru the enhancement "PBAS001", or is there any way to do this thru configuration?
    Sincerely,
    Hugo Ferreira

    I was searching for something in SDN and got this post.
    Though it's a very late reply, whatever Sreenu has told is correct.
    In the table T529A, you can define the employment status wehther it has to be active, withdrawn or inactive.
    This field is input disabled in the action and the values will be defaulted from the configuration.
    But Changing the employee group and employee subgroup , we can't change. If that is what is required, the values might depend on the configuration.
    And even through some enhancement also we can't change. because, for IT0000 no enhancement are available. Even though the fields are from IT0001, I doubt it can be changed through enhancemnet.
    If you have already achieved it through enhancemnet, please let us know.
    Thanks,
    RSS.

  • Restricting GL master change at account group level

    Hi Experts,
    Requirement
    To control GL MAster field layout per company code or per account group and per activity.
    To restrict GL master change, for certain fields, at account group level.
    Let us say, I have activated "Post Auto" in a GL Account during GL creation.
    Now while changing the GL, the system should not allow me to change this particular field.
    Analysis
    This is possible through transaction OB26 (Define Screen Layout for Each Transaction).
    However the limitation of the above transaction is that it is applicable for all the account groups for a particular activity (Create/Change/Display).
    I do not want to use any development to make this happen.
    Please help me in solving this through standard SAP.
    Cheers,
    Nitish

    Hi,
    You can make the account group specific field status setting in OBD4.
    And you can make the activity specific setting in OB26.
    Then SAP will take the field status out of the two above based on highest priority. The priorities are (starting with the highest):
    -• Hide
    -• Display
    -• Required entry
    -• Optional entry
    Fields which are accessed with the transaction master record display are always either displayed or hidden, since you cannot make an entry in a "display" transaction.
    If you do not want to use the transaction-specific control, set the field status for all fields to optional. Since this field status has the lowest priority, the account group-specific control is always used.
    Regards,
    Gaurav

  • HR ABAP for employee groups with possible custom table...

    Hi Members
    I have a internal table where employee name and employee group are maintained.
    Next, i have other tables where employee name is there and his salary. now I want to add all the salaries of the employees with same groups, how can I do this.
    for Example, I have employee group as ENG, DOC, NUR Etc. (Also I wanted to use some kind of dynamic conditions as emplyee groups might added latter in custom table.
    Thank you.
    Edited by: Julius Bussche on Sep 23, 2008 10:18 PM

    Check out this code:
    *& Report  ZTEST3
    REPORT  ztest3.
    TYPES:
    BEGIN OF x_employee,
      id TYPE n LENGTH 10,
      name TYPE c LENGTH 20,
      group TYPE c LENGTH 4,
    END OF x_employee,
    BEGIN OF x_emp_sal,
      id TYPE n LENGTH 10,
      salary TYPE p LENGTH 16 DECIMALS 2,
    END OF x_emp_sal,
    BEGIN OF x_final,
      group TYPE c LENGTH 4,
      id TYPE n LENGTH 10,
      name TYPE c LENGTH 20,
      salary TYPE p LENGTH 16 DECIMALS 2,
    END OF x_final.
    DATA:
    i_employee TYPE STANDARD TABLE OF x_employee INITIAL SIZE 0,
    i_final TYPE STANDARD TABLE OF x_final INITIAL SIZE 0,
    i_salary TYPE STANDARD TABLE OF x_emp_sal INITIAL SIZE 0,
    wa_employee TYPE x_employee,
    wa_salary TYPE x_emp_sal,
    wa_final TYPE x_final,
    wa_final_temp TYPE x_final.
    DEFINE append_employee.
      wa_employee-id = &1.
      wa_employee-name = &2.
      wa_employee-group = &3.
      append wa_employee to i_employee.
    END-OF-DEFINITION.
    DEFINE append_salary.
      wa_salary-id = &1.
      wa_salary-salary = &2.
      append wa_salary to i_salary.
    END-OF-DEFINITION.
    append_employee:
    1 'John' 'ENG',
    2 'Mary' 'ENG',
    3 'Pooja' 'IT',
    4 'Payal' 'IT',
    5 'Sourav' 'IT'.
    append_salary:
    1 '111.00',
    2 '1111.00',
    3 '11111.00',
    4 '111111.00',
    5 '1111111.00'.
    LOOP AT i_employee INTO wa_employee.
      READ TABLE i_salary INTO wa_salary
       WITH KEY id = wa_employee-id.
      IF sy-subrc = 0.
        wa_final-id = wa_employee-id.
        wa_final-name = wa_employee-name.
        wa_final-group = wa_employee-group.
        wa_final-salary = wa_salary-salary.
        APPEND wa_final TO i_final.
      ENDIF.
    ENDLOOP.
    SORT i_final BY group.
    LOOP AT i_final INTO wa_final_temp.
      wa_final = wa_final_temp.
      AT END OF group.
        SUM.
        WRITE: /1 wa_final_temp-group, 5 wa_final_temp-salary.
      ENDAT.
    ENDLOOP.
    output will be:
    ENG                         1.222,00  
    IT                      1.233.333,00  
    Edited by: Sourav Bhaduri on Sep 24, 2008 1:44 AM

  • What is the basis for Employee Group & Employee Sub Group?

    Dear Consultants,
    1) How to finalize the Employee Group and Employee Sub Group?
    2) What points should be taken into consideration before finalizing Employee Group and Employee Sub Group?
    3) In which places we can use Employee Group?
    4) In which place we can use Employee Sub Group?
    5) What items/sub-modules in SAP-HR largely depends on Employee Group and Employee Sub Group?
    6) What kind of problem could arise with wrong Employee Group and Employee Sub Group?
    Let's have the answer for this question, which could help all the members.

    An organizational unit for which personnel provisions can be specified.
    Example
    Employee groups:
    Active employees
    Employees who have left the company
    Company pensioners
    Employee subgroups within the "active employee" group:
    Industrial workers
    Commercial employees
    Technical employees
    Employee subgroup
    An organizational unit within an employee group for which personnel provisions have been defined.
    ESG groupings
    Grouping of employee subroups in Payroll for the following purposes:
    Work schedule
    Personnel calculation rules
    Primary wage types
    Collective agreement rules
    Time quota types
    Account determination

  • How to get historical currency rate for second group currency transactions in Fixed Assets

    Hello,
    My client had MXN (Mexico Currency) as a legal currency and when the company code was implemented (went live) group currency was not implemented. After 3 years this company code implemented second local currency as USD and is now a USD functional Company. When Fixed assets movements such as depreciation, retirement etc are posted; the postings in local currency is fine but postings in group currency is not fine the reason is the exchange rate for group currency must be 'historical rate" but instead of that the entries are being posted in "current rate". To rectify this issue we need to set the exchange rate as the historical rate. Now my question is where/how can I get the historical rate (rate when asset was acquired/purchased). When the assets were acquired the amount was in MXN and there was no maintenance of USD exchange rate as there was no second local currency so then how can I get the historical exchange rate for USD. Most of the assets were acquired/purchased before 5-10 years then how can I find the USD exchange rate for those periods.
    Thanks,
    Rinki

    It is necessary yo have a different rate type for average. The month-end rate type cannot be used.
    The M-rate type is typically the month-end rate.

  • Query to retrieve Currency Code for Employee Salary

    Hi,
    I'm stumped by this issue.  Does anyone know what table(s) contain the employee's salary currency code?
    Thanks!
    Bruce Marcoux

    Did you check the business components for the salary page ?
    Check the VO query -
    select fct.name as currency ,fct.currency_code as currency_code from per_pay_bases ppb ,pay_input_values_f piv ,pay_element_types_f pet ,per_all_assignments_f paa ,fnd_currencies_tl fct where paa.pay_basis_id = ppb.pay_basis_id and ppb.input_value_id = piv.input_value_id and piv.element_type_id = pet.element_type_id and fct.currency_code = pet.input_currency_code and fct.language = USERENV('LANG') and paa.assignment_id = :1 and :2 between nvl(paa.effective_start_date,hr_general.start_of_time) and nvl(paa.effective_end_date,hr_general.end_of_time) and :3 between nvl(pet.effective_start_date,hr_general.start_of_time) and nvl(pet.effective_end_date,hr_general.end_of_time) and :4 between nvl(piv.effective_start_date,hr_general.start_of_time) and nvl(piv.effective_end_date,hr_general.end_of_time) 

  • Currency change for GHANA

    Hi,
    Currently we are creating new company code for ghana.
    Personal area for ghana is already exist with different company code attched to it and few master records are updated under same personal area.
    for these records , latest records In IT 0008 - basic pay is maintained with currency GHS.
    Also , Table T710 is maintained with pay structure with currnecy GHS.
    Now , I have created new company code for ghana with new ghana currency GHS and assigned old Personal area to this New CC.
    Also I have delimited the old currency GHS in Table T500C and added new GHS with effective date 01.07.2007
    How I suppose to handle historical records for old employees with ref to new currency
    Please help

    Hi,
    Go to the setting of the currencies (NETWeaver-General settings), select RUR and set the validity date.
    Regards,
    Eli

  • Counting Rule for employee Group

    Dear Experts,
    I want to make new counting rule like If Employee takes Casual Leave on Friday and on Monday he do Sick Leave that Saturday and Sunday Should be treated as Earned Leaves. Saturday and sunday should be deducted from earned leaves.
    REgards
    Jazib Tariq

    Dear Jazib,
    Please look into this
    http://help.sap.com/saphelp_46c/helpdata/EN/c1/d32fe48435d111950d0060b03c6b76/content.htm
    Regards
    Qazi Raheel

  • Employee group - Pay scale group - level

    Hi all,
    How can i assign Pay scale group - level for Employee group?
    Thanks,

    Hi Quang Le Vinh
    I know the solution that you can assign the values directly in IT0008 (of course T588M has to allow this).
    In the customizing "basic pay" in the personnel administration section, you have to set up the possible combinations (definition of the values).
    BR,
    Benno

  • If i made any changes for one employee means it get reflect for others

    Dear friends..
    I am Abaper, i am in Support phase, i am facing one HR issue. kindly give me some idea to solve.
    i have 2 employee number 2025 (VIJAYAN.M) and 2925 (VIJAYAN.M). in this both case employee name is same..
    if i made any changes for employee 2025 infotype (for eg bank details) means,  2925 also get reflect the same changes vice versa..
    Kindly give me some idea
    Regards
    Deva

    Hi! Deva,
    As you are ABAPer , and if you are doing it through some programing , then you must have getting same problem for all those employees who have similarity in their name or other,
    so, please check or debug what criteria you have given for search ,for changing/updating bank key field,
    check, it should be perner base not name base or any other.
    Please check and revert so that we try to resolve.
    Check one thing that is it only problem with bank key any other infotype also.
    *Sneha.

  • Default Employee group based on Actions

    Hi All,
    It would be a great help if you can let me know that can we default the Employee group for any particular action in the IT0000 screen.
    ASAP help is appreciated.
    Thanks and Regards
    Swati

    Hi
    you can do the default for employee group and employee subgroup in it0000.
    you need to maintain it1008 and IT1013(employee group and subgroup) for particular postion and also ""employee attributes "" if u done these  then, when you go for hiring in pa40 it0000 in position field select the positon and press enter then the defaults will be get by the system.
    Regards
    Suresh

  • Change Commission-value for Commisson-Groups on item/BP-level

    Hello,
    at the moment it is possible to change the defined commission-% of an commisssion-group for specific items and BP. I was told by the support, that this is not the correct way according system definition and that's the reason why all this individually defined values are overwritten if we update for example BP.
    We need this "wrong" behaviour, that allows us to change a commission groups %-value individually, because in our case for specific items or BP this value differs from the groups standard-value but we need to assign the commission-group to an BP for our commission reports.
    Best regards,
    Thomas

    Hi,
    According to your description, there are several list views in your list, there is a textbox control which holds the “Single Line of Text” type of data in your custom
    form. When users click the “Add new item” button in one of the existing list views, you want the textbox control in the custom form to be populated automatically.
    By default, when user clicks the “Add new item” button in a list view, the URL of the custom form page will contain the name of that list view page, thus, a workaround
    which requires custom code can be like this:
    After the form page loaded, we can extract the name of the list view page from the URL, then populate it into the textbox control immediately. This can be achieved
    using jQuery.
    About how to
    get URL parameters of current page using jQuery:
    http://www.jquerybyexample.net/2012/06/get-url-parameters-using-jquery.html
    About
    adding jQuery into InfoPath form:
    http://riteshudupak.blogspot.com/2010/09/add-jquery-to-browser-enabled-infopath.html
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • I changed my wheel group properties to no access at top disk level.  I messed up, how can I change back in single user mode "command s" as I am now in Thailand and not able to access startup disks?

    I messed up, I changed my "Wheel group" properties to No Access ( or something other than the default) at the top level of my startup disk "Macintosh HD".   Now my computer won't start up, I just get the spinning wheel of death.    I also am in Thailand right now, so I cannot go to a Genius at an apple store, nor do I have startup disks available.
    So I was hoping there was a way to change back the properties of my disk (Volume) in single user mode (via Command +s) during startup, i.e. can I do a chmod command on the Macintosh HD listing under the Volume Directory.    Or where do i fix this?   Is it fixable without startup disks, etc...
    THANKS FOR ANY HELP!!!!
    If you could also please let me know you have an answer, I WOULD REALLY APPRECIATE IT!!! 
    thanks so much
    mark
    <Edited by Host>

    Thomas,
    Thanks for the info on command-R, didn't know about that!!!
    Yes I changed the sharing "Wheel Group" permissions on my hard drive via Get Info.    But that's all I did.    And then most of the apps wouldn't respond with anything.    So not knowing I did something stupid, I decided to re-boot, and then nothing but the Wheel of Death at startup.
    I was trying to limit access to my computer on this network, changed my public folder settings, and then I thought why not the whole hard drive, but at that time I had no idea what the "Wheel Group" was... so I shouldn't have touched it, BUT IT DID ...... argggggg....
    I managed to go to an internet cafe & research the problem yesterday.    I used the command +s single mode to get in, and then did the necessary steps to mount the drive so I could make changes.   I basically did this:
    Boot into single-user mode (boot while holding down CMD-S)
    Follow the on-screen instructions to mount the file system as read-write (a fsck command followed by a mount command)
    Type the following: "chmod o+r /" followed by "chmod o+x /"
    Type "exit" to leave single user mode and complete the boot sequence.
    I found it at this link http://forums.macrumors.com/showthread.php?t=416180
    It worked... thank God!!!   Well so far so good.   
    I was going to try my own fix by chmod on the Hard drive listed under Volumes directory, but that doesn't seem to match the info under Get Info Window.    So I just used the fix above.    I probably should now go and do "Disk Utility - repair permissions", however I am a little gun shy right now, so I will probably wait until I am back in the States so I can go to an Apple store if it messes up.   Right now I'm following the "if it ain't broke, don't fix it" MOTTO...
    So Thomas I just wanted to say THANKS for replying so quickly, and I really appreciate your help!!!
    (yes I know I shouldn't have used my email addresses, but I WAS DESPERATE, but that's still no excuse)
    Hopefully maybe this thread will help someone else out in the future....
    Okay, thanks again!
    Mark

  • Employee Group Change after terminating an employee

    Hi,
    My company has SAP HR Configuration setup...
    When I execute an action "Terminated" for an employee a group of ITs are triggered (0014, 0015, 0026) and after saving them i still see the employee Active in IT 0001.
    Can any one help me out with this issue ?

    Ajay,
    Thanks for the reply.
    Actually while urdergoing the action "Termination", IT 0001 is triggered and i changed the EE group to terminated but after saving the record its not reflected in IT0001.
    It still shows the EE Group to be Active.
    If this is not the field to be looked at, how can you differentiate Terminated and active employees.
    Dinesh

Maybe you are looking for