Tal Mngt Area of Responsibility - use of different object from OrgUnit

Hi all,
One of my clients has a requirement to use a different object from an OrgUnit as the Area of Responsibility (e.g. S A 741 O > S A 741 01 where 01 is a new object). Basically, 01 is an OrgArea object that is linked to one or more OrgUnits and some positions.
My initial thought is that is such an integral part of EhP4 Talent Management security that it would not be possible. Therefore, if anybody knows differently please tell!
Many thanks in advance,
Luke

>
Luke Marson wrote:
> Hi all,
>
> One of my clients has a requirement to use a different object from an OrgUnit as the Area of Responsibility (e.g. S A 741 O > S A 741 01 where 01 is a new object). Basically, 01 is an OrgArea object that is linked to one or more OrgUnits and some positions.
>
> My initial thought is that is such an integral part of EhP4 Talent Management security that it would not be possible. Therefore, if anybody knows differently please tell!
>
> Many thanks in advance,
>
> Luke
Hi Luke, from the OM perspective, relationship perspective all of it could be done.  What would be interesting is that I highly doubt the SAP standard TREX index will work correctly. 
HRTMC Relation S O Area of Responsibility
AND
HRTMC Structural authority
cool thing to test out though, let us know,.,

Similar Messages

  • Are Apple still using two different SSD drives?

    Hi Everyone
    I am in the process of sorting out an order for a 13" MacBook Air but I have just found out that it would appear that Apple are using two different suppliers for their SSD drives. Alot of the posts about this subject seems to be from a few months a go, and I wondered if anyone has heard anymore info if this is still the case, or if Apple has now switched to one supplier?
    Thanks for any help you can offer

    yes as of three weeks ago, i checked some of the New release diplayed MBA 11 & 13 and they had the old ones in them. TS

  • What are the commonly used conversion routines apart from alpha conversion?

    hi all,
    Can any one let me know the commonly used conversion routines apart from alpha conversion routines ?
    thanxs ina dvance
    hari

    Hari
    There are lot of conversion routines, like
    BUCAT Conversion Routine. eg. The BUCAT conversion routine converts the internal presentation of the budget type
    (0BUD_CAT) into the external presentation (0BUD_CAT_EX), using the active entries in the
    master data table for the budget type InfoObject (0BUD_CAT).
    see the link below for all the routines.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b9119290-0201-0010-69af-96fe3bf00243
    assign points if helpful
    Kalyan

  • How can I transfer my old music files to my new iPod using a different computer from that used on the old iPod?

    I got a brand new iPod and wanted to put the music files on my old iPod to the new one. In addition to this I would like to know how to sync my new iPod to a different computer from that of the old one. Is it possible for me to accomplish all this with music rescue?

    Put everything on one computer and sync to that computer.

  • Using a different offset from 1 in the function LEAD does not seem to work.

    Hi,
    I have the following rows in a table:
    SQL> select job_id from jw_exception_accesses
    2 where rownum < 11
    3 order by job_id;
    JOB_ID
    442484177
    443178279
    443178279
    443357232
    443443617
    443536258
    1. When I try and use the offset of 2 with the LEAD function, it brings back nothing.
    SQL> select job_id,lead(job_id,2) over (order by job_id) as next_job
    2 from jw_exception_accesses
    3 order by job_id;
    JOB_ID NEXT_JOB
    442484177
    2. When I try and use the offset of 1 with the LEAD function, with rownum, it
    brings back nothing:
    SQL> select job_id,lead(job_id,1) over (order by job_id) as next_job
    2 from jw_exception_accesses
    3 where rownum < 2;
    JOB_ID NEXT_JOB
    443618290
    3. When I try and use the LEAD function with a particular row as the current row,
    it brings back nothing:
    SQL> select job_id,lead(job_id,2) over (order by job_id) as next_job
    2 from jw_exception_accesses
    3 where job_id = 421624348;
    JOB_ID NEXT_JOB
    421624348
    4. When I try and use the MIN function, to just get one row back, it brings
    nothing back.
    SQL> select min(job_id),lead(min(job_id),1) over (order by min(job_id)) as next_job
    2 from jw_exception_accesses;
    MIN(JOB_ID) NEXT_JOB
    421624348
    OR
    SQL> select min(job_id),lead(job_id,1) over (order by job_id) as next_job
    2 from jw_exception_accesses
    3 where rownum < 2
    4 group by job_id;
    MIN(JOB_ID) NEXT_JOB
    443618290
    And yet manuals say you can use a particular row as the launching row.
    Any ideas anyone?
    Thanks very much for any help.
    - J

    Hi,
    user1636556 wrote:
    ... 1. When I try and use the offset of 2 with the LEAD function, it brings back nothing.
    SQL> select job_id,lead(job_id,2) over (order by job_id) as next_job
    2 from jw_exception_accesses
    3 order by job_id;
    JOB_ID NEXT_JOB
    442484177
    MIN(JOB_ID) NEXT_JOB
    443618290It works fine for me:
    SELECT       ename
    ,       LEAD (ename, 2) OVER (ORDER BY ename)     AS lead_2
    FROM        scott.emp
    ORDER BY  ename
    ;Ouptut:
    ENAME      LEAD_2
    ADAMS      BLAKE
    ALLEN      CLARK
    BLAKE      FORD
    CLARK      JAMES
    FORD       JONES
    JAMES      KING
    JONES      MARTIN
    KING       MILLER
    MARTIN     SCOTT
    MILLER     SMITH
    SCOTT      TURNER
    SMITH      WARD
    TURNER
    WARDNotice that LEAD does return NULL near the ned of the result set, when there are not 2 later rows.
    Post a complete test script that people can run to re-create your problem. Include CREATE TABLE and INSERT statements for your tables (unless you're using commonly available tables, like those in the scott or hr schemas).
    Post the results you want to get from that data.
    2. When I try and use the offset of 1 with the LEAD function, with rownum, it
    brings back nothing:
    SQL> select job_id,lead(job_id,1) over (order by job_id) as next_job
    2 from jw_exception_accesses
    3 where rownum < 2;
    JOB_ID NEXT_JOB
    443618290
    3. When I try and use the LEAD function with a particular row as the current row,
    it brings back nothing:
    SQL> select job_id,lead(job_id,2) over (order by job_id) as next_job
    2 from jw_exception_accesses
    3 where job_id = 421624348;
    JOB_ID NEXT_JOB
    421624348
    4. When I try and use the MIN function, to just get one row back, it brings
    nothing back.
    SQL> select min(job_id),lead(min(job_id),1) over (order by min(job_id)) as next_job
    2 from jw_exception_accesses;
    MIN(JOB_ID) NEXT_JOB
    421624348
    OR
    SQL> select min(job_id),lead(job_id,1) over (order by job_id) as next_job
    2 from jw_exception_accesses
    3 where rownum < 2
    4 group by job_id;Analytic functions are computed after the WHERE clause is applied. If the WHERE clause narrows the result set down to n rows, then LEAD (x, n) will always return NULL.
    Analytic functions are computed after the GROUP BY clause, too, so you can use analytic functions in a GROUP BY query, but only using expressions that would be legal in the SELECT clause (aggregates, the GROUP BY columns, and constants).

  • How can I use a different computer from the one on which the initial setup was run for my iphone 3gs?

    I would like to use my new MacBook to manage the information on my iphone.
    Attempts to use any other computer other than the original one used in the initial setup generates a message that warns me that everything on the iphone will be erased? How can I back up the information and switch to the MacBook?

    Copy your entire iTunes folder to your new computer (see http://support.apple.com/kb/HT4527).  Then carefully follow the steps in wjosten's post here: https://discussions.apple.com/message/13356770#13356770.

  • Areas of responsibility

    Hi,
    I figured out how to limit the area of responsibility using the "Other" option within the Succession Planning Manager application for My Reports, but I was unable to use the same option within the Succession Planning or Org Chart applications.  When I chose "other" in these applications and submit/save/publish, the system automatically sets the option back to "user" which actually does not work either as it is unable to retrieve an org chart root with this option.  The only option I could get to work for these two applications are by setting a hard coded org chart root.  Are there any other ways of limiting the area of responsibility within the Org Chart and Succession Planning applications?  Or are these applications really meant for an audience that would have entire Org access?
    thanks.
    JB

    Hi Jamie,
    The Manager app checks that your user is a manager (012) of an OrgUnit and then depending on the IMG setting for Manager reports it will either look for 002 or the 742 relationship. 742 is not actually maintained, it is a derived relationship for indirect reports (if you are 012 you are chief and your indirect reports are the other positions in the orgunit you are 012 to).
    I would try the following SAP notes to ensure there are no bugs in the SAP system:
    1328347
    1512748
    In terms of app configuration no root orgunits/positions are required to be entered into the My Reports hierarchies, only into the Organization Structure and Position Hierarchy orgcharts located in the Employee and Position modules.
    I hope that helps!
    Best regards,
    Luke

  • Using two different datasource driver into a transaction

    Hi all,
    i have two database : one under Informix and another under Oracle.
    Well, well, i have declared two datasources in my apllicationserver ( Sun ONE 7).
    I have to use a session EJB to write into the two databases some data and i have to open an UserTransaction to deal with it.
    The flow is :
    - open the UserTransaction
    - Get the connection from the first datasource
    - launch the INSERT query in Informix
    - Get the connection from the second datasource
    - launch the INSERT query in Oracle
    My doubt is : Will the transaction work fine even if i have to use two different connection from two different datasources ?
    Using only one database the transaction work fine.
    Cheers.
    Stefano

    Hi,
    This will work correctly if you use XA drivers (XADataSource instances).
    You can check the vendor docs to see what exact classes you need to deploy for each database.
    Beware of the pitfall: if you don't use XA drivers then commit might very well appear to work, but rollback won't.
    Also, don't forget to close the connections.
    Hope that helps,
    Guy
    Atomikos TransactionsJTA - visit our new JTA forum at http://www.atomikos-support.com

  • 2 TopLink Java Object from Table to be used in single selectOneChoice

    Hello everyone, can I ask for help on how to solve my problem....
    Here's my scenario, I have 2 tables namely tblCollege and tblCourse, they are related through tblCourse.CollegeCode = tblCollege.Code.
    I use the jdeveloper wizard using TopLink -> Java Object from Table to add these table to my project. I created an EJB Data Control so that I can use them to my Userinterface using ADF Faces.
    What I really want to do is that I need to have selectOneChoice component displaying:
    tblCollege.Name + tblCourse.Name, and it should have a value of tblCollege.Code + tblCourse.Code,
    so for example in my
    tblCollege:
    Code---------Name
    1---------------Science
    2---------------Music
    tblCourse
    Code-------Name-----------CollegeCode
    1-------------Biology----------1
    2-------------Computer-------1
    3-------------Guitar------------2
    what I want in my selectOneChoice is like this:
    value----------display
    1-1--------------Science-Biology
    1-2--------------Science-Computer
    2-3--------------Music-Guitar
    I'm a little stuck on how I'm going to that. Thanks.

    Bawasi,
    I see a couple of angles of attack, but this really depends on the technologies involved. If you are using ADF Bindings in combination with ADF Faces then you need to shape the data at the entity level. If ADF Bindings are no the in equation, you can take a less aggressive approach and shape the data in a managed bean. What is not clear to me is the end-to-end use-case. I see the read-only (i.e. how to get data to the drop box), but I am
    not certain what attribute on an entity you are attempting to set. Are you trying to set the course for the current user or for a master schedule? Finally, notice that the final shape of your data set shows a unique combinations, you could increase the performance of your use-case and ease of development simply by denormalizing your schema.
    --RiC                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Use of Different Fiscal Year Variant-Statistical Depreciation Area Postings

    An existing Company Code in SAP is going to have Fixed Assets implemented.  This Company Code is setup just like the others in our SAP instance: Same Chart of Accounts, Same Fiscal Year Variant, Fixed Asset procedures, etc.  For purposes of this question our company's Fiscal Year is from August 1st to July 31st.  In addition, this Company Code will post Fixed Assets just like the other SAP enabled Company Codes into Book Depreciation Area 01.  The company I work with is on ECC 6 but we use the Classic Ledger for Financials, and the Special Ledger is posted to but not really utilized.
    For the Country Specific/Tax Reporting purposes within Fixed Asset Accounting we have created a Statistical Depreciation Area 03 (I will call it Tax) with its own Life and Depreciation Key assignments with a setting of 0 in OADB-No Posting in GL for this Fixed Asset go-live, so I think we are set there.  The tricky part comes in the reporting.  The country in question requires information to be generated on a Calendar Year basis, which is obviously different than the Fiscal Year outlined above.  To my knowledge we would have to assign Tax Depreciation Area 03 to the Calendar Fiscal Year Variant: Financial Accounting>>Asset Accounting>>Valuation>>Fiscal Year>>Fiscal Year Variants>>Specify Other Versions on Depreciation Area Level. 
    The other piece of this is to get the Fixed Asset Reporting for Tax Depreciation Area 03 to work on a Calendar Year basis for the Company Code in question.  When I did some research I stumbled upon the link below.  In summary it says that you have to manipulate the standard Fixed Assets reports in Excel for Asset Acquisitions and Depreciation, and setup a new Retirement routine/transaction for posting into the Special Depreciation Area.
    http://help.sap.com/saphelp_46c/helpdata/en/05/bc0bf3d8f811d1953e0000e82debf7/content.htm
    My questions are:
    1) Besides assigning a different Fiscal Year Variant for Tax Depreciation Area 03, is there anything else I need to worry about on the setup end?
    2) Is the article I posted accurate when it comes to how the reporting works and the need for setting up a Calendar Year specific Asset Retirement Routine?  If so, what are the configuration steps for setting up a Calendar Year specific Asset Retirement Routine?
    3) Is there anything else that I need to consider for enabling Fixed Assets at an existing Company Code with different Reporting requirements for Book/Tax purposes?
    Thanks in advance for all responses.  I am willing to answer any other questions on this subject if needed.
    Roman

    Hello Rio.  In our scenario, we still had to load assets in the legal entity with this issue.  When we loaded the fixed asset data into SAP we did with data accurate as of December 31, 2011; which for book purposes is 5 months into our company's fiscal year, and for tax purposes is the end of the 2011 calendar year.  The calendarized reporting for the tax depreciation will need to be pieced together manually using the SAP recommended methodology of combining report values, which I have pasted below.
    Since this is the only SAP-enabled entity that has this scenario right now we are in wait and see mode to see if this sufficient.  In the end the SAP path for Dual Calendar was too much of a risk.
    I hope this helps.
    Roman
    Asset Acquisitions 
    Run the acquisitions list. Report date: 7/31/2012. Posting Date: 1/1/2012 to 7/31/2012. Export the report to MS Excel.
    Run the acquisitions list. Report date: 7/31/2013. Posting Date: 8/1/2012 to 12/31/2012. Export the report to MS Excel.
    Add the values of both reports together, using MS Excel.
    Asset Retirements
    Run the retirements list. Report date: 7/31/2012. Posting Date: 1/1/2012 to 7/31/2012. Export the report to MS Excel.
    Run the retirements list. Report date: 7/31/2013. Posting Date: 8/1/2012 to 12/31/2012. Export the report to MS Excel.
    Add the values of both reports together, using MS Excel.
    Depreciation
    Run the depreciation list. Report date: 7/31/2012. Export the report to MS Excel.
    Run the depreciation list. Report date: 12/31/2011. Export the report to MS Excel.
    Run the depreciation list. Report date: 12/31/2012. Export the report to MS Excel.
    Using MS Excel functions, subtract the second report from the first, and then add the third report (I - II + III).

  • My itunes account keeps giving me this Error message. "You are signed in with a different Apple ID than previously used with podcasts. I only have one Apple ID. What do I do?

    My itunes account keeps giving me this Error message. "You are signed in with a different Apple ID than previously used with podcasts. Do you want to sync these podcasts subscriptions and stations with "gajppl""  gajppl is my only Apple ID. What do I do?

    Please sign out of the iTunes Store by selecting
    Store ▹ Sign Out
    from the iTunes menu bar. Then sign back in.

  • What are the entities that can be re-used in different servers, SI App, SI instance? And how?

    Greetings,
    What are the entities that can be re-used in different servers, SI App, SI instance? And how?
    e.g. can I use a deployed IQStreamable@app1  into app2?
    can I use a deployed observable/app1/siInstance1/Server1 into another query/app3/siInstance3/server2?
    On the presentation titled "04 – Installing, Deploying and Maintaining the SQL Server 2008 R2 StreamInsight Runtime Engine" with file name SQL10R2UPD05-DECK-04.pptx on ecn.channel9.msdn.com/o9/learn/SQL2008R2TrainingKit/Presentations/SQL10R2UPD05-DECK-04/SQL10R2UPD05-DECK-04.pptx
    It is mentioned one of the deployment option is "Deployment: Standalone Server"
    and it mention the following:
    "Use this option for the following scenarios:
    - Metadata objects need to be shared between applications
      - Event Types
      - Adapter Types
      - Query Templates
    - A data source registered with the server provides an event stream for another existing application"
    Could you please provide good example that explain the above statement?
    Cheers, Muhammad

    First, that statement - and those materials - refer to the "legacy" StreamInsight query/adapter model. They do not refer to how things work with the Reactive model introduced in version 2.1. Specifically, it talks about Dynamic Query Composition (DQC).
    You cannot use a deployed Observable in another instance of StreamInsight. You may be able to use them across applications in the same instance - off the top of my head, I'm not sure. I'm getting ready to get on a plane but will take a look at it later.
    Typically, however, applications act as containers (comparable to .NET AppDomains) so I don't think that you'd be able to do this easily. That said, the code and assemblies
    can be reused across multiple instances/applications. You would have separate instances of the classes involved but you would be able to reuse the query logic. That's a common use case.
    Can you be more specific about your use case and what you are trying to accomplish here? It's possible that there are alternative ways to do what you are trying to do.
    DevBiker (aka J Sawyer)
    Microsoft MVP - Sql Server (StreamInsight)
    If I answered your question, please mark as answer.
    If my post was helpful, please mark as helpful.

  • Why are my exported files not going to me email?  I have used 3 different ones.

    Why are my exported files not going to my email (receipts &amp; business card)?  I have used 3 different ones...2 yahoo and 1 hotmail.  I have checked spam box also.

    For the Receipts app I chose to export the info as a PDF file..an email was requested..I entered info and clicked send.  For the Business Card app I chose Send, not Print..an email was requested..I entered info and clicked send.  I haven't received anything, not even in my spam folder.

  • Trying to use 2 different Dimension tables and make a hierarchy on some columns which are split into these dimensions .. how do I do that

    Trying to use 2 different Dimension tables and make a hierarchy on some columns which are split into these dimensions .. how do I do that

    If you need to make a hierarchy in an Attribute view you need to have all relevant fields/columns in the same Dimension table..

  • HT4275 Can I use a different batteries than the apple ones 1900 mAh, like 2500 mAh which are the usually sold in stores?

    Can I use a different batteries than the apple ones 1900 mAh, like 2500 mAh which are usually sold at any store?

    Yes.  They should work fine.

Maybe you are looking for

  • SAP Netweaver ABAP Trial - Running but Dialog Queue standstill

    Dear all, since today morning I am having troubles with the SAP Netweaver ABAP Trial version which has run now for over 6 months without any issues. The issues appeared suddenly and I didn't change anything to configuration / network. I am going thro

  • Urgent : Get OS login user in the report

    FACTS D.B 9i AS 10g Report 10g PROBLEM I implement a report where it generate a PDF output contain private employee Details and send it to his email But I want to run this report in our internal web site, Where user login by his ID to the network and

  • Songs stuck in the Cloud.

    Bought 3 songs in iTunes. They are now in the cloud. When trying to download them to the playlist on the Mac, getting the information that I have no permission to do so. They are shown in the Songs playlist with a little cloud behind the title. And i

  • Set lookup value from another item

    Hi! I add to my list in SP 2013 new column like type Lookup field and select item from another document library and display field select "Title". How i can set this filed value for new item from document library item?

  • How to update posting date in WINVE idocs

    Hi Expert, Is there any function module OR BAPI available to update posting date in physical inventory documnet (WINVE03) idocs. Regards Rajesh