Effect of creating new Jobs & grades in Existing HRMS system

Dear Experts...
We are already live with more than 3000 empoyees with modules like payroll, OLM and PMS.
Now all of sudden our users want to create new job for interns and create new grades for them.
All these will be added to the existing jobs and grades...
Will this have effect? what is impact on Payroll.. ??
I can simply create them using Job KFF ... but something fails.. Oracle will say .. you did not follow standards....
Any help pls ??

Hi Rahul,
This is a perfectly normal request from any HR user and common requirement in any HRMS system.
You can add as many grades and jobs to your Oracle HRMS/HCM system anytime without jeopardizing your existing data as long as you're entering them from the standard screens or loading through public APIs.
I'm not from "Oracle" but I can say that in doing so you'll be following "the standards" and Oracle will provide support in case of issues.
As for impact on Payroll, once you've associated these new grades and jobs to your employees and if there are benefits/deductions linked to them, then yes, your payroll would be impacted. Whether it will correctly reflect on your Payroll depends on your configuration (elements, links, fast-formula, etc...).
Anyway, you'll have to carefully do dummy runs and check the cases on a 'Test' instance before deploying onto Production Environment.
HTH.
Regards,
Rajen

Similar Messages

  • Can I add new job in the existing Job

    Hi Gurus,
    There is a job which loads data from 4 ODS to respective Infocubes. Now we are adding new infocube and new ODS to the existing layout so can we add 1 more job which loads data from that ODS to corresponding Infocube. If so how??? Can u give me detailed steps to add new job in the existing job...
    Thanks in advance

    is the previous loads done through a job or a process chains???
    Go to RSPC > check what process chains are there and in case if you find one > log you will see when it was last run and stuff.
    But if it is a job in SM37, it is a different story, u might have to create a variant of that job and create events to trigger the job in sequence depending on ur scenario..
    give more details. like when is that job triggered, if any events used.

  • How to create new or delete the existing row in the grid....

    hi my friends...
    i am developing report using Reuse_alv_grid_display...
    my requirement is... At runtime
              1.  i may create new row on the grid (empty row inwhich  i may enter the data).
              2.  i may delete a existing row in the grid
              3.  i may edit the existing data...
    then i have to trace the modification in the grid in one internal table...
    how can i get into this.....
    note:
    i have some idea to edit the existing record in the grid and trace those modification,
    but i don't know abt how to create new or delete the existing row....
    can you give me some idea...

    Hi deva,
    write a class which implemets these methods
    CLASS lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
        METHODS:
    To handle the toolbar on alv
         handle_toolbar
           FOR EVENT toolbar OF cl_gui_alv_grid
              IMPORTING e_object e_interactive,
    To handle the buttons on the alv grid
         handle_user_command
           FOR EVENT user_command OF cl_gui_alv_grid
           IMPORTING e_ucomm.
    endclass.
    Now Implement these methods.
    CLASS lcl_event_receiver IMPLEMENTATION.
    To handle the toolbar on alv
      METHOD handle_toolbar.
       DATA ls_toolbar  TYPE stb_button.
        CLEAR gs_toolbar.
        MOVE 3 TO gs_toolbar-butn_type.
        APPEND gs_toolbar TO e_object->mt_toolbar.
        CLEAR gs_toolbar.
        PERFORM icon_create USING 'ICON_INSERT_ROW' gs_toolbar-icon.
        MOVE text-010 TO gs_toolbar-function.
        MOVE text-012 TO gs_toolbar-quickinfo.
        MOVE ' ' TO gs_toolbar-disabled.
        APPEND gs_toolbar TO e_object->mt_toolbar.
        CLEAR gs_toolbar.
        PERFORM icon_create USING 'ICON_DELETE_ROW' gs_toolbar-icon.
        MOVE text-011 TO gs_toolbar-function.
        MOVE text-013 TO gs_toolbar-quickinfo.
        MOVE ' ' TO gs_toolbar-disabled.
        APPEND gs_toolbar TO e_object->mt_toolbar.
      ENDMETHOD.
       METHOD handle_user_command.
    In this form, check the function code(e_ucomm has the function code), based on that do the required action.
    as i said yesterday(i.e for appending a row, deleting a row, modifying a row)
        PERFORM user_command USING e_ucomm.
      ENDMETHOD
    endclass.
    Before calling the alv method, create a object of this class.
    DATA :
          gref_event_receiver  TYPE REF TO lcl_event_receiver,
          gv_tables_alv          TYPE REF TO cl_gui_alv_grid.
          CREATE OBJECT gref_event_receiver.
          SET HANDLER   gref_event_receiver->handle_user_command
                        FOR gv_tables_alv.
          SET HANDLER   gref_event_receiver->handle_toolbar
                        FOR gv_tables_alv.
    check this program for event handling, it is the similar way
    demo_abap_objects_events
    Hope u understood this.
    Regards,
    Prasant
    reward if helpful

  • Creating new records while querying existing record

    Hi,
    I have one master - detail form.
    First i created 1 record. Request ID is the primary key. Now request id generated. For ex.: 10
    Request Id, date, requestor , location, status fields are in header block.
    In lines block, i hv some other fields.. and one field called 'Activity'.
    While creating first record, the activity will be 'New'.
    Then i'll query the record '10'.
    when i'm changing the activity 'New' into 'Upgrade', it should create new record with new request ID.
    How to do this?
    I hv written procedure that, i'm taking field values to local variables. Then assigning the local variable values to field values.
    It is not creating as new record. It overwriting the existing record with new values. Existing record is missing.
    Pl. give steps.
    Thanks
    Kavi

    Hi,
    Okk, you will have to do two things. Create two trigger on block level on which you want to do your changes.
    1. First trigger. (PRE-UPDATE)
    In pre-update trigger u will have to write the complete insert statement into the same table with new req id. like
    DECLARE
    vReqNo DATA_TYPE;
    BEGIN
    SELECT MAX(REQ_ID)
    INTO vReqNo
    FROM your_table;
    INSERT INTO your_table
    (req_no, fields....)
    VALUES
    (vReqNo, :forms_values);
    END;
    2. Create 2nd trigger on block level (ON-UPDATE)
    write in this trigger
    NULL;
    for viewing the inserted record. What u have to do is in ON-UPDATE after null; create one timer NO_REAPEAT.
    and in timer u will have to set the block property to req_id = generated_req_id_from_pre_update_trigger and
    execute_query;
    hope it will work...
    -Ammad

  • Can we create new customer site for existing customers using custm interfc

    Hi ,
    I have a requirement :
    version -- R12 .
    We need to add new customer site for existing customers , is it possible to create it through customer interface with insert_update_flag set as U / I .
    Any help in this is grate .
    regards ,
    Azzu .

    I am pretty sure I've done this on one of my past project..
    why don't you try it out?
    Another route would be use customer APIs (TCA APIs)...which I am sure can achieve what you're looking for.
    Edited by: James Kim on Mar 17, 2010 2:48 PM

  • Creating New plant by copying Existing

    Dear All,
    I have to create a new plant by copying existing one, I want all the configuration that exists for existing plant in new plant.
    My query is by copying plant only all the configuration for new plant will get configured. Such as account determination etc or i have to configure it manually.
    Thanks
    Nitesh

    Hi
    no for account determination
    we have to put  valuvation gruoping code 0001 or any other which you want to use  manually
    in T-code OMWD
    for copying plant we van copy storage location ,assigement to companycode and oms2 setting also get automatically copy
    Regards
    Kailas

  • Trying to log in but it says my email is invalid but when I go to create new it says email exists

    I keep trying to log in but it says my email and password is invalid, when trying to retrieve password it says email is wrong, try to create new acct it says email already exists. Im trying to print pictures and I'm getting so frustrated, I don't see an option for black and white, or any other options for that matter other than basic. I have the HP Photosmart Series 5515 but I thin my basic Cannon was better, had more options, confused.

    Hi,
    May you used Snapfish to create your account?
    From the ePrint Center logon screes, click the Snapfish icon ().
    Try logging in using the selected passowrd.
    If the logon fails, try retrieving the password from the Snapfish logon and and check for any change.
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Not able to create new repots and  view existing reports.

    When I try to create new reports I get the following message and then system disconnects from the server.
    "Could not determine a value for variable 0DAT from the authorizations"
    Please help.

    Hi,
    Check the foolwing links, one of them could help you:
    /message/1507585#1507585 [original link is broken];�
    Re-appearing variable
    /message/2477142#2477142 [original link is broken]
    With rgds,
    Anil Kumar Sharma .P
    Message was edited by:
            Anil Kumar Sharma

  • SharePoint 2010 - Create new site collection in existing web application with different existing content DB

    I have a SharePoint 2010 root level site collection SC1 in web application WEBAPP1. I want to create copy of that site collection in same web application WEBAPP1. Apart from Import/Export, Restore/Backup options, will following approach work? If yes , how?
    I took backup of content database of web application.
    Restored database with different name
    Mounted Content database to this WEBAPP1 by assigning new ID to DB
    Created new site collection by using this newly mounted DB
    Site collection gets created successfully but content does not appear.
    Please guide if i can achieve desired functionality by using this approach.
    If this helped you resolve your issue, please mark it Answered

    It is because the Site GUID is identical, and each GUID can only be present on the farm once. You can use Backup-SPSite/Restore-SPSite (which is full-fidelity, unlike Export-SPWeb/Import-SPWeb), which will generate a new GUID for the restore Site Collection,
    even in the same Web App.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • I just installed Photoshop CC on new Windows 8.1 pro system and now it wont create new file or open existing files.

    Ugh this is so frustrating and I suspect it is an easy fix I am too tired to figure out.
    I just got a new PC and installed Creative Cloud and Photoshop CC, logged in and launched Photoshop. It launches fine, no error messages or anything. The tutorial window pops up and I close it. Then if I try to create a new file (the option window comes up) nothing happens after I submit the options. I mean nothing. No error message, no crash, no file canvas nothing. If I try to open an existing file it loads Photoshop as if it is going to open the file and Photoshop loads without any error messages but no file, again nothing.
    Please help.
    I am so behind in my work lol.

    After three or four tries, it just started working - I didn't change any settings or anything. I was just showing my friend how it wouldn't work and bam it opened a file finally...
    never seen this behavior before...

  • How to create new genius playlists from existing music in library?

    I tried the genius button for creating lists from existing music in my library. The problem is that it continues to show the first list created no matter what song I highlight then hit the genius button. Genius works fine for creating lists I can purchase online, but not new ones from my own music.

    This is the iTunes for Mac forum.
    As you are running Windows you will probably get a better response from posting in the iTunes for Windows forum:
    http://discussions.apple.com/category.jspa?categoryID=150

  • Creating new TableSpace and shifting existing ....

    I created a database but it is using the default tablespace. I want to create a new tablespace and want to configure existing database to use new tablespace. How to do this? The database is having enough records.

    >>alter user scott default tablespace system;<br>
    <br>
    Assume the default tablespaces for users USER1 and<br>
    USER2 are TS1 and TS2 respectively, specified<br>
    explicitly during user creation. The current<br>
    default tablespace for the database is TS2, but<br>
    later, the database default tablespace is changed to<br>
    TS1. Even though USER2's default tablespace was<br>
    explicitly specified as TS2<br>
    <br>
    <br>
    sys@ORCL> create user user1 identified by user1 default tablespace system;
    User created.
    Elapsed: 00:00:00.06
    sys@ORCL> create user user2 identified by user2 default tablespace system;
    User created.
    Elapsed: 00:00:00.01
    sys@ORCL> select property_value
      2  from database_properties
      3  where property_name = 'DEFAULT_PERMANENT_TABLESPACE';
    PROPERTY_VALUE
    USERS
    Elapsed: 00:00:00.00
    sys@ORCL> select default_tablesapce
      2  from dba_users
      3  where username
      4
    sys@ORCL> select username, default_tablespace
      2  from dba_users
      3  where username in ('USER1', 'USER2');
    USERNAME                       DEFAULT_TABLESPACE
    USER1                          SYSTEM
    USER2                          SYSTEM
    Elapsed: 00:00:00.01
    sys@ORCL> alter database default tablespace example;
    Database altered.
    Elapsed: 00:00:00.01
    sys@ORCL> select username, default_tablespace
      2  from dba_users
      3  where username in ('USER1', 'USER2');
    USERNAME                       DEFAULT_TABLESPACE
    USER1                          SYSTEM
    USER2                          SYSTEM
    Elapsed: 00:00:00.01
    sys@ORCL> select property_value
      2  from database_properties
      3  where property_name = 'DEFAULT_PERMANENT_TABLESPACE';
    PROPERTY_VALUE
    EXAMPLE
    Elapsed: 00:00:00.00
    sys@ORCL>

  • Creating new version by copying existing version without originals

    Hi Folks ,
      Is there any way we can control copying Original files & Classifications when we create a new version of document info record using existing template .
    I have a situation that I need to copy all the information ( Like description , Object links etcc) of a existing document info record except the Classifications & Original files. This is required since the newer version of the document should have newer version of Original file attached on it.
    Any input will be highly appreciable & rewarded.
    Thanks & regards,
      Ramesh babu .P
      Fujitsu consulting , US .

    Hi Ramesh,
    you can control this in the document type customizing in transaction DC10.
    1. Choose the relevant document type
    2. Go to folder "Define object links"
        Here you can see all the maintained objects which you can link to this
        document type.
    3. Select the relevant object
    4. double click this object to display the details
    5. By "When new version" you can choose between:
        - Selection by user
        - Ignore link or
        - Copy link automatically
    This will control what happens with existing object links when you create a new version.
    I hope this information is useful for you.
    Best regards,
    Christoph Hopf

  • Creating new hierarchy based on existing r/3 hierarchy & loading

    Hi,
    We have an existing hierarchy in BW which we bring in from SAP R/3.
    I want to use the majority of this hierarchy but I need it in a different sequence. If I copy this existing hierarchy and then re-structure it to how I need it, I assume that whenever any changes are made to the existing hierarchy, that these changes won't filter through to the hierarchy I need to create.
    If my assumption is correct, does anyone have any suggestions as to what, if anything, I can do in order to make any changes in the existing hierarchy come through to the new one without any manual intervention.

    Hi Mark,
    The 4th option is to write a code in CMOD and restructure the internal table there itself. In this case you do not need worry about the change in the hierarchy. Please let me know if this helps.
    Rgds,
    Bikas

  • Creating new post office in existing domain

    I am trying to create a new post office in an existing domain. I am confused on the agent install screen. I am selecting Add, Post Office and giving it a name, then the path to the database is where I need help. Is this the path where I am installing the new post office or is it the path to my domain?
    The problem is that when I finish the install and launch to poa, it canot find wphost.db. I do not see it either on the new server.

    * rsilvey,
    the PO database.
    Just follow the instructions:
    http://www.novell.com/documentation/...a/ak8h74f.html
    HTH
    Uwe
    Novell Knowledge Partner (NKP)
    Please don't send me support related e-mail unless I ask you to do so.

Maybe you are looking for