Mandatory Organizational unit when creating a position

Hi,
I would like to know if it is possible to make mandatory to create a relationship with a organizational unit when somebody creates a position using transaction PO13, or any other transaction.
Thanks a lot,
Mforman

Hi Mforman,
You can define the A003 Org unit relationship to position an "Essential relationship" and make it the next screen to be filled when creating a position (Table t77so). This, however, does not make the respective relationship a mandatory one as one can skip this relationship creation screen.
Regards,
Dilek
Edited by: Dilek Ersoz Adak on Apr 1, 2010 7:52 AM

Similar Messages

  • Set default value for price unit when creating material master data

    HI: Every
    could you tell me how to use user-exit or else ways to set default value(such as 1000) for field "Price unit" (MBEW-PEINH) when creating material master data(MM01)?
    I have try to use Exit:EXIT_SAPLMGMU_001. However, this way cannot respones it.
    thanks
    Henry

    Hi: Ihave find out a solution
    Use BADI: BADI_MATERIAL_REF
    SPROlogistics general enhancement supplement or change default data (industry)
    And then creating a Implementation Name
    Double click method: CREATE_MATERIAL
    And then write code as below:
    method IF_EX_MATERIAL_REFERENCE~CREATE_MATERIAL.
              c_mbew-peinh = '1000' .
    endmethod.
    However, SAP still store '1000' in database evenif we change the default value such as 100 when we use TCode MM01.
    in additional, we still use MM02 to change the default value such as '100'
    can anybody tell me how to do?
    thanks
    Henry

  • Organizational Unit is managed by Position

    i want to know which organizational Unit is managed by which position i.e. which is the chief position in particular Organizational unit.
    In which table i can get this relation ship.

    hai..
    standard reports are available in easy access
    Existing Organizational Units (Report RHXEXI00)
    Staff Functions for Organizational Units (Report RHXSTAB0)
    Organizational Structure with Persons (Report RHXSTR02)
    Organizational Structure with Work Centers (Report RHXSTR02)
    Existing Jobs (Report RHXEXI02)
    Job Index (Report RHSTEL00)
    Job Description (Report RHXDESC0)
    Complete Job Description (Report RHXSCRP0)
    Periods for Unoccupied Positions (Report RHFILLPOS)
    Existing Positions (Report RHXEXI03)
    Staff Assignments (Report RHSBES00)
    Position Description (Report RHXDESC1)
    Staff Functions for Positions (Report RHXSTAB1)
    Authorities and Resources (Report RHXHFMT0)
    Planned Labor Costs (Report RHSOLO00/RHXSOLO00)
    Vacant Positions (Report RHVOPOS0)
    Obsolete Positions (Report RHVOPOS1)
    Complete Position Description (Report RHXSCRP1)
    Reporting Structure without Persons (Report RHSTR05)
    Reporting Structure with Persons (Report RHSTR04)
    Existing Work Centers (Report RHXEXI05)
    Work Centers per Organizational Unit (Report RHXSTRU06)
    Existing Tasks (Report RHXEXI04)
    Activity Profile of Positions (Report RHXSTR07)
    Activity Profile of Positions with Persons (Report RHXSTR08)
    Existing Objects (Report RHEXIST0)
    Structure Display/Maintenance (RHSTRU00)
    Reporting on an Infotype (Report RHINFAW0)
    Starting an HR Report (Report RHPNPSUB)

  • Language German Position Appear When Create New position (PO13)

    Dear Experts,
    I have very odds problem. When I create new position through PO13, pop-up message appear "previous record will be delimited at end. Do you want to save".  For example I want to create new position 'Engineer ' starting 01 Feb 2011 through PO13.After I select new button , pop-up message with this record appear.If I choose yes, position with german language appear; for example 'entwickler' and validity period 30.11.1995 to 31.01.2012 with language  key German.So this position have 2 object
    1) DE 30.11.1995 31.01.2012 entwickler
    2) EN  01.02.2012 31.12.9999  engineer
    Every time I create new position seem I copy position from german language. How to avoid this error

    Hi
    Can i take clarity here
    a) Are you working in the IDES system to create the position ? if yes, there is every possibility of such a thing happening as ther are few standard entries in the SAP IDES system.
    If you are not working on the IDES system please excuse me for having picked to reply for your query.
    All the best to you
    Regards
    RR

  • Mandatory PR reference when creating Contract or RFQ?

    How is it possible to make it mandatory to reference a PR when creating a Contract or an RFQ? I have tried to make the Ref. PR field mandatory but still the system allows me to continue even though I have not entered a PR number.

    Hi,
    When you say that you have made the field mandatory and it is allowing you to continue, this means that you have not made the field mandatory and so I would check your settings. It is tricky to set the fields correcrly on Purchasing documents because there are so many different influencing factors. In addition to trying to set it as mandatory for the ME31 in the field selection reference table you have to set the MKK or WKK entries as well and also check all of the PT0K, PT2K etc. settings (the numeric character is the numeric character of the item category, i.e. the internal code for the "D", "L" etc.)
    So before you give up check the other field selection entries to make sure that they all have the field as mandatory.
    Steve B

  • How to set units when creating paths with a script?

    I'm trying to update a script that used to work in Photoshop CS4 but which seems to completely ignore the units I'm using in Cloud.  The script below should create a path layer with two lines that form an X across the entire document. 
    To test, I'm creating a new page that's 8.5 x 11 inches and 300 DPI.  I then run the script.  However, the the shape that is produced is huge and most of it is offscreen.  What am I doing wrong?
    function Point(x, y)
              this.x = x;
              this.y = y;
    function addVertexCorner(lineArray, x, y)
              var p0Info = new PathPointInfo();
              lineArray.push(p0Info);
              p0Info.kind = PointKind.CORNERPOINT;
              p0Info.anchor = new Array(x, y);
              p0Info.leftDirection = p0Info.anchor;
              p0Info.rightDirection = p0Info.anchor;
    function appendLine(p0, p1, lineSubPathArray)
              var lineArray = new Array();
              addVertexCorner(lineArray, p0.x, p0.y);
              addVertexCorner(lineArray, p1.x, p1.y);
              var pathInfo = new SubPathInfo();
              lineSubPathArray.push(pathInfo);
              pathInfo.operation = ShapeOperation.SHAPEADD;
              pathInfo.closed = false;
              pathInfo.entireSubPath = lineArray;
    function createPathLayer(title, subPathArray)
              var docRef = app.activeDocument;
              var originalUnit = app.preferences.rulerUnits;
              app.preferences.rulerUnits = Units.PIXELS;
              var myPathItem = docRef.pathItems.add(title, subPathArray);
              app.preferences.rulerUnits = originalUnit;
    var docRef = app.activeDocument;
    var imgWidth = docRef.width.as("px");
    var imgHeight = docRef.height.as("px");
    var p00 = new Point(0, 0);
    var p10 = new Point(imgWidth, 0);
    var p01 = new Point(0, imgHeight);
    var p11 = new Point(imgWidth, imgHeight);
    var lineSubPathArray = new Array();
    appendLine(p00, p11, lineSubPathArray);
    appendLine(p01, p10, lineSubPathArray);
    createPathLayer("Big X", lineSubPathArray);

    I did, andd while that did help to center the image on the page, now all my measurements are coming out about 4 times too small.  I'm also worried that changing the resolution might cause the image to lose some data due to resizing.
    What exactly does changing the resolution do?  Why does this center things?  How can I calculate points so that they exactly touch the edge of the document?

  • Positions under Organizational Units.

    Dear All,
    I need to maintain a Ceiling for Organizational Units with respect to Positions.
    For example :
    There is a Org Unit - HR Dept , and it has a restricition of 25 positions.
    So when i try to create a 26th position under this Org Unit ,it should show me "Error Message".
    I have tried with Quota Planning, which is totally different concept from the above case.
    Does SAP provides such option to restrict Positions under a OrgUnit..? If Yes, Pls Suggest me ...!!
    Thanks in Anticipation
    Best Regards,
    A B H I

    Do not know of any way to limit the number of Positions per Organizational Unit.  Not sure how or where you would even keep the numbers so that one org unit could have 25 positions and another org unit 40 and another org unit only 10.
    What you want to control is the number of Persons - employees.  They cost you money, positions do not.  This is controlled by the number of Positions available - one Person per Position.  If you have control of your Organizational Structure maintenance, then you control the number of Positions you create for each Organization. 
    Paul

  • Number range for Object (Organizational unit, Job, Position)

    Hi all,
    How to maintain number range for Organizational unit or Job or Position by Company Code or PA, EG, ...?
    Thanks,
    Quang

    Hi,
    For organizational objects maintain number ranges via OONR.
    e.g. In order to maintain number range for C - Job object in plan version 01 add the following line to OONR:
    01C  IN  EX
    Then select this line and hit "Number range maintenance"
    There create the interval you want.
    (EX 60000000 69999999)
    For PA, EG there is no number range maintained.
    Regards,
    Dilek
    Edited by: Dilek Ersoz Adak on Jan 14, 2010 8:08 AM

  • Business partner of organizational unit is not consistent

    Hi,
    Client is on SRM 4.0. When we are trying to search a user in the org structure, and when clicking on "Check" for this user, it was showing fine. But when we are searching any BP in the org strucutre, then immediately the BP name is vanishing against the BP of the user and when doing the "Check" it is showing the below two messages:
    Business Partner of organizational unit XXXXXXX is not consistent
    User cannot be repaired becasue the organizational unit contains errors
    When checking in BBP_CHECK_USRES, the user is not showing as defective. It is green.
    Similarly, the the organizational unit check is also showing as green.
    System is advising to run BBP_BP_OM_INTEGRATE. When we run this for the org units, these are coming as green.
    Users are able to create the shopping carts and also are able to create confirmations. But the problem is happening for some of the users where the system is not allowing to create shopping basket / confirmation.
    Strange thing is that, when we are searching the user by user id in the org structure, then the check is showing no messages. But if we search the same user using the BP number, then in the check, the messages are coming. And once the messages appear, it is appearing for all the users in the org strucutre even at the root node level.
    Any help is highly appreciated.
    Thanks & Regards,
    Aswini

    Hi Aswini,
    There are some possibilities to raise these kind of errors messages:                                                                               
    1) User with inconsistent data.                                           
    Please, check the instructions described in the following notes:          
    597475 - Repair users with inconsistent address data                      
    -> use the report B_REPAIR_EBP_USER_2 to make the user consistent.        
    419423 - Repairing incorrect EBP users                                    
    350129 - Creating business partner for organizational unit                                                                               
    When you create the Org Units have you fully completed the address        
    data, e.g post coe, telephone/fax number etc..                            
    If not, please enter a full address, save the data and see if this        
    generates the Business Partner.                                           
    Remember, that you can delete this user and create a new user.                                                                               
    2) Error in the positions after HR replication                                                                               
    Please, implement the following notes and retest the scenario:            
    1056873 -  Incorrect SRM users after HR distribution                      
    1016450 - Replication of persons deletes positions in SRM                                                                               
    After implementing these notes you should send the employee               
    corresponsing to the user in error with his position (using               
    transaction PFAL or report RHALEINI in UPDATE mode for all periods.                                                                               
    3) the user was deleted and a new was created and during these two        
    actions the user opened documents. So, in this case, the new user         
    becomes inconsistent                                                                               
    If the user is deleted from SU01 still the BP and S which is related to   
    that user will be retained (we can see this in PPOMA_BBP) transaction.    
    In this case we can create the user again using SU01 and can be attached  
    with the old 'S' and 'BP'.                                                                               
    2. If the user is completed deleted ie., all relations BP and S.          
    The new user has created.   
    In this case if the new user is corrupted we can delete this                  
    user (since the new user doesn't create any documents so far). But the        
    old documents should refer to the new BP related to the new user.   
    ========================
    Also, another option would be to follow the below instructions
    After applying the notes 1056873 & 1016450, send the employees        
    corresponding to the users in errors with their positions (using              
    transaction PFAL or report RHALEINI in UPDATE mode for all periods,           
    using evaluation path A008) ? If not, please do this and it must repair       
    the SRM users. Please test and give me the feedback.     
    Hope this helps,
    Kind Regards,
    Matthew

  • Usage of Department/Staff switch in Organizational Unit

    Hi All,
    Just would like to know the detail usage of the Department/Staff switch for the Organizational Unit. Currently neither the Department nor the Staff switch is selected for all the organizational units created. What would be the effect and impact if I set the Department switch for the organizational unit?
    Thanks a lot,
    Francis

    Hi Francis,
    A staff flag does not have to be marked as such. It does, however, influence the presentation of positions and organizational units in the graphic. Positions or organizational units marked with a staff flag are shown in the graphic next to their respective superior nodes. Without a staff flag they are shown under the superior node.
    As for the department,marking an org unit is optional and relates to integration.
    If integration with Payroll Accounting is active, certain records are written from Personnel Management to Master Data. If you flag organizational units as departments, only the marked units are written to Master Data.
    Marking units as departments makes sense when your organizational structure includes organizational units that are not actual departments (for example, a special project team).
    NOTE: In order for the department marks to be recognized, you must also make adjustments in Customizing.
    Department Switch in T77S0 (PPABT PPABT):
        o   0 = causes the organizational unit directly above a position     to
            be read
        o   1 = causes the organizational unit with a department flag
            (infotype 1003 "Department/Staff") above a position to be read
    Hope this helps.
    Regards,
    Arpita

  • Organizational Units with Business Partner

    Hi Experts,
    I'm creating my organizational structure on CRM system: on transaction "PPOMA_CRM" I'm creating all the organizations I need. But I 'm facing with a problem: I'm not able to assign them a business partner. I mean: in the transaction "PPOMA_CRM" under the column "Business Partner" I'm not able to insert any business partner.
    And on the other hand, if I go on transaction "BP" in order to define a new organization, when I select which is  the BP role to use for the creation of the organization, I don't see BUP004.
    Do you have any suggestions.
    Why I can't see it?
    And what I have to do to assign a business partner to an organization?
    Full point sif it helps.
    Thanks a lot.
    Best regards,
    Stefano

    Hi,
    Please find below my answers:-
    In a first moment I configured the HR-CRM integration and when I go on transaction PPOMA_CRM in order to display the Organizational Structure I can see, for each Organizational unit downloaded from HR, a business partner ID under the column "business partner". This is the same number ID which allows to identify the same Organizational Unit on transaction BP.
    Answer- In Transaction BP you can find the same Org unit business prtner created in PPOMA_CRM.
    Suppose you have created BP_Org in PPOMA_CRM which has got generated with certain BP number.But this will not reflect in transaction BP. All the Business Partners created under BP_Org will be getting reflected.
    Now I deactivated the HR-CRM integration and when I create a new Organizational Unit on PPOMA_CRM I'm not able to fill the column "Business Partner".
    Ans- If you have not maintained in HR-CRM Integration there will be no number range.
    If I insert the Organizationa Unit ID (displayed on PPOMA_CRM) in transaction BP I don't get any results.
    Ans- While searching in BP , first you donu2019t have option of searching BP with Org Unit ID but you will find number instead. But as I told you earlier this will search the Business Partner under your Root Organization in our case it is BP_Org. You cant search for BP_Org in Tx-BP
    I need to assign a business partner to my organizational unit for escalation purposes since the escalation is succesfully only for the organizational units with that business partner ID, i.e. all the organizational units downloaded from HR.
    So at the moment the escalation process doesn't work for the organizational units just created only on CRM standalone system.
    I think it is possible to make it work also for these organizations, but I don't know how!
    Ans-  You will have to maintain as below-
    Customer Relationship ManagementMaster DataBusiness PartnerIntegration Business Partner-Organization Management Set Up Integration with Organizational Management
    HRALX- OBPON =ON
    HRALX- ONUMB
    HRALX-OSUBG
    HRALX-HRAC=
    Regds...
    Arup

  • Function module for automating creation of organizational unit

    Experts,
    I am using SRM 4.0. In my system R/3 is acting as backend.
    For creation of new organisational unit in SRM, which is not present in SRM but present in R/3 side i have to do the manual activity every time.
    Is there any function module? Which can automate this process. If there is any function module which i can use please let me know. and how can i use that also please let me know.
    By this automation every time through the program the new organization unit should created in SRM side.
    Please let me know..
    Thanks in advance. I will appriciate through rewards points.

    Hi,
    Thanks for your input. But i am planning to send one file for HR records and then from that file through program i will upload the file. IF for some user the orgaisation unit will not be found then there itself it would create the OU through Function module(If Any)... I am doing like this as the HR system is some legacy system not the R/3 system.
    So Please help me to find out  function module.
    i will appeciate for you help.
    Thanks

  • Organizational Unit is locked

    Hi,
    I am doing the configuration in the development system, we have no of organizational units.
    while creating the OU, one of the OU i can not update the sub organizational unit, i am getting error was Organization Unit is locked by you,
    Kindly help me

    Hi Mohan,
    Thanks Mohan, problem  solved,
    i deleted the data from sm12,
    Thanks,,

  • Relationship Organizational Unit and BP

    Hi experts,
    How can you find the address of an Organizational Unit when you know the ID of it?
    For example, the ID of the Org Unit is o 50000011, in which table can you see the address nr of it?
    Thanks a lot in advance.
    Yongmei

    Hi,
    I have SRM 3.0 System in my Company.
    This FM belongs to Package CRM_COM_ORGMAN (last hanged by: 10.01.2003)
    Try use Function Module RH_GET_ADDRESS:
    call function 'RH_GET_ADDRESS'   
          exporting                   
               plvar   = 01        
               otype   = O
               realo   = 50000011    
               begda   = sy-datum       
               endda   = sy=datum      
               istat   = '1'          
          tables                      
               address = your_addr_tab.    
    Regards,
    Marcin

  • Organization Unit Assignement

    How will you assign the organization unit for the new position is it thru PPOM
    How will you replicate in Production

    Hai..
    1. 1001 Infotype..
    2. transport the same to prod...

Maybe you are looking for