Determining second level approver for travel expense claim workflow

Hi Experts...
In Travel Expense claim workflow,we are using two level Approval.The employee has to enter his data for expense claim through ESS..Then expense claim is submitted and sent via workflow to the Travel department. Travel Dept verifies the expenses against the bill and approves the claim by selecting the next level approver and attaching the scanned copies of the bill.
I made copy from the standard workflow WS20000040.
How can i select the next level appover in first level approval step???
Is there any FM or BAPI or BADI???
Please help me ...
Thanks in Advance
Regards,
Hemalatha.

Hi Hemalatha,
I have small tricky workaround to find out the second level of approver.The Standard Rule available can reused again by passing manager's Position.i.e
After first level completed , store manager position in container variable and pass it to the same task rule so the task is sent to the manager's approver .
Message me if needed more details.
**Award Points if useful

Similar Messages

  • Offline approval for travel expenses

    Hi all,
    Is it possible for us to do offline approval for travel expenses by using outlook or mobile devices without logging on to the travel management portal? How is it done? Any help will be much appreciated.
    Thanks.

    Hi
    If Employee level sent to the next approver here you can do the offline process & again the 1st approver has to approve it with necessary things. till then your WF should be in waiting process.
    cheers
    durai

  • BUS2089  for travel expense claim. How can i link it to portal?

    Dear Expert,
    I had created a customize object from the standard BUS2089 and named it ZBUS2089 and i have a workflow that trigger based on the ZBUS2089 object created.
    My question is how do i link this object to my travel expense request. I want when the employee click on submit on the portal side, instead of triggering the standard BUS2089, i wanted to trigger my customise object ZBUS2089.
    Thanks
    Regards,
    Bryan
    Edited by: Brian Lee on Mar 25, 2008 3:23 AM

    Hi Kappy,
    The situation is hard to describe it seems.  They say a picture is worth a thousand words, so I'll show screen shots....
    Clicking on the Desktop icon does not open a finder window but rather opens a program.  The problem seems to be that the "desktop folder" in the finder is not recognized as a "folder" but rather is listed as "anything".
    Here is what the folder should be normally. (shot taken from another account on the same computer).
    Solutions tried to fix this problem:
    1.  tried to delete the Desktop icon, and to pull it off to the trash and also to move the icon somewhere else.  The icon doesn't change.
    2.  I've taken the icon off by removing it in the finder settings.  When re-checked, the problem stays the same.
    3.  I've deleted the finder.plist file and the sidebar plist file in my account.
    4.  I've repaired permissions.
    5.  I've tried to re-assign the link in the info pane - associating the icon with the "finder"
    I have three accounts on my computer.  My main account is the only one affected by this problem.
    Anyone who might have a solution, I'd love to hear your ideas!
    It looks like the "kind" needs to be changed from "anything" to "folder" but I don't know how to do that.
    Thanks for your help!
    Douglas

  • Steps required for second level approval Workflow

    Hi,
    Can any one explain me step by step procedure  of how to configure 2 level approval process in SRM.I have activated the second level approval for SC.But after  this what i have to do. Where can i set the value conditions in workflow?How system will decide for one level approval it has to go for a person "Y" and for 2nd level approval it has to go to Manager?
    kindly help me out in this
    regards
    subbramanyam

    I think you have to activate the below workflows in the system which automatically  identifies the number of levels that it should cross.
    WS14000133
    WS10000049
    WS14000134 ---> This Sub workflow determines,  is there any next approver or not?.

  • Restricting the Travel expense claims for future date

    Hi,
    We are configuring the BPs for ESS & MSS.  Currently we are on NW portal 7.0 ,SPS15 and ECC6.0 at the backend.
    Can anyone suggest us, how to restrict the users NOT to apply the Travel expense claims for the future dates (i.e.the portal system is expected to allow the users for the claims, till the current date or any past date but not any future date)  through portal.
    Currently, the system is allowing the users to apply the Travel Expense claims for the future dates also.
    Any help on this will be appreciated.
    Regards,
    Venu

    Hi Venu,
    I am not sure whether there is any configuration through which it can be achieved or not. But you can use Badi TRIP_WEB_CHECK for WebDynpro.
    Hope this will help.
    Thanks & regards
    Arun

  • Event for travel expense work flow "WS90000050"

    Hi All ,
    I am trying to configure standard travel request and travel expense application on ESS.
    I am using two standard templates WS90000040 for Create travel request
    and WS90000050 for Create Travel Expense.
    But problem is that both workflows start with same event "REQUESTCREATED" of business object "BUS2089".
    Since standard process says that once employee's travel request is approved then only he/she can apply for
    Travel expense . But in this case both wf gets started through same event "REQUESTCREATED".
    Is there any other event for create travel expense application ?
    Thanks in advance
    Abhay

    Hi All,
    The event that is triggered when travel expense is saved is CREATED.
    Regards
    Abhay

  • 2 level approval for workflow

    Hi all,
    I am supposed to make an EP workflow for 2 level approval for absences or leaves. I am using a copy of workflow WS12300111. I am able to get the single level of approval, but not the second level. When the request goes to the second approver ( which is the supervisor of first approvar), it shows the leave requests of the first approvar and when I check the workplace of the employee who applied for the leave, his leave has the status 'approved'.
    In other words, when the first supervisor or approvar approves the request, it gets approved and second approvar has no option to approve it again.  Please suggest what to do?
    In my tasks for approval, I am using the class - CL_PT_REQ_WF_ATTRIBS and the method APPROVE. Is that correct???
    Is there any other standard workflow which I can refer to?
    Thanks

    Dear Raja Sekhar,
    I create a sampel program with the following code in SE38 and put in the following code. However, it seem that it does not work and the status did not get updated.
    Do you know what is the problem?
    DATA:
    request TYPE REF TO if_pt_req_request,
    event   TYPE tim_req_xfer_event VALUE cl_pt_req_const=>C_REQTRANS_APPROVE,
    req_id  TYPE PTREQ_HEADER-REQUEST_ID value '48561480F033007EE1008000C0A8D282',
    status  type TIM_REQ_STATUS.
    CALL FUNCTION 'ENQUEUE_EPTREQ'
      EXPORTING
        mode_ptreq_header = 'E'
        request_id        = req_id
      EXCEPTIONS
        foreign_lock      = 1
        system_failure    = 2
        OTHERS            = 3.
    CALL METHOD ca_pt_req_header=>agent->get_request
      EXPORTING
        im_request_id = req_id
      IMPORTING
        ex_request    = request.
    CALL METHOD request->initiate_state_transition
      EXPORTING
        im_transfer_event    = event
       im_event      = event
       IM_RET_VALUE  = 0
      IMPORTING
        ex_new_status = status.
    CALL FUNCTION 'DEQUEUE_EPTREQ'
      EXPORTING
        request_id = req_id.
    Thanks
    Regards,
    Bryan

  • N level-Approval for contract workflow (WS14000148) in SRM

    Hi SDN'rs
                  I want to activate N level-Approval for contract workflow (WS14000148) in SRM  
    When I am creating the contract in SRM I can see the approvers in the approval preview.
    But when I release the contract and look at the approval privew there are no approvers
    and the status of the contract is released.
    We are on SRM Server 5.5 and SP 07.
    Here what I did
    1. I implemented the BADI 'BBP_WFL_APPROV_BADI' using the sample implementation and populated the approvers.
    2. I activated events SAVED,CHANGEVERSIONSAVED for WS14000148 in OOCU transaction.
    3. I see event linkages for WS14000148 for both events SAVED,CHANGEVERSIONSAVED in SWE2 transaction.
    4. I assigned role SAP_EC_BBP_PURCHASER to for subworkflow N step for contract WS14000147.
        ( User who is creating contract has this role)
    5. Consistency check for WS14000148 is green and WS14000147 is yellow in SWUD
    6. Event simulation for BUS2000113 and events SAVED,CHANGEVERSIONSAVED shows WS14000148 successfully started.
    I see dump in ST22 with errors TSV_TNEW_PAGE_ALLOC_FAILED and SYSTEM_NO_SHM_MEMORY with WF-BATCH is this any thing to do with that?
    If any one know what are the steps I am missing please let me know.
    Thanks
    A S

    Hi
    Please refer to these OSS notes which might help.
    <u>Refer to following OSS Notes -></u>
    Note 735026 - Memory problems at BBP_GETLIST_INDEX_FILL
    Note 932836 - BBP_GETLIST_INDEX_FILL: Activation not possible
    879528 WS14000148: Send mail to initiator incorrect
    901200 WS14000148 dia wrk item despite NO_FURTHER_APPROVAL_NEEDED=X
    879873 BUS2000113: The Object_ID attribute may be empty
    903015 BAdI Workflows: Events and parallel steps
    901068 BAdI Workflows: Enhancement of Note 896556
    769458 Dynamic workflows: No adjustment after document change
    972757 Occurence of the SYSTEM_NO_SHM_MEMORY runtime error
    741864 FinBasis: Termination TSV_TNEW_PAGE_ALLOC_FAILED
    864473 Deactivating the shared memory when searching by prefix
    928642 Container factory: Shared memory dump update
    Refer to these links.
    <b>http://help.sap.com/saphelp_srm50/helpdata/en/2c/e68d406b305537e10000000a1550b0/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/26/0f8b41ed891609e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/6b/eca441eea7ef0be10000000a1550b0/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/f7/a6a3415e34b05fe10000000a1550b0/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/6b/eca441eea7ef0be10000000a1550b0/frameset.htm
    </b>
    <u>Also raise an OSS message with SAP as well.</u>
    Regards
    - Atul

  • HR-BW report for Travel Expense report(Urgent, max. points awarded)

    Hi All,
    Could anyone please tell how to write a spec to create a BW report for Travel Expense report. or how can we know from which tables can the data be extracted for Personal number, name of the EE, Trip number, Trip duration, Trip begin date, Trip end date, trip destination,  reason for the trip, total cost, reimbursement amount, paid by company, additional amount, total miles/Km,  cost center, CoAr, Status of the trip
    Its very urgent. Please Help!!!!
    Regards,
    Latha

    Hi Latha,
        PR05 is the Tcode for Travel expense Manager where the data will be posted  and The table is PTRV_HEAD   where the data get stored .
    Regards,
    Narendra Kumar Katuri.

  • Two bank accounts for travel expenses

    Dear all.
    We would like to have two bank accounts for the travel expenses for one employee.
    For example:
    $ 500.00 of the Travel Expenses should go to bank account 12345
    The remaining amount of  the Travel Expenses should go to bank account 67890
    I can enter one bank account in Infotype 0009 for Travel expenses, but it seems the field u201CStandard valueu201D doesnu2019t work for subtype u201CTravel Expensesu201D.
    SAP creates only one payment with transaction PRDX.
    Does someone know if itu2019s possible to create to payments for one employee?
    Thanks.
    Edited by: Fluff on Feb 14, 2012 10:22 AM

    It is the case that PRDX is designed to take the valid IT009 account defined at system date  - see here:
    The bank data is read with the TRMAC Makro rp-provide-from-last:
            rp_provide_from_last p0009 '2   ' sy-datum sy-datum.
            IF pnp-sw-found NE '1'.
              rp_provide_from_last p0009 '0   ' sy-datum sy-datum.
    PRDX is designed to handle only one account (note  90320 gives more info)

  • Travel management-- Control Parameters for Travel Expenses-- Define global

    We have setup provision variants for:
    India, UAE, Africa (since travel expenses in these countries need to be settled in the local currency).
    For each of the above variants, we have done the following settings in IMG node:
    Travel management-->Control Parameters for Travel Expenses --> Define global setting
    I have selected the respective country for the "Country grouping" field. i.e. for India Variant, it is set to India and similarly for UAE etc.
    Is this correct? What is the impact if in India variant this field ("Country grouping) is set to UAE?

    hi
    the settings which you set is right.
    you will have inconsistency between the settings you made in the other areas.

  • Is it possible Line level approval for purchasing requisition in AME?

    hi
    is it possible Line level approval for purchasing requisition  in AME?
    so that send each line to separate approver ?

    If using AME, it should be possible. Check AME Guide for POs for details. Let me know if you run into issues.
    Thanks
    Shree

  • How to Implement N-Level Approval for Bid,Live Auction,PO,Contract ?

    Hi Experts,
                  I am new to SRM 5.0. My requirement is how to implement N-Level Approval for Bid, Auction, PO and Contract? Which steps should I follow for        N-Level Approval? Can any one send me sample code and name of BADI where I have to implement the code.
    Abhijeet Panse

    Hi
    Please check for <b>BBP_WFL_APPROV_BADI</b> using SE18 transaction for relevant Code as well and standard SAP documentation.
    Related sample code and other useful pointers ->
    WS14500015 is not working for Multilevel approval
    Re: SRM / Shipping cart
    Re: N Step Approval BADI - BBP_WFL_APPROV_BADI
    Re: N-step BADI workflow
    http://help.sap.com/saphelp_srm50/helpdata/en/8b/4fa9585db211d2b404006094b92d37/content.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/2c/e68d406b305537e10000000a1550b0/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/17/40a86c773d6c41801d78af1a34b90f/frameset.htm
    Multiple Implementation For BBP_WFL_APPROV_BADI
    Re: Help needed on N-Step Approval WFL for SC
    Re: N-Step 14000109 workflow - Unable to identify Approvers
    Do let me know.
    Regards
    - Atul

  • Second level approval of SC before first level completed?

    Hi all!
    This one may be quite obvious, but my customer has requested that a second level approver should recieve a workitem as soon as that same item has been handled in the initial step.
    Is it possible to bypass the sequential process (as hinted by the Java applet), using branches?
    And, of course, does the approval_branch parameter have anything to do with it? I've tried, to no avail.
    Thanks, again!
    Best regards,
    Mike

    Hello,
    Parallel approval is not in the SRM workflow scope.
    What can be done is item level approval where an approver works on some items and a second one on the others at the same time. But a same item cannot be sent twice in 2 different task (In that case, the "branch" parameter will be handle by the system. But you cannot influence it.)
    Some people think that parallel approval could reduce the time of the approval process. But the best way to reduce it is to reduce the number of approvers
    Rgds,
    Pierre

  • What is the standard workflow for Travel expense ?

    Hi guys
    i am looking for the standard workflow for travel expense. I did a search on the forum but count find a answer. I also searched SWDM - Workflow browser. I coudnt find one. Can anybody let me know which is the standard workflow for Travel Expense?

    Hi
    Check out these links.
    [http://help.sap.com/saphelp_47x200/helpdata/en/04/928ba746f311d189470000e829fbbd/frameset.htm]
    [http://help.sap.com/saphelp_47x200/helpdata/en/19/8460e002474d4a866da32a8d9c6c73/frameset.htm]
    [http://help.sap.com/saphelp_47x200/helpdata/en/cb/c11038b42b7858e10000009b38f8cf/frameset.htm]
    Regards
    viijay

Maybe you are looking for

  • Getting "Cannot open document: error during import (DX0005" on DESKI report

    These reports use free-hand SQL and universe-based data providers. I'm thinking that a permission isn't set properly that is interfering w/ the import of the universe at execution time - any ideas where that might be? We use BObj XIr2 SP4 Edited by:

  • How do I make a template with dates?

    Hey, I'm just starting college and I'm using my laptop to take all of my notes. I was wondering if it's possible to make a template that automatically puts the date on the page somewhere. Or is there some kind of short cut to paste the date? Thanks f

  • How to upload vi in a PDA without ActiveSync

    HI, this is my first post here. I have some experience with labview. I have successfully uploaded working program to my mobile phone (WM6,1). The problem is that I want to run the same program on another device which I have (wince) but this device is

  • HT2589 how to get through this error ((please contact itunes support to complete this transaction)) , ??

    hello everyone i'm trying to use my apple ID to Access itunes but: after i finish this step: ((5- Click Continue when you're done entering ... )) i get this message: ((please contact itunes support to complete this transaction)) , ?? Any solution ? t

  • Can't get Encore to produce a valid DVD image

    I've got a project with about 6 menus and 7 timelines - one ~2 hour feature, and several 1-2 minute 'extras'. Menus have simple 30 second looping background videos. Nothing really special... I've set all my videos to transcode to a custom preset I cr