Find manager in workflow...

Hi,
I need to find the manager in the workflow, WHO HAS THE APPROVAL LIMIT. Manager has to have the  approval amount limit.
Thanks in advance,
Sukumar.

Sukumar,
It is sort of thing which HR person should do, like setting up of authorization limit, grp etc.
You can also use different evaluation path (or create your own) to determine this.
Talk with HR person would be beneficial.
Cheers
Jai

Similar Messages

  • Get user manager in workflow SharePoint Designer 2013 for SharePoint online list item

    Hello,
    I would like to create a workflow in SharePoint Designer 2013 for a list in a site on SharePoint online and one of the action would be to send an e-mail to the manager of the user that created an item in a list.
    How can I get the manager of the user and then use it to send an e-mail?
    Thanks!

    In SP Designer there's the following action that I use.
    Find Manager for this user (then output to variable:manager) Action
    This is for SPD 2010 not sure if it's still available in SPD 2013
    Thanks,
    KP
    KP

  • Query to find out which workflow(s) use a particular message ? wf_messages

    Hi guys
    Hoping someone can help.
    I've a list of particular notfication messages, which are stored in the WF_MESSAGES_TL and WF_MESSAGES table, and I need to find out which workflows use them.
    Can anyone tell me what table I can query to find this out ?
    There's no referential integrity which I can use to find this out, and google has turned up nothing so far.
    Any ideas ?
    Thanks a lot
    Scott

    You can use this and tweak it around:
    select p.process_item_type, p.process_name, p.activity_name, a.message
    from wf_process_activities p, wf_activities a
    where p.process_item_type=a.item_type and
    p.activity_name=a.name and
    a.end_date is null;-- means the active/current activity
    Regards,
    Alejandro

  • First Java Project - Document Management and Workflow

    We are about to embark on our first java project around document management and workflow.
    I would be interested to know how others have approached similar projects – Open Source applications or other tools/APIs.
    It would also be good to know of any issues encountered along the way.
    Thanks,
    Steve

    Hi Husein,
    I appreciate your interest in procuring a Document Management/Workflow solution for your AP department...its a very smart move toward streamling that process!
    I sent an email today to Richard Braddock about our solutions. I would be happy to discuss them with you.
    My office phone number is 215-646-8000
    -Martin

  • Finding Manager for a pernr

    Hi Everyone,
    Can anyone plz. help me how to find manager for a given PERNR?

    Re: Finding the manager
    Re: find the manager for pirticular emp
    Re: How to get this relation of Employee ID and Manager ID

  • HT204074 Can't find "manage devices" in itunes...

    I want to remove a device from itunes. Apple says:
    Removing an associated device or computer from an Apple ID
    To remove a device or computer from your Apple ID:
    Open iTunes.
    Sign in to your Apple ID by choosing Store > Sign In from the iTunes menu.
    Choose Store > View My Account from the iTunes menu.
    From the Account Information screen, click Manage Devices.
    Click the Remove button next to the device name you would like to unassociate.
    However, I am just not able to find "Manage Devices" on the account info screen - what am I missing?

    Not sure which instructions you followed so will give the following just in case. The following from Manage your auto-renewing subscriptions - Apple Support just worked for me with the minor differences of instead of the screen showing "Manage App Subscriptions" it shows a section titled "Subscriptions" in light gray and centered below that the word "Manage" in blue.
    Use your iPhone, iPad, or iPod touch to manage subscriptions
    From the Home screen, tap App Store.
    Tap Featured from the menu at the bottom.
    Scroll to the bottom of the page and tap your Apple ID. If you don't see your Apple ID, tap Sign In and enter your information. Then tap your Apple ID.
    Tap View Apple ID.
    If prompted, enter your password and tap OK.
    On the Account Settings screen, scroll down and tap Manage App Subscriptions.
    Tap the subscription you want to manage, then choose a subscription category.
    Use the options to manage your subscription. You can choose a different subscription period, or turn off Auto-Renewal.

  • How find manager's manager in hr report

    hi,
    i want to find manager's manager in hr report...Suppose there is organization A having organization unit B and C.
    In organization unit B there is Manager and Assit Manager and Some other employee.
    Now other employee report to Assit manager and Assit Manager report to Manager. And Manager report to director.
    Error :-- But i am getting all employee reporting to manager...and manager is enable to report to director..
    Pls help in the above

    hi raja, thanks for ur reply..still i have same problem ...i had used below code...kindly can u tell what goes  wrong below....
    SELECT SINGLE sobid INTO w_sobid FROM hrp1001 WHERE otype EQ 'P' AND objid EQ p_pernr AND plvar EQ '01'
    AND rsign EQ 'B' AND relat EQ '008' AND sclas EQ 'S'.
    IF sy-subrc EQ 0.
    w_objid = w_sobid.
    CLEAR w_sobid.
    *gets organisation 'O'for the position 'S'
    SELECT SINGLE sobid
    INTO w_sobid
    FROM hrp1001
    WHERE otype EQ 'S'
    AND objid EQ w_objid
    AND plvar EQ '01'
    AND rsign EQ 'A'
    AND relat EQ '003'
    AND sclas EQ 'O'.
    IF sy-subrc EQ 0.
    w_objid = w_sobid.
    CLEAR w_sobid.
    *gets Managerial Position 'S' for the organisation 'O'
    SELECT SINGLE sobid
    INTO w_sobid
    FROM hrp1001
    WHERE otype EQ 'O'
    AND objid EQ w_objid
    AND plvar EQ '01'
    AND rsign EQ 'B'
    AND relat EQ '003'
    AND sclas EQ 'S'.
    IF sy-subrc EQ 0.
    w_objid = w_sobid.
    CLEAR w_sobid.
    *gets the Personnel Number 'P' holding the Managerial Position 'S'
    SELECT SINGLE sobid
    INTO w_sobid
    FROM hrp1001
    WHERE otype EQ 'S'
    AND objid EQ w_objid
    AND plvar EQ '01'
    AND rsign EQ 'A'
    AND relat EQ '008'
    AND sclas EQ 'P'.

  • Why can't Weblogic 12c find Managed Bean by annotation,which in a jar?

    the detail:
    why can't Weblogic 12c find Managed Bean by annotation,which in a jar?

    Hi,
    I got the same problem with weblogic 12c.
    Somehow this guy got it working by using CDI and creating an empty beans.xml, it did not work for me.
    i found the tricky problem is that should put a empty but include the <beans> tag beans.xml file.
    http://www.coderanch.com/t/562233/JSF/java/WebLogic-Eclipse-Indigo-develop-JSF
    I also tried to skip managedbean and use CDI ( @named ) but then I get some jboss weld exceptions on the value attribute of some jsf components.
    I also saw this post
    Can't seem to get a trivial CDI example to work on Weblogic 12c
    I don't use OEPE very often so I'll need to kick this around a little when I get a chance.
    Just as an out there kind of thought, OEPE does use the split-directory model for deployment by default -- perhaps try adjusting it to use the exploded archive model instead, just as a test to see if it removes the error?
    Right click the server config and select Properties > WebLogic > Publishing > Publish as exploded archive
    It seems like the Virtual Application deployment model of OEPE doesn't support CDI.
    thanks
    Edited by: Edwin Biemond on Dec 28, 2011 10:07 PM
    Edited by: Edwin Biemond on Dec 28, 2011 10:25 PM

  • CO type- find manager HR : How to enhance it?

    Hi, Experts,
    I'd like to know the RFC or ABAP logic behind the standard CO type find manager,
    we want to enhance it to our own logic which based on other 'manager' defition.
    thanks and  best regards.
    Jun

    Hi,
    any idea which SPS this RFC is delivered with?
    I can see it in our ERP 2005 (IDES) system, but not in our SAP R/3 4.7x200 (w/ HR) system. In IDES I can see that it is located in SAP > BC > BC-GP > S_EUP_GP (Function Group CAF_EU_GP)
    I have been looking in the Object Lists of each individual Support Package (from the SAP Notes list in the Support Package Stack wizard in the SAP Support Portal). Unfortunately I am still coming up blank & this has taken me 6 hours so far.
    Does anybody know if/when this RFC becomes available (SPS level, or Support Package for 4.7)?
    Also does anybody know how to do a "global" Object List search for information like this?
    Many thanks for any information,
    Jim

  • Finding Manager and supervisor

    Hi all,
    I have a requirement to find out the manager and supervisor positions according to the level of positions.
    1) from the pernr i will findout position (S).
    2) if the number of reportee positions belongs to (S)  = 1 .
    the position is a supervisor...
    if the number of reportee positions  belongs to (S) >= 2 .
    the position is a manager..
    for that i have done coding in ABAP...
    1) PERNR ->A008-> get position S in wa_obj-sobid.
    then..check up to depth 3
      CALL FUNCTION 'RH_STRUC_GET'
        EXPORTING
          act_otype              = 'S'
          act_objid              = wa_obj-sobid
          act_wegid              = 'S-S'
        ACT_INT_FLAG           =
        ACT_PLVAR              = ' '
          ACT_BEGDA              = SY-DATUM
          ACT_ENDDA              = SY-DATUM
          ACT_TDEPTH             = 3
        ACT_TFLAG              = 'X'
        ACT_VFLAG              = 'X'
        AUTHORITY_CHECK        = 'X'
        TEXT_BUFFER_FILL       =
        BUFFER_MODE            =
      IMPORTING
        ACT_PLVAR              =
        TABLES
        RESULT_TAB             =
         RESULT_OBJEC           = it_hrp1001
        RESULT_STRUC           =
      EXCEPTIONS
        NO_PLVAR_FOUND         = 1
        NO_ENTRY_FOUND         = 2
        OTHERS                 = 3
    2).finding manager and supervisor.........
        loop at it_hrp1001
            into wa_hrp1001
            where otype eq 'S'.
          add 1 to l_count .
        endloop.
      ENDIF.
    ****if level > 2 then manager.
    ****if level = 1 then supervisor
    if l_count eq 1.
      IS_SUPERVISOR = 'X'.
    elseif l_count ge 3.
      IS_MANAGER = 'X'.
    endif.
    Is the ABAP coding will workout with logic and
    get desired output ????
    Regards
    Jose
    Edited by: Jijo Jose on May 22, 2008 11:50 AM

    Nope.. create JOB for this different in position title so you can create levelings...
    and in PA it usually identify the levelings of the employee

  • Find Manager of Org Unit

    Hi All,
    I would like to find the manager of an org unit. I know there are a bunch of ways to do this (FMs or table look up using the relations...). But my question is, if the manager of the org unit I am looking for does not exists, Is there a way to get the manager of the next level org unit. And, if that manager does not exists, then next level and so on.....
    Is there a FM which would give the manager in the above manner. If not, how could this be done.
    I appreciate your help in this regard.
    Thanks
    M

    Try this
    HR-ABAP issue how to find manager in PA reporting

  • How Defining Document Management in Workflow 2.6.2 StandAlone

    Some person in Metalink Oracle Workflow Forums tell me this:
    Also would recommend you to refer to Document available on http://otn.oracle.com/products/ifs/htdocs/workflow/workflow.html on how to make use of content management with Workflow
    But when i try to access to this link i cannot and IE show me this error: Sorry, this page was not found. (ErrorDocument 404).
    Some can help me how i get this documentation for setting Oracle9iFS with Oracle Workflow.
    Regards,
    Ramon Sanchez

    Hi EveryOne,
    Any person need this URL http://otn.oracle.com/products/ifs/htdocs/workflow/workflow.html only send one email to my address [email protected] and i respond with this issues.
    Regards,
    Dexter

  • Relation ship code for finding manager position..

    Hi Experts,
    How to find the relationship code for finding Manager position of France and US.
    i know that
    A012 is the relationship code for France,
    What should be the relationship code for US?
    Thanks in advance.

    Hi
    If you take tables QMEL & DRAW / DRAW & QMFE
    if u have created a document in CV01N, with the object link has notification... Then you will be able to able both these tables...
    Document will be displayed...
    Both has same relationships.... you have to maintain the notification in document management system.
    Check out the linking details in SPRO - Cross-Application Components - Document Management - Control Data - Define Document types
    - Pithan

  • Document Management distribution workflow

    I have activated the document management distribution workflow. When I start the documenent distibution the workflow is not started. When I go back to check the started of the workflow in spro it will be deactivated.
    How can I activated it permanently or is there some configuration that need tobe done?
    Points will be awarded.

    Hie Sreecharan. It is not working. The workflow is continuously being deactivated.
    I am activating it in spro, under 'Perform task-specific Customizing'. Under CA, I go to Document Management and click on Activate Event Linking.
    I expand WS20000104 and click on deactivate and it displays a green buttonthat it is activated.I then click on the properties of the event linkage button. and followed your instructions. The save button will be disabled. When I close the dialog box, on re-opening it, it would have defaulted to 'System presetting'.
    Help.

  • How to find  the existing workflows

    Hi Gurus,
    How to find  the existing workflows, and assign a  user  to a role.
    Suitably rewarded for helpful answers.
    B S B

    Hi,
    You can find existing workflow in Transaction PFTC.
    Select Task Type as Workflow Template(WS) and either do F4 on Task
    or put some description and press enter.
    For assigning a user to a role, check transaction PPOCW. (If in an Org. Unit) or through SU01.
    Regards,
    Ashish

Maybe you are looking for

  • How can I determine which Zen is for

    New here, hi all. *waves* I am interested in a Creative Zen, as I've heard nothing but great things. Is there a chart somewhere, that compares all the Zens out there, so I know I am choosing the right one for me? I know that newest isn't always best,

  • The app is no longer available

    Error?

  • Significance of Value date in Autopay configuration

    Friends, I tried understanding the importance and  significance of Value date in different configurations e.g. Assets, APP, But didn't get it. Please help me understand it with some examples. Thanks, A

  • Can BI Publisher 11.1.1.5 output native Excel 2007 format?

    I've tried auto-generating an RTF layout template from a very simple data model, but the layout can only produce old Excel format. When I set it to Excel2007, I get the following error in my BIP log: [2012-03-08T11:31:16.457-08:00] [AdminServer] [WAR

  • RMAN Incrmental backup

    Can someone explain the difference between these two codes? backup incremental level 1 tablespace users backup incremental level 1 for recover of tablespace users;