Relationship of Jobs to Position

Hi,
When I maintain EG and ESG infotype(1013) through Jobs (Po03) should'nt these fields be automatically populated in Position (Po13) when I assign the relationship between Jobs and Positions?

Hi,
we use the T Code PO03 to create the jobs. Once the object is created the system does not ask for any other infotypes like relation ships to be maintained as it happens in T code PO10 and PO13 as we create the organisation units and Positions respectively.
After creating the Position using PO!3, in which the relation ships to the Orgaisation unit is maintained we have to highlight the relationships again for the second time and create the relationship between JOB and POSITION.
The relation ship goes like this " Job describes the position"
Position is described by the Job"
Hope your query is addressed corectly
All the best to you
Regards
RR

Similar Messages

  • Organisation Management Relationship Job to Position

    Has anyone made the relationship (S B007) between Position and Job mandatory? I want to ensure that every Position that is created, is linked to a generic Job. In other words you CANNOT create a Position with a Job
    I have hacked around in the IMG in tables : -
    T777O
    T778V
    T77ZR
    But, to no avail.......

    Hi,
    You can mandate the relationship for a position with job by making a small modification in the table V778O.
    In that table select S (position) and view the existing relationship (here position will be related to an org.unit) and delete the existing relationship and create a new relationship S B007 C and save it.
    And now if you create a position system automatically gives a pop up box to create a relationship with a job for that position.
    Like this you can make mandatory relationship for a position with job.
    Hope this will help you.All the best.
    Regards,
    Vasu.

  • Actions for Org.Units, Jobs and Positions

    Dear All,
    I know how to create or copy the available actions for Org Units , Jobs and positions thro' the table T777M and run them through PP03.
    Once I do it , when I want to skip some of the relationships it doesnt allow me to , the next page tab is grayed out.
    I mean if we have for ex. a position reporting to a position and because he is, say CEO and I want to skip that relationship I am unable to , how to activate the skip or Next page tab ??
    Regards
    Uday

    Hi,
    Goto table T77IV click on maintain, Click on New Entries >> Enter the subgroup ( PVOB) PV - Plan Verson and OB is for Object you want to maintain the number ranges for eg : 01C for Job. >> Enter and save the record...
    It will take u to the next screen  >> Click on maintain intervals >> Click on Add Intervals >> New screen will appear ... enter the details as below :
    NO    From Number   To Number     Remarks
    01      1                     19999999        This is Object range
    Note : do not enter anything in "Current Number" &  Do not select "Ext"
    I hope this will help you....
    regards,
    Navinkumar

  • Uploads of Jobs and Positions

    Hi
    So we had a little bit of an issue. We uploaded the jobs and the postiions and went live. However after about a month now the Compensation team wants to redo the jobs and the positions. The system is already live and PA and OM are interconnected.
    I want to ask
    1) Can we upload this once again - I mean the new jobs and positions
    2) What is the impact on the existing Org units jobs postions and persons. these are all we are using at present.
    3) What is the impact on the PA side.

    Thank you for your reply
    We only have PA and OM live at present the payroll is going to be an external system with an interface to SAP.
    Yes I agree that the impact will be high but going by the meeting I have been in the past week we will have to rework the existing jobs and positions.
    So going by your suggestions should I delete all the objects created for jobs and positions and the relationships first and then upoad the new jobs and positions into the system.
    To give you an example
    We have manager as jobs - and postion probably as HR manager.
    What the business wants to do is have HR manager as the job and the local title used in other countries as the positions.
    e.g HRIS manager as the position. I know this is not the ideal way but that is the w=only way we can accomodate all the countries requirements.
    Now in IT 0001 there is the relationship between PA and OM. THe SAP position numbers may change for the employee. Could you recommend how do I link up the employees again, or would I need to reload the PA's also.

  • Any idea while updating job and position --I am getting the following error

    Hi, I am trying to update job and position to the existing employee but getting the following error
    Error report:
    ORA-20001: The primary key specified is invalid
    Cause: The primary key values specified are invalid and do not exist in the schema.
    Action: Check the primary key values before attempting to carry out the operation again.
    ORA-06512: at "APPS.HR_ASSIGNMENT_API", line 16616
    ORA-06512: at line 35
    Code which I am using is as below
    declare
    l_assignment_id number;
    l_object_version_number number;
    l_special_ceiling_step_id number;
    LC_EFFECTIVE_END_DATE DATE;
    LC_EFFECTIVE_START_DATE DATE;
    LC_DATETRACK_UPDATE_MODE VARCHAR2(100);
    LC_GROUP_NAME VARCHAR2(1000);
    LC_CONCATENATED_SEGMENTS VARCHAR2(1000);
    L_ENTRIES_CHANGED_WARNING VARCHAR2(1000);
    LC_GSP_POST_PROCESS_WARNING VARCHAR2(1000):=NULL;
    LC_PEOPLE_GROUP_ID NUMBER:=NULL;
    LC_OBJECT_VERSION_NUMBER NUMBER:=NULL;
    LC_SOFT_CODING_KEYFLEX_ID NUMBER:=NULL;
    LC_SPECIAL_CEILING_STEP_ID NUMBER:=NULL;
    LC_GRADE_ID NUMBER:=NULL;
    LC_OTHER_MANAGER_WARNING BOOLEAN:=NULL;
    LC_SPP_DELETE_WARNING BOOLEAN:=NULL;
    LC_ORG_NOW_NO_MANAGER_WARNING BOOLEAN:=NULL;
    LCTAX_DISTRICT_CHANGED_WARNING BOOLEAN:=NULL;
    L_EMP_START_DATE DATE:=NULL;
    J_LOCATION_ID NUMBER;
    J_PAY_BASIS_ID NUMBER;
    J_SEGMENT5 number;
    J_SEGMENT3 number;
    J_SEGMENT2 number;
    J_GRADE_ID number;
    J_PAYROLL_ID number;
    begin
    l_assignment_id := 214;
    hr_assignment_api.update_emp_asg_criteria
    P_VALIDATE => FALSE
    ,P_EFFECTIVE_DATE => TRUNC(sysdate)
    ,P_DATETRACK_UPDATE_MODE => LC_DATETRACK_UPDATE_MODE
    ,P_ASSIGNMENT_ID => l_assignment_id
    ,P_GRADE_ID => J_GRADE_ID
    ,P_POSITION_ID => 5062
    ,P_JOB_ID => 3063
    ,P_PAYROLL_ID => J_PAYROLL_ID
    ,P_LOCATION_ID => 142--J_LOCATION_ID
    ,P_ORGANIZATION_ID => 81
    ,P_PAY_BASIS_ID => J_PAY_BASIS_ID
    ,p_segment5 => J_SEGMENT5
    ,p_segment2 => J_SEGMENT2
    ,p_segment3 => J_SEGMENT3
    ,P_OBJECT_VERSION_NUMBER => LC_OBJECT_VERSION_NUMBER
    ,P_SPECIAL_CEILING_STEP_ID => LC_SPECIAL_CEILING_STEP_ID
    ,P_PEOPLE_GROUP_ID => LC_PEOPLE_GROUP_ID
    ,P_SOFT_CODING_KEYFLEX_ID => LC_SOFT_CODING_KEYFLEX_ID
    ,P_GROUP_NAME => LC_GROUP_NAME
    ,P_EFFECTIVE_START_DATE => LC_EFFECTIVE_START_DATE
    ,P_EFFECTIVE_END_DATE => LC_EFFECTIVE_END_DATE
    ,P_ORG_NOW_NO_MANAGER_WARNING => LC_ORG_NOW_NO_MANAGER_WARNING
    ,P_OTHER_MANAGER_WARNING => LC_OTHER_MANAGER_WARNING
    ,P_SPP_DELETE_WARNING => LC_SPP_DELETE_WARNING
    ,P_ENTRIES_CHANGED_WARNING => L_ENTRIES_CHANGED_WARNING
    ,P_TAX_DISTRICT_CHANGED_WARNING => LCTAX_DISTRICT_CHANGED_WARNING
    ,P_CONCATENATED_SEGMENTS => LC_CONCATENATED_SEGMENTS
    ,P_GSP_POST_PROCESS_WARNING => LC_GSP_POST_PROCESS_WARNING);
    end;
    Thanks in advance
    Rajini

    Please post the details of the application release, database version and OS.
    What HRMS patchset you are on?
    Please see if these docs help.
    Getting "ORA-20001: The primary key specified is invalid" Error Using HR_ASSIGNMENT_API.UPDATE_EMP_ASG_CRITERIA API [ID 737145.1]
    Hr_assignment_api.Update_emp_asg_criteria Gives Ora-20001, Ora-06512 [ID 334491.1]
    Thanks,
    Hussein

  • Creating a new job and position prompts customizing request...

    Dear All,
            I created a Job and Position through PP01 transaction. I am facing 2 issues while doing so...
    1. System prompts for Customizing request when i try to save the new entry.
        What table/settings do i need to maintain for turning of the customizing request promptings.
    2. Once i save the entries(after entering some dummy customizing requests), when i check the
        HRP1000 table for the new jobs and positions... The table entry shows 2 records for each Job and     
        position. One entry with Plan version '.:' and another with active Plan version '1'.
        I need to have just one entry in HRP1000 table for each job/position with ACTIVE plan version.
       I checked T77S0 table, it has active plan version maintained against the PLOGI-PLOGI entry.
       Please let me know what table i need to maintain to handle my requirement.
    Regards
    Nanda

    Hi Nanda,
    When you create new job or position in sandbox system it will not ask for the request number,since you generally dont transport the objects from sandbox to test system.
    When you create a new job or position in development system, it will always ask for request number. This is because, in most of the cases, you need to transport the job and position to test system and then to production system.
    Without a customizing request  you wont be able to transport those changes to next system.
    Thanks,
    Supriya.

  • In ABAP HR how to get job using position

    In ABAP HR how to get job using position (Using Infotype 1001)

    Hi anilkumar,
    1. u have the position
       u want the Job
    2. In hrp1001 table
       OTYPE = 'S' (for position)
       OBJID  = POSITION (AS ABOVE)
       SCLAS = 'C' (for finding job)
    <b>   SOBID = XXXXXX (here u will get the JOB)</b>
    regards,
    amit m.

  • No entries for org unit, job or position in T5KWB

    Hi Experts,
    I am running payroll for canada , i am getting this error for 2 employees for whom the org assignment been chaged recently -
    now they are giving , kindly help me - i have checked this table T5KWB and it dosnet hold value maintained for org unit
    50737186
    KTXDM Canadian Tax Infotypes Data Management
    Input
    P0461
    P0462
    P0463
    P0464
    Processing
    No entries for org unit, job or position in T5KWB
    Search in organization structure failed
    Check T5KWB for org unit 50737186 or higher-level org unit for 20101031
    Thanks
    Jay

    Hi Jay
    Get the position of the employees for whom you are getting the error message and maintain infotype "Canada Groups for WCB" for those positions. This should solve your issue.
    You may want to go through below link:
    http://wiki.sdn.sap.com/wiki/display/ERPHCM/WCB
    Hope this helps
    Best Regards
    Reddy

  • Pros and Cons to Jobs vs Positions

    I have a client with 120Employees.
    They have plans to grow to 600 and cap at 800.
    Every year they go before a Board to request for budget and approval for FTE and Jobs or positions new positions.
    Each position has a budget tied to it
    What are the pros and con for budgeting on the job level versus the position level?
    What functionality will be lost if i go with budgeting at the job?
    What functionality will be lost if i go with budgeting at the position

    Hi There,
    You can purchase an upgrade license of Captivate 8 by paying US $ 399.00 only if you own Captivate 7.
    You cannot purchase an upgrade of captivate 8 if you are using Captivate 6. You can either purchase Captivate 8 full version ( by paying US $ 999 ) or its annual subscription.
    In Captivate 8 annual subscription, you have to pay US $ 19.99 per month and it can only be activated by sign in with adobe id and password under which subscription has been purchased.
    Regards,
    Ajit

  • Job and Position Descriptions in ESS

    Hi all,
    Does anyone know of a way of an employee accessing their Job and Position Descriptions from OM via ESS/MSS?
    I can see that ESS is very usefull for dealing with the PA side of an employee, but find it hard to allow access to their own OM data.
    Any tips or pointers on the subject would be greatly appreciated.
    Kind Regards
    John Anderson

    Dear jmjakobsen,
    We are implementing HR for a public Sector client, here we would like to use Positions as we are also implementing Purchasing. I am looking after the implementation of HRMS.Could you be able to help me on deciding on the Position KFF Structure.
    We are using multiple segment position KFF.
    My doubt is that if we use a multiple segment Position KFF, then what should be the Job KFF structure. Also, Our employees will be tagged at Departmental level and we are not capturing the multiple work-groups within the department.
    How can we achieve the uniqueness of a position?
    Will there be substantial work involved in creating unique Positions?
    Thanks for the help, in advance
    Sachin S.

  • Transaction code to create job and position in LSMW

    Hi,
    I am looking for transaction codes that can be used in LSMW to Create Job and Position. I have used PPSC, but instead of creating Job and Position, It creates org unit although I pass in the parameter for ObjectType.
    I would appreciate if anyone can help me with this problem.
    Thank you in advance,
    Sunny

    Hi,
    Check this link
    http://help.sap.com/saphelp_46c/helpdata/en/0c/e785d8f8af11d2a61f0060087832f8/frameset.htm
    Thanks & Regards,
    Judith.

  • SAP HR load qualifications for job and positions

    Hi Everyone.
    I have one specific requirement, i have to create program to load qualification for a set of jobs and positions. can some one guide me if there is a function module or a BAPI or a BDC transaction to do it. For example  rep RHPEPRFM. any help is greatly appreciated

    Hi,
    you can use RH_INSERT_INFTY.
    Regards,
    Amit
    Reward all helpful replies.

  • Planned Compensation from Job to Position

    Hi experts
    Is there any transaction that migrates the planned compensation from the job to the position infotype?
    Thanks in advance

    No need to transfer IT1005 from a Job to a position. Based on the S-C relationship, a position inherits the planned comp from the position, unless you create an IT1005 on the position, in which case that superceded the one inherited from the job

  • Relationship code for Manager Position

    Hi Experts,
    How to find the relationship code for finding Manager position of France and US.
    i know that
    A012 is the relationship code for France,
    What should be the relationship code for US?
    Thanks in advance.

    Hi
    The standard SAP relationship code in OM is global and remains the same. Its not country specific. Hence France & US will have the same code.
    Regards
    UR

  • Job family, relationship to job

    Hello together,
    it is possible to assign one job(C) to several job families(JF)?
    For example functional area "IT" has job families “IT development” and “IT support”. I have to assign job “Consultant” to both job families. Even though relationship A/B 450 has time constraint 3, I can assign the job “Consultant” either to “IT development” or to “IT support” but not to both JF’s.
    Thanks
    Regards
    Dietrich

    Hi Dietrich,
    It's not possible in the standard system and there could be many repercussions if you change this.
    Best regards,
    Luke

