IDM Org Chart Postions need to be created automatically in IDM as MX_ROLE

Hi,
We have a requirement to create the org chart positions with a one to one mapping to IDM Business Roles but there is no standard SAP functionality to do this in the SAP Provisioning Framework or VDS.
Creating each Business Role will take too long and we need to have a process where new positions in HR are autmatically created as an MX_ROLE entrytype in IDM
Can anyone help me in determining an effective way so that all business roles can be created from the ECC HR Org Chart as an initial load type job?
We do not expect to have any privileges assigned yet only the MSKEYVALUE and the Description loaded into IDM for MX_ROLE entrytype. The privilege assignments will be a manual process.
Thank you
Shan

Hi there,
I have also been trying to do this but am not very good at abap  so am having trouble doing the extract from HR for the positions.
Can you help with the position extract part of this configuration.
If i understand correctly you are loading a file into IDM which creates all the business roles which is exactly what I want to do.
Thanks,
Shan

Similar Messages

  • Configuring Org Chart

    I am in the process of configuring the org chart, I need claification on what fields do I enter in this section?  Also, we do not have the position to position relationship, so do I do the section under org chart for positions?  Lastly, would I enter just fields pertaining to employee in employee listing, org unit fields for org listing, and position fields for  position listing. If I change fields do they have to match the out of the box Nakisa fields?

    Hi there,
    What version are using and are you using Live or Staged? I'm unclear what section you are referring to when you say "what fields do I enter in this section?".
    If you do not maintain position to position relationships then you would need to disable the Position Hierarchy, although the Position linked hierarchy for the Organisation Structure can be left enabled as this works using the O to S relationship.
    In each listing you use fields relating to that type of object as you have suggested below. This makes logical sense in terms of user acceptance.
    Changing fields depends on the version you are using and the type of architecture (Live or Staged).
    Best regards,
    Luke

  • Develop the Org-chart style page in OAF--Need suggestions

    How would I go about creating a basic organisation chart using css? What I want is a series of boxes with job titles in them which appear vertically and with a connecting line in the center.
    For the above requirement i need to develop the OAF page. can you provide any valid suggestions to me to acheive this kind of requirement.
    Is there any CSS styles for org-chart style..
    Thanks in advance

    I doubt you'll be able to achieve your exact requirement in OAF. Try experimenting with other techs like Flash, AJAX or HTML.
    Oracle.com has an 'out of the box' Flash based solution published here: http://solutions.oracle.com/solutions/applaud/org

  • Need help in creating a chart from 3 datasets

    Need help in creating a chart in SSRS from 3 datasets
    Can someone help me in creating a chart from 3 datasets, however datasource is same.

    Thank you Olaf...
    could anyone help me in using union all with the below
     WITH a AS (
    SELECT
    clientid,
    DATEPART(year, row_date) AS 'Year',
    DATEPART(month, row_date) AS 'Month',
        value ,
        CASE metricid WHEN 16 THEN 'FCR' ELSE 'Cases' END AS metric
    FROM XXXXXX AS V
    WHERE metricid IN (16, 11)
    AND row_date BETWEEN '2012-01-01' AND '2014-10-01'
    AND value IS NOT NULL)
    , b AS (
    SELECT     clientid ,
        Year ,
        Month ,
        value AS 'Cases',
        metric 
    FROM a
    WHERE metric = 'cases')
    , c AS (
    SELECT     clientid ,
        Year ,
        Month ,
        value AS 'FCR',
        metric  
    FROM a
    WHERE metric = 'FCR')
    , d AS (
    SELECT b.YEAR, b.MONTH, c.FCR, b.Cases 
    FROM b INNER JOIN c 
    ON c.clientid = b.clientid
    AND c.[YEAR] = b.[year] 
    AND c.[month] = b.[month]
    WHERE c.fcr <> 0 AND b.cases <> 0
    ,E AS (
    SELECT [Year], [Month], SUM(FCR) AS FCR, SUM(Cases) AS Cases
    FROM d
    GROUP BY [Year], [Month])
    select YEAR, MONTH, 
    CASE MONTH 
    WHEN 1 THEN 'Jan'
    WHEN 2 THEN 'Feb'
    WHEN 3 THEN 'Mar'
    WHEN 4 THEN 'Apr'
    WHEN 5 THEN 'May'
    WHEN 6 THEN 'Jun'
    WHEN 7 THEN 'Jul'
    WHEN 8 THEN 'Aug'
    WHEN 9 THEN 'Sep'
    WHEN 10 THEN 'Oct'
    WHEN 11 THEN 'Nov'
    WHEN 12 THEN 'Dec'
    END AS MonthName
    ,e.FCR AS FCRCases
    ,e.Cases AS TotalCases
    ,CASE 
    WHEN [month] IN (11, 12, 1) THEN 1
    WHEN [month] IN (2, 3, 4) THEN 2
    WHEN [month] IN (5, 6, 7) THEN 3
    WHEN [month] IN (8, 9, 10) THEN 4
    END AS 'Quarter'
    --,CONVERT(DECIMAL(18, 2),(e.FCR/e.Cases)*100) AS FCRRaw
    from e
    order by YEAR, MONTH
    **************2nd query*************
    WITH a AS (
    SELECT
    clientid,
    DATEPART(year, row_date) AS 'Year',
    DATEPART(month, row_date) AS 'Month',
        value, 
        CASE metricid WHEN 56 THEN 'numerator' ELSE 'denominator' END AS metric
    FROM XXXXXXX.[Values] AS V
    WHERE metricid IN (56, 10)
    --WHERE metricid IN (11,16)
    AND row_date BETWEEN '2013-10-01' AND '2014-02-01'
    AND value IS NOT NULL)
    , b AS (
    SELECT     clientid ,
        Year ,
        Month ,
        value AS 'numerator',
        metric
    FROM a
    WHERE metric = 'numerator')
    , c AS (
    SELECT     clientid ,
        Year ,
        Month ,
        value AS 'denominator',
        metric
    FROM a
    WHERE metric = 'denominator')
    , d AS (
    SELECT b.YEAR, b.MONTH, c.denominator, b.numerator 
    FROM b INNER JOIN c 
    ON c.clientid = b.clientid
    AND c.[YEAR] = b.[year] 
    AND c.[month] = b.[month]
    WHERE c.denominator <> 0 AND b.numerator <> 0
    , e AS (
    SELECT [Year], [Month], SUM(numerator) AS numerator, SUM(denominator) AS denominator
    FROM d
    GROUP BY [Year], [Month]
    SELECT *, 
    CASE 
    WHEN [month] IN (11, 12, 1) THEN 1
    WHEN [month] IN (2, 3, 4) THEN 2
    WHEN [month] IN (5, 6, 7) THEN 3
    WHEN [month] IN (8, 9, 10) THEN 4
    END AS 'Quarter'
    FROM e
    ORDER BY 1,2
    ******************3rd query**************
    WITH a AS (
    SELECT --L.[LocationGroupId],
    -- T.locationid,
    -- T.AccountId,
    TR.datestamp,
    /*Convert(NVARCHAR, DatePArt(year, TR.datestamp)) + '-' + Convert(NVARCHAR, DatePArt(month, TR.datestamp)) + '-01'*/ 
    TR.Period AS ValueDate,
    CASE WHEN TR.TargetResultState = 0 THEN 0 WHEN TR.TargetResultState = 1 THEN 1 WHEN TR.TargetResultState = 2 THEN 1 ELSE 0 END AS Met,
    CASE WHEN CONVERT(DATE, Convert(NVARCHAR, DatePArt(year, TR.datestamp)) + '-' + Convert(NVARCHAR, DatePArt(month, TR.datestamp)) + '-01') > T.Startdate AND CONVERT(DATE, Convert(NVARCHAR, DatePArt(year, TR.datestamp))
    + '-' + Convert(NVARCHAR, DatePArt(month, TR.datestamp)) + '-01') < T.Enddate THEN 1 ELSE 0 END AS ActiveTarget
    FROM XXXXXX AS TR
    INNER JOIN dbo.Target T ON TR.TargetID = T.ID
    --INNER JOIN dbo.Location L ON T.Locationid = L.Id
    WHERE --locationid <> - 1 AND 
    TR.Period IN ('201306', '201307', '201308', '201309', '201310', '201311', '201312', '201401'))
    select ValueDate, SUM(Met) AS Met, Count(ActiveTarget) AS ActiveTargets,
    right(ValueDate,2) as Month
    ,left(ValueDate,4) as Year
    ,CASE 
    WHEN right(ValueDate,2) IN (11, 12, 1) THEN 1
    WHEN right(ValueDate,2) IN (2, 3, 4) THEN 2
    WHEN right(ValueDate,2) IN (5, 6, 7) THEN 3
    WHEN right(ValueDate,2) IN (8, 9, 10) THEN 4
    END AS 'Quarter'
    from a
    group by ValueDate
    order by ValueDate

  • File Server Migration - For ORG A Forest to ORG B Forest ( Need to create and Map Security Group automatically on new Migrated Folders - Please Help

    I have two forest With Trust works Fine .
    I have file server in ORG – A ( Forest ) with 2003 R2 Standard
    I have a File server in ORG  - B ( Forest ) With Windows server 2012 ( New Server for Migration )
    I have 1000 + folders with each different permission sets on ORG-A. We are using Security groups for providing permission on the share Folders on ORG A
    I need to Migrate  all the folders from ORG – A to ORG – B.
    I am looking for an automated method of creating Security Groups on AD during the Migration, Once the Migration is Done, I can add the required users to the security groups manually.
    Example.
    Folder 1 on ORG – A has Security Group Called SEC-FOLDER1-ORGA
    I need an automated method of Copying the files to ORG – B and Creating a new security Groups on ORG –B Forest with the same permission on parent and child Folders. I shall Add the users manually to the Group.
    Output Looks Like
    Folder 1 on ORG – B has Permission called SEC-FOLDER1-ORGB ( New Security Group )
    Also I need a summarized report of security Group Mapping, Example – Which security Group on ORGA is mapped with Security Group Of ORGB

    Hi,
    I think you can try ADMT to migrate your user group to target domain/forest first. Once user groups are migrated, you can use Robocopy to copy files with permission - that permission will continue be recognized in new domain as you migrated already. 
    Migrate Universal Groups
    http://technet.microsoft.com/en-us/library/cc974367(v=ws.10).aspx
    If you have any feedback on our support, please send to [email protected]

  • Need help in creating a Waterfall Chart

    Hi,
    I have a requirement where in which I need to create a waterfall chart. In this chart we need the sales value for a Brand for two years, (say 2010 and 2009) and also need to plot the growth of the various sub-brands that come under that brand. Some dummy
    data to explain my scenario follows.
    MAT 09
    MAT 10
    Brand
    1400
    1450
    Sub Brand 1
    300
    400
    Sub Brand 2
    400
    500
    Sub Brand 3
    500
    300
    Sub Brand 4
    100
    50
    Sub Brand 5
    100
    200
    In my chart it has to be a vertical bar chart, 1st line should be MAT 09, then the growth values should be plotted, but the axis for that will not be 0, rather start at the value of MAT09.
    I am unable to paste a dummy chart here. :(
    Can anyone throw any inputs as to how it can be achieved.
    Thanks in Advance,
    Suman Sarkar

    Hi Suman Sarkar,
    I am a little confused about the layout of your waterfall chart, could you please post some dummy chart here, with a clear
    understanding with the issue, we could give some solution or workarounds, the steps of uploading the picture are following:
    1.      
    Upload the picture to a website
    http://skydriver.live.com 
    2.      
    View the picture in the website.
    3.      
    Right-click the picture, and then select “Copy”
    4.      
    In reply window, select “Paste” to paste the picture into a post.
    If you have any question about the steps, please feel free to ask.
    Regards,
    Challen Fu

  • Easy way to create an Org Chart in AppleWorks?

    I have used MS PowerPoint to create and maintain Org charts in the past. I see that the Presentation piece of AppleWorks has similar functionality to PowerPoint.
    Is there an easy way to start making an Org Chart (Supervisor, subordinates, etc) or do I just create circles and lines and create the "hard way?"

    If, by the "hard way", you mean "manually", then with AppleWorks, yes.

  • How to create a Org chart using BIP?

    I am trying to generate a Dashboard Site map using BIP. I need to generate a Organization chart kind of format to achieve this. I need to span both vertically and horizontally for this. We can generate vertically but I can not find any option in BIP to span it horizontally.
    for ex: Dashboard A has four dashboard pages under it 1,2,3 and 4. Now each page has multiple reports in them. This gives a org chart format

    419008,
    It kinda depends on how you want to output the picture. I'm currently taking an interest in svg, after I saw this : http://www.svgopen.org/2003/papers/VisualizingDatabaseManagementwithSVG/
    With Oracle Forms 6i, there was Oracle Graphics, which I presume draws pie charts. If you are running web clients on windows, then you could use third party ActiveX objects to render pie charts. My colleagues at work use something called 'TeeChart' to do this. I've also seen 'ploticus' (have a look on sourceforge for this) which generates graphcs from lists of data.
    Tak

  • Importing and Creating Org Charts

    I am trying to move org charts from powerpoint to Keynote so that I can quick using powerpoint but have been unable to find information on creating org charts in keynotes......is this not a feature of Keynote right now?

    I've created really fine looking Org Charts in Keynote before. Keynote doesn't have Org Charts as a specific feature, but I usually do it by drawing boxes and lines.
    There's another product called OmniGraffle that has the some of the specific org chart features you're looking for. By the way, what specific features are you looking for in org chart creation? Just thinking there may be some way to fake it in Keynote (because Keynote really does make them look better!)

  • Not able to view data in Aria People search Org Chart

    Hi,
    I have uploaded my data into aria_tmp_people, aria_people_a & aria_people_b.
    While doing the search from Aria poeple, the uploaded data is not displaying in org chart.
    Your help is highly appreciated.
    Thanks
    Aneesh

    Hi Aneesh,
    First be more clear about Aria Application. As Aria, is been related to an hrms part of an organization carrying the people infomation and it has some separate features too.
    But in your prespective i couldnt able to understand what do you want to do with that packeged application.
    Since you want to customize the aria application according to your organization needs means, First collect all your necessary organization information that is needed(like tables etc.). Then substitute those (i.e) your organization tables in the appropriate places in the form of query.
    Please dont use the same Aria people table, as the Oracle may framed according to their employee information. Nearly Aria application has 200 supporting objects. If you want to use the same objects means whether u r going to creating nearly 200 supporting objects..It is not worth at all.
    Please be more clear in your requirement that, what you are doing, and then raise the question. Be more prepared with your tables along with datas, and let give your reply once you were been prepared with your organization details table.
    As there are more peoples in the forums to help you other than me.
    Brgds,
    Mini
    Mark Answers Promptly

  • Hiding/Removing field in a standard Detail view Org Chart  3.0  SP2

    We are trying to remove or hide a couple of fields from the details at the position level in the admin console for the Org Char application and cannot seem to find this in the Details designer.  We were able to do this for the Org Modeler, but the screen in the details designer doesn't seem to have this functionality in the admin console of the Org Chart application.
    Any help would be greatly appreciated.
    Jacques

    Hi Jacques,
    There are 3 things you are trying to do here:
    1. Change Location caption
    2. Change Location field logic for data retrieval
    3. Remove Mobile number and Fax number fields
    Each of these has completely different methods and some are easier than others.
    1. You need to change the caption for Location field. In the Caption Editor in the AdminConsole you need to change the caption key Field_Location.
    2. I'm pretty sure this comes from a Nakisa BAPI and therefore cannot be changed. The alternative (and complex) methods are to either create a NakisaRFC function to extract this data or (for better performance) create a BAPI that extracts all data for that section of the details panel with your "new" Location field. These would be the same process if you wanted to add an entirely new field.
    3. You should comment out these fields in the 75927beffed94564bef6af9d3045757e fieldset in the detail data configuration SAPPositionIncumbentsDetailsConfig_Data.xml.
    Best regards,
    Luke

  • Org Chart Shapes are no longer recognized as org chart shapes by Visio 2013

    I created an org chart in Visio 2013 by importing data from Excel.  It generated the org chart properly.  I then began cleaning up (i.e. Best Fit to Page, changing layouts on pages, changing size & spacing) as need to be visually more
    appealing.  After cleaning up many pages, Visio no longer recognized the shapes on the page as org chart shapes.  This now causes the 'Best Fit to Page' feature to display a msg stating "Add organization chart shapes to your drawing, and
    try again."  It also causes the 'position' (employee) shapes under a 'manager' shape to no longer move with the manager shape when the manager is repositioned.  This is now true for all shapes on all pages in my org chart.  Can the
    shapes be fixed to go back to being recognized as org chart shapes?

    Hi,
    If you want to show the pictures in the Organization chart, we need to add the photo the display
    fields. Please try to do the following steps:
    Create a new Organization chart> Organization Chart Wizard choose information that's already stored in a file or database> Choose A microsft Exchange Server directory> Select Photo and add to display fields> Choose the information which you want
    to show> I want to specify how much of my Organization to display on each page > Choose the team
    For more detail information, please refer to the following link:
    http://blogs.office.com/b/visio/archive/2012/08/20/visualize-your-organization-like-never-before-with-org-chart-styles-and-auto-photo-imports.aspx
    http://office.microsoft.com/en-in/visio-help/create-an-organization-chart-automatically-from-employee-data-HA102832203.aspx
    Thanks,
    George Zhao
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click "[email protected]"

  • Org chart from SAP HR

    Dear collegues,
    has anyone managed to get org. chart from SAP from standard report or HIS.
    I need an org chart with org. unit manager position and below manager the employees position. Is it possible to get this from standard report or do I need a software like org. publisher.
    In the standard report I have only managed to get org unit and all postition below but not functional org chart with org. unit, under that is manager position and under that postion, employees postitio.
    Pls help
    Thank you
    Romano

    Hi Harshvardhan,
    i have tried what you've suggested me and now I can get the manager position in red square but I can't get other positions in that org. unit to be under the manager position. I only get org unit and all positions under that unit.
    Hi Dilek,
    i have tried standard reports but they don't give me the sturcture that my director wants.
    They want to have org chart like this:
    Org. unit
         I
         I
    Manager postition
         I
         I
    All other positions that are not manager
    And from SAP I can only get this org chart:
    Org. unit
         I
         I
    All positions (manager and non manager positions) in one row
    Thank you
    Romano

  • Trouble with Org Chart

    Hello Visio/Sharepoint Experts
    I created an org chart on visio 2010  with only the executive team that I plan to publish on Sharepoint 2010.
    However, I need help. Take for example John Smith, he is a director and has 15 people on his team. Only John will be visible on the org chart. The rest of his team will only be visible when someone clicks on John’s name, a box with the 15 team mates appear
    next to John’s name.
    So, in short I want to create a hyperlinked box only visible when someone clicks on John’s Name.. I don’t want the box to open in a new page/window. Is it possible?
    Thank you

    Hi,
    According to your description, my understanding is that you want to hide the sub team in the ORG chart until you need to show it.
    Please try to right click the "director shape">Click Hide subordinates.
    If there is a sub team hided, it 'll show a small icon in the right bottom. Just right click shape> Show subordinates
    Regards,
    George Zhao
    TechNet Community Support

  • Org Chart in Pages

    Does anyone know how to create an employee organization chart in pages?

    Hi Mike,
    Welcome to the discussions.
    You can use the Shapes, which you can add text to, to form your org chart. All the shapes except the thin lines can be text containers. You just double-click them to get the text insertion cursor to appear. After that you can treat them pretty much as Text Boxes.
    If you need help on working with Shapes, let us know. To automatically connect a line between two shapes/text boxes, select both objects and the Insert > Connection Line. This connection line will stay connected as you move the shapes around, but I've found it to be rather limited in usefulness since you can't control where the connection will be. You can predict, but you can't control.
    Jerry

Maybe you are looking for

  • VGA-in settings for 16:9 LCD HDTV

    I have tried to wade through the info on this topic, but find myself lost, so apologies if this has already been covered. I have a Panasonic 50" LCD projection HDTV (PT-50LC13), and bought a Mac Mini to specifically use with this. I tried DVI input,

  • What is the best way to link macbookpro to harman kardon 5.1 home cinema set to be able to play music from my iTunes lib.?

    what is the best way to link macbookpro to harman kardon 5.1 home cinema set to be able to play music from my iTunes lib.?

  • Reg:Howq to set Default role on SSO Authentication

    We have a scenario where Default roles should be set to Contributor on SSO Authentication(not using LDAP). I have the below configuration SSO_DefaultRoles=contributor SSO_ModifyExtraParams=true SSO_SetAuthInfo=true SSO_IsSimpleAuth=false in oraclesso

  • #'s in Number Fields

    Some of my number fields are displaying as ##########... I know the numbers are not 'too big' - anything over 0 for these particular fields displays this way. The fields are supposed to be displayed as currency fields. If I set them to currency direc

  • IPhoto 07 library in motion 3

    Hi, My iPhoto library (v 7.0.2, iLife 08) does not show up in Motion 3. I use 2 screens, so I just open iPhoto and drag the pictures in Motion, so there is not really a problem for me to work.But should the library not be visible in motion? Frank