Can a user exist in the org structure multiple times?

With one user id / single sign on?  If so what are the impacts?  Eg: when they log on what attributes get picked up?
Thanks

Hi,
it is possible, but if you have a 50-50 assignment you can't steer what attributes are taken into account, so you might be lucky, or you won't .
You can change the assignment of the CP to the S to something like 51-49, the 51 position will then be used to determine the attribute values.
If you want to buy for multiple companies/plants, maintain the BUK attribute and the extended attributes for locations.
The only real problem shows up when a user should be allowed to buy cross backend system. This is not possible. Then you should start thinking about a buy on behalf scenario or multiple user accounts.
Regards,
Robin

Similar Messages

  • Moving users in the org structure

    Dear Experts,
    Whenever, I move my user in PPOMA_BBP, it brings inconsistency that cannot be repaired.
    What could be the possible reason(s).
    Regards
    Mick

    Hi
    Which SRM version are you using ?
    You can repair the users using the same transaction.Even after that some times the inconsistency persists then delete the employee data and assign the user to the required Org. unit in the Org. structure using USERS_GEN transaction. Also check for the BBP_CONSISTENCY_CHECK transaction for this user (you will get list of errors in Consistency check ).
    <u>Related link -></u>
    How to re-instate the deleted Position of the user into Org structure.
    <b>Please go through the following SRM Reports which will help -></b>
    Program Name                   Report title                                                                               
    RHXSTR00                       Organizational Structure                                         
    RHXSTR01                       Organizational Structure with Positions                          
    RHXSTR02                       Organizational Structure with Persons                            
    RHXSTR03                       Organizational Structure with Work Centers                       
    RHXSTR04                       Report Structure with Persons                                    
    RHXSTR05                       Report Structure Without Persons                                 
    RHXSTR06                       Work Centers per Organizational Unit                             
    RHXSTR07                       Activity Profile for Positions Along Organizational Structure    
    RHXSTR08                       Activity Profile of Positions with Persons Along Org. Structure 
    <u>Also, go through the tables HRP1000 / HRP1001 in SRM.</u>
    <b>Look for "CHDAT" field in this Case, which will give Last changed by ehich user on which date..</b>
    <u>Some related Database Views</u>
    View name                      Short text                                                                               
    HRV1222OT                      Infotype 1222 (OTJID)              
    HRV5500OT                      EBP Function (OTJID)               
    HRV5501OT                      EBP Product Responsibility (OTJID) 
    HRV5502OT                      EBP Location (OTJID)  
    To change the Organization Unit of User, Try this FM - "RH_BUF_GEN_USER_POSITION_ORG" which will assign new org. unit to new position.
    <u>Related links -></u>
    mass user movement from one org. unit to another in SRM org. structure
    Table name of the organization plan
    Org. structure transport via RHMOVE30
    Re: How to get busines partner number from organization id ?
    Re: Org structure table
    How get the Last changed date of Busness Partner
    Report for Org structure change
    Hope this will definitely help.
    Do let me know.
    Regards
    - Atul

  • Searching the Org. structure

    Hi all,
    SRM 5.0, R/3 ECC 6.0
    I'm working on the n step BADI for the approval workflow for SC.
    The requirement is that I need to search the org structure to get the superiors of the creator of the shopping cart.
    The approach should be a bottom up approach where I start looking from the position of the creator and go searching upwards. I though of using the FM RH_STRUC_GET but we need to provide the user which is mandatory. There could be a case where there could be no immediate superior say no managers but there could be senior managers who are a level above. in that case I won't be able to use the above mentioned FM.
    Are there any tables or FMs where we can perform this kind of search?
    Regards
    Kishan

    Hello Kishan,
    You can use FM RH_STRUC_GET for your scenario with ACT_WEGID parameter. You can define evaluation path in OOAW transaction. Here is some sample I developed in the past.
    3)get manager from Org unit
      WHILE lt_manager is initial.
        CALL FUNCTION 'BBP_OM_STRUC_GET_MGR_FROM_ORG'
          EXPORTING
            IV_ORGUNIT               = lv_objid
            IV_SEL_DATE              = SY-DATUM
          IV_SELECT_BUPA           = ' '
          IV_PPOMA_CALL            = ' '
          IV_AUTHORITY_CHECK       = 'X'
        IMPORTING
           ET_MANAGER_ID            = lt_manager
         EXCEPTIONS
           INTERNAL_ERROR           = 1
           NO_ROOTS                 = 2
           NOT_FOUND                = 3
           OTHERS                   = 4
      if lt_manager is initial.
        CALL FUNCTION 'RH_STRUC_GET'
          EXPORTING
            ACT_OTYPE              = 'O '
            ACT_OBJID              = lv_objid
            ACT_WEGID              = 'A002'
          ACT_INT_FLAG           =
          ACT_PLVAR              = ' '
            ACT_BEGDA              = SY-DATUM
            ACT_ENDDA              = SY-DATUM
            ACT_TDEPTH             = 2
            ACT_TFLAG              = 'X'
            ACT_VFLAG              = 'X'
          AUTHORITY_CHECK        = 'X'
          TEXT_BUFFER_FILL       =
          BUFFER_MODE            =
        IMPORTING
          ACT_PLVAR              =
         TABLES
            RESULT_TAB             = lt_agent
          RESULT_OBJEC           =
          RESULT_STRUC           =
         EXCEPTIONS
           NO_PLVAR_FOUND         = 1
           NO_ENTRY_FOUND         = 2
           OTHERS                 = 3
        IF SY-SUBRC eq 0.
          loop at lt_agent into lwa_agent.
            lv_objid = lwa_agent-objid.
          endloop.
        ENDIF.
      endif.
    ENDWHILE.
    Regards,
    Masa

  • How to get PNP Org Structure to reflect the org structure as of key date?

    I created a custom program using the PNP logical database.  I defined a custom report category indicating the selection period = employee selection period and allowing org.structure.  I’m also using the standard SAP PNP_DEFAULT selection view. 
    Inside my ABAP I initialize the pnpbegda and pnpbegps to reflect 20060930.  Upon Execution the key date reflects 09/30/2006.  I click on the org.structure button.  The org.structure displayed reflects the one as of today rather than as of Sept-30. 
    During run debug I see that the RP_PNP_ORGSTRUCTURE  program, LRPPNU11, calls function 'RH_TYPE_STRUC_HELP' to get the org.structure.  The call to this function passes 09/30/2006 for the begda and endda, but it still returns the latest org.structure.  I did some playing with this function and found that if I also pass the ACT_SEARCH_WEGID as ORGEH it works.
    Any idea on how I can get the LRPPNU11 program to pass the ACT_SEARCH_WEGID or the subsequent called functions to process for ORGEH?

    thanks. but maybe I don't describe my problem well.
    I use javascript to get some information such as position, sytle of each elements and then pass these to javafx. So the besides the dom tree, I can get more information about elements.
    I need to pass them back to javafx.
    if node support setUserData, I can associate them to each Node/Element. But webkit don't support this feature.
    BTW, If javascript pass a object to javafx. it can only deal with primary types such as string, numeric. But I need pass back a complicated javascript object like:
    {name:"parent", children:[{name:"child1"},{name:"child2"}]
    I can use (String)JSObject.getMember("name"); and JSObject children=JSObject.getMember("children");
    but I can't cast children to Object[] or JSObject[].
    so I have to use some tricky to convert Javascript Object to json string and then in javafx convert it back to Object tree.
    Edited by: user12956197 on 2013-3-11 上午4:27

  • Integrate the Org structure and employees SAP HR system to CRM via ALE

    Hi All,
    We want to integrate the organization structure and employees from mySAP HR system to mySAP CRM system. We are also aware that the same can be achieved through ALE Interface between both these systems.
    In addition to the HR Organization Structure from HR system, can we also bring over the Sales Organization Structure from R/3 using transaction CRMC_R3_ORG_GENERATE?
    1) Can someone , please let us the possible challenges which might occur when we download HR Org structure from SAP HR to SAP CRM.?
    2) What is the implication of maintaining an HR org structure and CRM Sales Org structure within the SAP CRM 52 system?
    3) Any _precautions) should we take before doing the download via ALE??
    Please get back, suitable points will be awarded.
    Regards
    Ritvij

    Hi Ritvij,
    Couple of things that spring to mind are:
    1) When you do the initial data load (PFAL) try to ensure that no one is amending the Org structure as Objects can be locked and therefore not transferred. (on one of our test loads the top level was locked and therfore all subsequent levels were just transfered and we didn't have a top level)
    2) Keep the 'forms of address' in CRM the same as the R/3 ones
    3) Keep the same Employee and Org Unit IDs but prefix with (for exmaple) EM and OU in CRM. (Through the HR integration config in CRM). This may also (apparantley) aid you if set up something like an Employee interaction centre in the future.
    I will update when other stuff springs to mind.
    Cheers
    Gaz

  • Save the ORG structure

    Hi SAP GURUS,
    Facing some problem in saving the Organisation structure .However it is saved in .PS format and can be viewed in Post script viewer. The problem is the PS viewer is not depicting the Exact org structure from the .PS file
    Is there any other ways to save the ORG Structure or to open the .PS files.
    Best Regards,
    Srikanth S

    Sameer,
    Thanks for the Response.Even the .ps File is opening in the Post script viewer and the Structure is not depciting correctly.It was getting cropped.and some of the Org units were not at all seen.
    will check in Acrobat writer and get back to you.
    Best Regards,
    Srikanth S

  • ESS - Managers can view current salaries on old org structure

    Hi,
    I have a problem in SAP MDT and am hoping for some help. A manager can change the date range in MDT to view historical organisational structures and data... My problem is that managers can view old organisational structures with up to date personal details by using date ranges such as 01.04.2007 - 27.07.2009!
    This means that managers can view their old colleagues current salaries by changing and expanding the date range...
    Does anybody know the best method of fixing this? I know that the original problem is due to poor maintenance of the org structure, however this may be the case for several departments...
    Thanks!

    Euan :
    You can implement structural authorization, and assign managers to authorization  profiles with peridod set to 'D' (Key Date) to resolve this issue.
    Rgds.

  • How to see the Org Structure??

    Hi
    Could anyone please let me know how can we look at the org structure..??
    I know how to create pa,psa,eg,esg..but how to look at the org structure and the hierarchies of diff pers areas is wot i am looking for.
    Thanks in advance
    Kushagra

    Hi Kapoor,
    Follow the path:
    SAP Easy Screen> HR > Info Sys > Reporting Tools > HIS
    Follow the T Code: PPIS
    If found useful please award points
    Reagards,
    Madhu Sudhanan

  • Can I gift the same app multiple times to multiple users?

    Can I gift the same app multiple times to multiple users?
    Like, if I wanted to buy iMovie for 3 friends, could I buy the app as a gift 3 times?

    You should be able to gift it multiple times
    Gifting content : http://support.apple.com/kb/HT2736

  • How to restrict the user to change the project structure but not the documents?

    Hi,
    I have created one project assigning different users in Solution manger. I want to risitrict some of the users to change the project structure but simultaneously allwoing the project documents to be created, edited or deleted using solar01 under Project documentation tab. For that I have followed the steps provided in the follwoing link.
    http://wiki.scn.sap.com/wiki/display/SM/Howto+Restrict+Changes+to+Project+Nodes+to+Assigned+Team+Members
    I am able to restrict the users to change the project structure, but I am not able to allow access to the project documents. It gives me the message "You are not authorised to change the project". This fulfills my one of the requirements. But, Is there any way  to restrict the user to change the project structure but not the documents?. Any help will be apperitiated.
    Thanks,
    Rutvik Uapdhyay. 

    Hi Rutvik,
    Basically there are 2 different authorization role ...you should look for and customize as per requirement in Z* namespace.
    role  - SAP_SOLAR01_ALL
    this take care of objects in Solar01 like tab access etc
    role -SAP_SOL_KW_ALL
    this takes care of entire documentation within solman
    hope this helps
    Regards
    Prakhar

  • C# Code that can add user directly to the AD through custom share Point form

    Hi
    Here is my requirement. Can anyone resolve??? 
    Trying to build a Visual web Part in which system administrator can add user directly to the AD through custom share Point form.
    Please help in doing this...

    Hi
    Use DirectoryEntries.Add Method
    https://msdn.microsoft.com/en-us/library/system.directoryservices.directoryentries.add.aspx
    Or
    www.codeproject.com/Articles/18102/Howto-Almost-Everything-In-Active-Directory-via-C
    Or.
    www.morgantechspace.com/2013/10/create-new-active-directory-user-in-c.html?m=1
    Regards, Rajendra Singh If a post answers your question, please click Mark As Answer on that ost and Vote as Helpful http://sharepointundefind.wordpress.com/

  • My HD TV has two HDMI inputs which are being used by a home theater system and my RCN cable box. i want to be able to use my appleTV as well as those but do not have another HDMI input. How can i connect it so that i can use any 1 of the 3 at any time?

    My HD TV has two HDMI inputs which are being used by a home theater system and my RCN cable box. i want to be able to use my appleTV as well as those but do not have another HDMI input. How can i connect it so that i can use any 1 of the 3 at any time?

    Get an HDMI switcher. Plug in the ATV directly to the TV and then use the switcher on the other input.
    Example
    http://www.amazon.com/Ultra-High-Performance-Switcher-Switch/dp/B0015YWKYY/ref=s r_1_1?ie=UTF8&qid=1316918064&sr=8-1

  • HT2486 How can you put same contact in a Group multiple times so that you can print the same mailing label multiple times?

    How can you put same contact in a Group multiple times so that you can print the same mailing label multiple times?

    Hello,
    Avery...
    https://discussions.apple.com/thread/2588943?start=0&tstart=0
    Or...
    http://www.belightsoft.com/products/labelsaddresses/overview.php

  • How can I delete icons from the desktop? every time I open a application (e.g. skype) the icon goes to the desktop

    how can I delete icons from the desktop? every time I open a application (e.g. skype) the icon goes to the desktop

    to remove the HD icon
    In Finder's Preferences pane, in the General tab, uncheck "Hard disks" under "Show these items on the Desktop" to clear away the icon.

  • HT3180 When using my remote the cursor moves multiple times.  How can I fix this?

    When  using my remote the cursor moves multiple times.  How can I correct?

    Hi Freebyrd1999,
    In order to get your Apple TV working correctly you may need to restore it. Use the steps in this article -
    Apple TV (2nd and 3rd generation): Restoring your Apple TV
    http://support.apple.com/kb/HT4367
    Thanks for using Apple Support Communities.
    Best,
    Brett L