Maybe you are looking for

  • Migration from Access to Oracle through SQL developer

    Hi, I want to migrate an mdb file which contains a set of tables to oracle. During this process, i have created schema and all the tables in Oracle using DDL scripts. I would like to transfer only the data to Oracle from access through SQL developer.

  • OEM - Coherence - Weblogic Versions compatibilty !

    Hi, We wanted to deploy to have a deployment of Coherence and Enterprise Manager with our Weblogic Server (10.3.0.0) We decided to go for Coherence 3.6 since it is a major release. Also, we want to avoid upgrading Weblogic Application Server to 11g s

  • Apart from thr FM "SO_OBJECT_SEND"    is theer any other FM for mailing

    Hi I am using the function module "SO_OBJECT_SEND"  and i am passing the following in this FM CALL FUNCTION 'SO_OBJECT_SEND'     EXPORTING       folder_id                  = w_folder_id       object_hd_change           = w_object_hd_change       obje

  • Hundreds if not thousands of FOLIOS in one App

    Hello - we have purchased Adobe DPS Enterprise Edition and are developing a custom storefront for our App. The purpose of the App is going to be an artbook bookstore. My question is, we were told by our sales reps that beginning with v22, we would be

  • Adobe Suite problems

    Hi, I have been paying for the Adobe Creative Cloud for 3 months now, but the last few times I've tried to open Illustrator, the Adobe Application Manager says I'm doing a 30 day free trial and asks if I'd like to pay for it. I don't understand why i