How to use AME to define Compensation Workbench Manager Hierarchy?

Hi,
I have set up the CWB to allow HR managers to allocate all the compensation using AME Hierarchy in R12. However, after running the CWB Participant Process using the manager login, there is no employee attached to this manager.
For e.g. a company has 2 compensation managers that determine all the compensation within the company including himself and upper level manager.
My question:
How to setup the CWB to use AME hierarchy to allow the 2 compensation managers to view all the employee in the worksheet?
Regards,
ShiauChin

Even i am facing the same issue.
if i use supervisor hierarchy for the plan. the worksheet is listing the plan and people.
If i use AME transaction, plan is not attaching to the worksheet. I am working with Oracle SR to find the issue.
If you find any solution for this problem please share at [email protected]
thanks in advance
Srinivas B

Similar Messages

  • How to use a user defined function in XI

    Hi Experts,
    I would like learn how to use a user defined function  in Xi during mapping . Is there any step by step on that.
    Besides during when me make communcaton channels I see the following tabs...Paramters ..Identifiers ...Module...
    The module that is given here ...where and how it is used.

    Hi,
    You can write UDFs in java in Graphical mapping to enhance your XI Graphical mapping functionality
    The steps for doing it would be:
    1. Click on Create New function Button found on Bottom left corner on your XI Mapping window.
    2. Write your java code.
    3. Run the Mapping Test as usual.
    >>The module that is given here ...where and how it is used.
    The adapters in the Adapter Framework convert XI messages to the protocols of connected external systems and the other way around. When doing so, some
    functionality might need to be added specific to a situation which is possible with the use of custom modules.
    Typical example would be validation of file content when using a File Adapter or modification of the message payload to a common content structure which is not supported by any of the standard SAP modules.
    An Adapter module is developed as an Enterprise Java Bean and is called locally by the Adapter.
    An example on modules :
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/da5675d1-0301-0010-9584-f6cb18c04805">How to develop a module for reading file name in a sender file adapter XI 3.0</a>
    Cheers,
    Chandra

  • How to use a user defined function module in IP

    Hi All,
    Can you please guide me on how to use a user created function module in IP? My requirement is to have 2 exit function modules to be used in IP to load the falt file data into a cube..
    Regards,

    Hi,
    /people/marc.bernard/blog/2007/11/25/how-to-load-a-file-into-sap-netweaver-bi-integrated-planning-part-1
    thanks to Marc Bernard
    Regards

  • How to use a user defined function in where cluase condition

    Hi,
    I have designed a query by selecting some columns in the tables and some columns are retrieved directly from table and some columns are passing to a user defined function. Now my requirement is i need to use that user defined function result in oracle where condition clause.
    Ex : select marketing_user_id,get_name(marketing_user_id),item_id,get_item_name(item_id),get_country_name(country_id),
    from
    where get_item_name(item_id) in ('x','y','z')
    and get_country_name(country_id) in ('India','America','China');
    When am i trying the query by above format i am getting the wrong resultset.
    BR,
    uma

    I am not sure why your getting the wrong results but you should seriously reconsider the approach your are taking. Using functions like this is very ineffecient and should be avoided at all cost.

  • How to run Discoverer reports from Compensation Workbench?

    Has anyone been able to successfully add a Discoverer report that can be run run from Compensation Workbench? If so can you share the steps?
    I followed the steps described in the following Oracle note, but no luck.
    Adding Discoverer Reports to the Compensation Workbench Home Page [ID 464014.1]
    Thanks
    Jaya

    Please post the details of the application release, database version and OS.
    848716 wrote:
    Has anyone been able to successfully add a Discoverer report that can be run run from Compensation Workbench? If so can you share the steps?
    I followed the steps described in the following Oracle note, but no luck.
    Adding Discoverer Reports to the Compensation Workbench Home Page [ID 464014.1]What is the error you get after following the steps in this doc?
    Thanks,
    Hussein

  • How to use global variable defined in planning area in FOX

    Hi guys
    I meet a situation that needs to use variables defined in planning area in FOX.How to code?
    My situation as follows:
    Two variables are defined in planning area,one is zcomp_code,the other is zfiscyear.
    There are two key figures in the planning area,one is sales volume,the other is delta(%).
    I want to use sales volume multiplied by delta(%) in selected zcomp_code and zfiscyear by users.
    Anyone can help?
    Thanks in advance.

    Hi Eric
    check this example
    in fox you shoud declare your data and after call your variable
    after this you could easily operate on data using the f4 for definig the right fox operators
    DATA FYEAR TYPE 0FISCYEAR.
    FYEAR = VARV(PLANYEAR).
    {0COPANETRV, FYEAR,CRA,020} =
    {0COPANETRV,FYEAR,CRA,020} *
    ({ 0CP_DELTAB,FYEAR,CRA,020} + 100 ) /100.
    {0CP_DELTAB,FYEAR,CRA,020} = 0.

  • How to use a portal defined alias for a system

    Hello,
    we have in the portal Netweaver 2004s, sp11, defined systems, which contain SAP-Routerstrings. For Everey System we have given a Systemalias.
    No we want to use the Systemalias managed by the portal use in our Java-Applivcation deployed on the portal-server.
    How to to this?
    Best regards
    Oliver Prodinger

    Oliver,
    From whatever I could understand from your question I would answer that in this way. You need to create a iView out of the application. It will ask for a System parameter. One needs to provide the system alias name into the System paramter.
    If this does not answer your query, plz elaborate your question.
    Warm regards,
    Sukanta

  • How to use a constant defined as a concat of char values in an IN clause

    Greetings,
    I defined a CONSTANT as a concatenation of values and attempted to use it in an IN clause without success ...
    CREATE OR REPLACE PACKAGE PKG_TEST AS
    Q_IDS CONSTANT VARCHAR2(25) : = '''3'''||','||'''14'''||','||'''16'''||','||'''18'''||','||'''24''';
    procedure insert_test;
    END PKG_TEST;
    CREATE OR REPLACE PACKAGE BODY PKG_TEST AS
    PROCEDURE insert_test as
    BEGIN
    insert into test1
    select *
    from test_table
    where q_id in ( Q_IDS );
    END insert_test;
    END PKG_TEST;
    I'm guessing this doesn't work because the CONSTANT is being treated as one long string as opposed to a succession of comma separated values.
    Is there a way to do this?
    Any feedback would be appreciated.
    Thank you.

    One example:
    SQL> ed
    Wrote file afiedt.buf
      1  select *
      2  from emp
      3  where ename in (
      4    with t as (select '&input_string' as txt from dual)
      5    select REGEXP_SUBSTR (txt, '[^,]+', 1, level)
      6    from t
      7    connect by level <= length(regexp_replace(txt,'[^,]*'))+1
      8*   )
    SQL> /
    Enter value for input_string: SCOTT,JAMES
    old   4:   with t as (select '&input_string' as txt from dual)
    new   4:   with t as (select 'SCOTT,JAMES' as txt from dual)
         EMPNO ENAME      JOB              MGR HIREDATE                   SAL       COMM     DEPTNO
          7788 SCOTT      ANALYST         7566 19-04-1987 00:00:00       3000                    20
          7900 JAMES      CLERK           7698 03-12-1981 00:00:00        950                    30
    SQL>

  • How to use the classpath defined in a manifest file when debugging

    Using Jdeveloper 10.1.3.3.0 (or any version)
    I'd like to be able to debug using an executable jar which specifies my classpath and main class, without having to manually add all the jars to my debug configuration. Is there a way the debugger can extract that information from the manifest?
    The set of jar files included in my classpath varies depending on which client configuration the client wants to run and we could potentially have a hundred different configurations so there isn't an easy way to manage static libraries. Currently I have to open the jar, extract the manifest and manually add the jars so I can debug. Which is really painful when the configuration can change each time I run. The manifest and jar file are created at runtime based on what client configuration the user is trying to run and there can be multiple versions of a jar file in the directory with mangled names - so I can't just include all the jars.
    Any ideas?

    Run the program from command line, this way you will see the errors, if any.
    example.: java -jar theJarfile.jar
    I was successful in creating a comm application. I placed the win32com.dll in the same directory of my application jar file and all worked.
    I also extracted the comm.jar , and jar'd my app with the extracted comm files to make one jar.
    I also had a fileWriter() to get the clients jre path and my app would write the javax.properties file to the correct place.
    It took me severel weeks and late nights to accomplish this, but it was all necessary to be able to install only my app, and not a bunch of api's that were needed.

  • How to use Abap Editor(SE38) Test Plan Management Option

    Hi,
    I am trying to use the Test Plan Management option in Abap Editor.
    I could not find any articles/forum postings about it.
    Please guide me on the same.

    hi,,
    go through the below link for help.
    http://help.sap.com/saphelp_erp2005vp/helpdata/EN/06/27185efc5211d1bcfd080009b4534c/frameset.htm
    regards,
    bhavana

  • How to use multiple databases in oracle10g enterprise manager

    i have two databaases in my system
    when i opened my enterprise manager
    its always displayed to log in the already created database
    but it does not display the just created db .
    Pls give me solution for that its urgent

    nitesh piyaranjan wrote:
    i have two databaases in my system
    when i opened my enterprise manager
    its always displayed to log in the already created database
    but it does not display the just created db .
    Pls give me solution for that its urgentWith the same thoughts on "urgent", if your issue is to have another db being used with the EM, you must have noticed in the url in your browser, a port number is shown. Like this one,
    http://localhost:1158/emHere it is 1158. For the 2nd db, there would be another port number assigned. All you have to do is to use the correct port number and you would eb able to use the 2nd db with EM. All the port numbers are in teh files, portlist.ini which will be under Oracle_home/install folder.
    HTH
    Aman....

  • How to use iPod mini USB in car - manage playing

    I am getting reacqauinted with my iPod mini and see that I can play it in my car using the USB port, but can't seem to access the controls...it just displays do not disconnect. I turned the car off before I disconnected the iPod. Will appreciate any feedback here!

    Yes I have the same question too. When I plug my fairly new160 gig ipod classic into the USB port of my new car, all the ipod screen info defaults over to the car's screen and you have to navigate what you want from the touch screen in the car. Fine no problem. But when I try to do the exact same thing using either of my old ipod minis (which otherwise work just fine with headsets) I get an error message which basically says. this is not going to work. WHy is that? ...Anyone?

  • How-to use Cisco DCNM for SAN to manage storage fabric

    I recently purchased DCNM for SAN (and LAN), have installed and licensed it. The software is up and running, and I have installed the necessary features & licenses to each of my Nexus 5596UP devices. Unfortunately, I'm not able to make any changes to the fabric from the DCNM SAN client. Am I missing some steps here? Do I need to have fiber connections in place from end points, and the SAN, in order to see/manage the fabric?
    Thanks in advance!

    Did you do a fabric discovery ? have you setup proper accounts on the N5k ?
    see
    http://www.cisco.com/c/en/us/td/docs/switches/datacenter/mds9000/sw/5_2/configuration/guides/fund/DCNM-SAN-LAN_5_2/DCNM_Fundamentals/fmaaa.html

  • How to use the structure in the EXIT_SAPMM06E_013 function module

    Hello Experts,
    Please guide me how to use the structure defined in function modules under  table tab in the driver program for smart form to fetch the data. Please post some sample code if available.
    Best Regards,
    Sandesh.Sreyamsh

    Can you please elaborate little bit more what is the actual requirement?

  • How to Use Schannel for TLS Sockets on Windows?

    I need make a c++ TLS socket server running on Windows XP, and a c# TLS socket client on Windows 7.
    The reason of using Schannel TLS is that it is FIPS 140-2 validated.
    But it is not easy to find some sample code of Schannel.
    By search, I found two c++ TLS samples, but the samples use the secur32.dll, some APIs seem are FIPS non-approved.
    codeproject SSL/TLS client/server for .NET and SSL tunnelling
    http://www.coastrd.com/c-schannel-smtp C++ SSPI Schannel TLS example
    According to 140sp1000.pdf (Microsoft Windows Vista Kernel Mode Security Support Provider Interface (ksecdd.sys) Security Policy Document), following APIs are FIPS non-approved APIs.
    InitializeSecurityContextW
    ImpersonateSecurityContext
    EncryptMessage 
    DecryptMessage
    I am quite confused about two things:
    One is that the FIPS non-approved APIs of ksecdd.sys also are also non-approved in secur32.dll?
    Another question is what's the correct way of using Schannel. Are the samples using Schannel in the correct way, must the APIs InitializeSecurityContextW/EncryptMessage be used?
    I want some sample code about how to use Schannel in native c++ and managed c#.

    I'm not sure what information you are referring to that indicates InitializeSecurityContext() and EncryptMessage() are not FIPS compliant.  InitializeSecurityContext() is required API on the client side.  EncryptMessage() is the required API to
    encrypt data.  Both APIs are important APIs in SSPI.
    In .NET, you would use the SSLStream Class, https://msdn.microsoft.com/en-us/library/system.net.security.sslstream(v=vs.110).aspx .
     MSDN has sample code for both the client and server.
    There used to be an SSPI client + server sample (WebClient & WebServer) on the Windows SDK.   I don't know if it is still there.  If you can't find them, please let me know.
    thanks
    Frank K [MSFT]
    Follow us on Twitter, www.twitter.com/WindowsSDK.
     

Maybe you are looking for