Maybe you are looking for

  • New BT website = I can no longer find my mobile ac...

    Well done BT! For the 2nd month running I get the usual e-mail telling me my mobile bill is now available, only to find they've changed mybt.com and I can no longer see my mobile phone account, only my landline/broadband. I've wasted at least 10 minu

  • Cannot get songs from Itunes (iOS 6.1.3) to iphone 4s..HELP!

    I have a pc running Itunes 6.1.3, and and Iphone 4s.  I have exhausted every avenue I can trying to get songs from itunes into my iphone 4s.  I've unchecked every box and checked every box I could find, reinstalled itunes completely, restored the iph

  • Adobe photoshop lightroom 4.pkg trying to open with text edit -- how do i open as application?

    downloaded trial for mac, all requirements are met, but cannot get download to open as an application, mac is trying to open with text edit; downloaded several times, every time the disk utility opens

  • Bugs in DRDT tutorial

    Section 6.2.1 of the tutorial says: 18 if (!pflag) 19 continue; 20 if (v % i == 0) { 21 pflag[v] = 0; 22 return 0; 23 } The Data-Race Detection Tool reports that there is a data-race between the Write to pflag[] on line 21 and the Read of pflag[] on

  • Cannot find directory inode 0

    Friend, In Solaris 10 we took dump of a vxfs file system at run level 3 using vxdump to LTO4 tape but while restoring it back using vxrestore command we are getting an error as "cannot find directory inode 0 abort[yn]" -> ossdg/export (2011-08-09 16: