Travel & Expense - Expense Upload?

Hi all,
Is there not a way in the system to upload travel expenses in mass?  A customer needs all employees to submit their expense sheets via excel to a single manager...the manager needs to then aggregate them in a single excel file and upload the travel expenses...
Can this be done?... & if not, is there a workaround?
The only options we currently see are (1) buying hundreds more licenses for all the employees who need to submit travel expenses (which the customer is unwilling to do) & (2) creating a supplier for every single employee and doing a supplier invoice upload for all the expenses (very tedious & even then we can't associate the supplier invoices to the employees correctly)...
thank you for any solutions/ideas...

Hi Ben,
first of all: Unfortunately there ist no standard functionality to upload expense reports in mass.
But the current customer process with a single point of uploading excel files sounds to me like a organisational problem for which I would recommend to do it like in ByDesign standard scenario. That means let employee creating their expense reports in ByDesign directly, only in this case you can use standard workflows. Yes that means more licences but only Self-Service licences and for me it sounds like a more efficient way as the current. This is my opinion and the answer I give our customers if they ask.
The other standard way is the central record of expense reports in Travel and Expenses Work Center -> "Expense Report On Behalf" but I think you already know that this is a lot of work.
Your workaround with supplier invoices could work but in this case you have to definitely talk with an auditor before because for every booking you need an receipt and in this case the receipt must be an invoice from employee. You also have to pay attention to the fact that this supplier upload sheet (standard functionality) only allows, i think it was 30 line items per invoice but you could also develop an own upload function, web service for that is available.
Another solution can be to check SDK possibilities, I don`t know exactly the BO for expense reports but it coud be possible to provide a web service for it.
Best Regards,
Andreas

Similar Messages

  • FI posting on basis of travel expenses

    Hi,
    We have an external system where relevant employees can enter their travel expenses. What we need now is to upload these data into SAP and most importantly, we need to generate the FI postings (2) for each of these travel expense lines from the external system (flat file).
    Example:
    Date     Employee No       Text / Purpose                        Amount
    xx.xx.xx           1234        Hotel bill                                   999.99
    We only have this single line per travel expense. Employees are treated as vendors in SAP.
    Are there any standard BAPI' or function modules that can be used to generate the related FI postings at upload ?

    try BDC recording, but i am sure there is a bapi.
    also try BAPI_ACC_DUCUMENT_POST.

  • Adobe Interactive Forms - for Travel Expense Booking

    Hi:
    We are implementing Adobe Interactive Forms for Travel Expense Booking integrated with Portal (where user would download the form from portal locally to work offline and then upload it later when connected).
    For the form to function properly, our consultants has asked to make following changes in the Adobe Reader settings on user machine:
    1. Under Edit -> Preferences -> Internet -> Check "Display PDF in browser"
    2. Under Edit -> Preferences -> JavaScript -> Check "Enable Acrobat JavaScript"
    3. Under Edit -> Prefenences -> Security (enhanced) -> Uncheck "Enable Enhanced Security"
    All the above three changes are opposite to our current settings. And our IT group is seeing a major secutity threat to company network on making the above changes.
    I wanted to check how other companies with Adobe implementation are handling the above changes? Is there any work around to these changes?
    Any ideas?
    Thanks,
    Rahul

    you have to get really creative when trying to dynamically control the form without javascript / formcalc.
    One of my little secrets (you owe me big points here) is that I prepare my output in a series of tables when possible.
    For instance, in SAP i'll fill an internal table with
    Customer | Sales Order Number
    12345      |  80002038
    Date         | 09/15/2011
    Special Instructions | Deliver around back
    something like this... then I drop this table where I need it.  However, if there are no special instructions, I simply do not fill that info out in my internal table. This has the effect of "hiding" the field.

  • Travel Expense Form attachment in decision workitem

    Hi all,
    I have converted travel expense report to pdf file format. I used the following logic to attach the pdf file to attachment object container in the workflow
    When i run the workflow attachment is there in decision workitem when i open that it is giving error that 'There was an error opening this document. The file is damaged and colud not be repaired'. Please help me
    call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
    exporting
    src_spoolid = mi_rqident
    no_dialog = space
    dst_device = mstr_print_parms-pdest
    importing
    pdf_bytecount = mi_bytecount
    tables
    pdf = mtab_pdf
    exceptions
    err_no_abap_spooljob = 1
    err_no_spooljob = 2
    err_no_permission = 3
    err_conv_not_possible = 4
    err_bad_destdevice = 5
    user_cancelled = 6
    err_spoolerror = 7
    err_temseerror = 8
    err_btcjob_open_failed = 9
    err_btcjob_submit_failed = 10
    err_btcjob_close_failed = 11
    others = 12.
    DATA: office_object TYPE swc_object.
    DATA: BEGIN OF SOFM_KEY,
             FolderType LIKE SOFM-FOLTP,
             FolderYear LIKE SOFM-FOLYR,
             FolderNumber LIKE SOFM-FOLNO,
             Type LIKE SOFM-DOCTP,
             Year LIKE SOFM-DOCYR,
             Number LIKE SOFM-DOCNO,
             ForwarderName LIKE SOUB-USRNAM,
           END OF SOFM_KEY.
      DATA: REGION LIKE SOFD-FOLRG.
      DATA: FOLDER_ID LIKE SOODK.
      DATA: L_FOLDER_ID LIKE SOOBJINFI1-OBJECT_ID.
      DATA: DOCUMENT_DATA LIKE SODOCCHGI1.
      DATA: DOCUMENT_INFO LIKE SOFOLENTI1.
      DATA: OBJECT_CONTENT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
      DATA: OBJECT_CONTENT_HEX LIKE SOLIX OCCURS 0 WITH HEADER LINE.
      DATA: LINES LIKE SY-TABIX, DOCUMENT_TYPE LIKE SOODK-OBJTP.
    *- set default
      IF DOCUMENT_TYPE IS INITIAL.
        DOCUMENT_TYPE = 'PDF'.
      ENDIF.
    *- create office object
    *-- get dark folder
      REGION = 'B'.
      CALL FUNCTION 'SO_FOLDER_ROOT_ID_GET'
           EXPORTING
                REGION                = REGION
           IMPORTING
                FOLDER_ID             = FOLDER_ID
           EXCEPTIONS
                COMMUNICATION_FAILURE = 1
                OWNER_NOT_EXIST       = 2
                SYSTEM_FAILURE        = 3
                X_ERROR               = 4
                OTHERS                = 5.
      IF SY-SUBRC NE 0.
       MESSAGE E696
               RAISING ERROR_SOFM_CREATION.
      ENDIF.
    *-- create office document
      DOCUMENT_DATA-OBJ_NAME = 'ATTACHMENT'.
      DOCUMENT_DATA-OBJ_DESCR = 'Travel Expense Form'
      DOCUMENT_DATA-OBJ_LANGU = SY-LANGU.
      OBJECT_CONTENT[] = mtab_pdf[].  "NOTE_TEXT[].
    object_content_hex[] = IT_SIMULATION_DATA[].
      DESCRIBE TABLE OBJECT_CONTENT LINES LINES.
    DOCUMENT_DATA-DOC_SIZE = ( LINES - 1 ) * 255 + STRLEN( OBJECT_CONTENT ).
      L_FOLDER_ID = FOLDER_ID.
      if object_content[] is initial.                    
        describe table object_content_hex lines lines.   
        document_data-doc_size = lines * 255.            
      endif.
      call function 'SO_DOCUMENT_INSERT_API1'
        exporting
          folder_id                  = l_folder_id
          document_data              = document_data
          document_type              = document_type
        importing
          document_info              = document_info
        tables
          object_content             = object_content
          contents_hex               = object_content_hex 
        exceptions
          folder_not_exist           = 1
          document_type_not_exist    = 2
          operation_no_authorization = 3
          parameter_error            = 4
          x_error                    = 5
          enqueue_error              = 6
          others                     = 7.
      if sy-subrc ne 0.
    message e696(wl)                             
               raising error_sofm_creation.
      endif.
    *- set export parameter
      SOFM_KEY = DOCUMENT_INFO-DOC_ID.
      swc_set_element CONTAINER 'ATTACH' office_object.

    adobe reader verson 8 only but still I am getting the same error.
    I am trying to pass the pdf tabel data to contents_hex to the FM SO_DOCUMENT_INSERT_API1 but both are having different sturctures. How can sove this problem. I download the pdf table data to pdf file in the pc and again uploaded the pdf file into contents_hex table structure and called the FM SO_DOCUMENT_INSERT_API1, But the work item step in backgroup process download and upload are not working out.
    Please help me out

  • Delete items on the buffer in travel expense

    Hi   All
    Can anyone tell me how do we delete  items on the buffer in travel expense.
    What had happened is that we had upload a number of files for the credit card import, and a payment line appears in the upload.
    That payment line is confusing the users and I need to know how to delete the line in the buffer.
    *I had tried to delete that line but have been unable to do so. Could u please assist?
    thanks in advance
    vishwaas

    Hi there
    It depends on whether its a "paid by company" or "reimburse to employee" expense. Credit card receipts, that are marked as having already been paid by the company cannot be deleted from the document buffer, as these receipts must undergo invoice verification and evaluation processes in Financial Accounting.
    we also have the report RPTTUW02 with which you can delete either the entire cluster or single receipts in the cluster TC.But you need to be very careful with this report! You can also check RPTTCLTA for deletion and manipulation of the
    cluster TA of PCL1 but this is ONLY for delete single lines pertaining to a credit card company or to set a started but not yet completed accounting runs.
    Hope it helps
    Sally

  • Problem with the Travel Expenses PDF Form

    Hi Experts,
    We are facing a strange issue in our production system that the Travel Expenses PDF form is coming as a blank pop up when users raise a Travel Expenses request or try to see the form in 'My trips and Expenses'.
    The strange thing is that it is happning for only 3 users in Production system only.We have confirmed that it is not a Desktop issue. We did not come across this earlier while 3500 users are using it for 9 months now.
    The same problem is not repeated in Dev, Qua or even in Production for any other user.
    The SAP Security team has also confirmed that all relevent authorisations have been given to effected users like other users for whom the same is working
    Kindly help me with the same if you have encountered the same problem or can suggest something that may rectify the problem.
    Help will be appreciated << Please do not offer points >>
    Regards,
    -Amol Gupta
    Edited by: Rob Burbank on Sep 21, 2010 2:38 PM

    Hi Siddharth,
    Thanks for the reply.
    We have checked that it is not a Desktop issue.
    Also SAP Security team says that the effected users have been given the regular authorisations as given to other users using the same functionality.
    As i mentioned it is not a problem with ADS as the same functionality is working fine for 3500 users for 9 months.
    Regards,
    -Amol Gupta

  • Travel Expenses settlements against Service Order/WBS Element/Project Ord

    Hi Experts,
    I have one req. in Travel Expenses, i.e. need to settle travel expneses against Service Order/WBS Element/Project Order.
    Can you guide me how to do this req.
    Thanks & Regards
    Rajesh

    Hye mate,
    This is possible for sure what you need to do is to go at travel request . In travel Request there is an option of Enhanced Travel cost/ Alternative master cost center. if you click on it . you would find an option of cost assignmnet click on it
    there you would have option , like an excel sheet like fields of  the cost centre, wbs element, profit center, order number what eve is requred and save it.
    now the cot of trip would go that particulat cost center or der numbe or WBS rather then the cost center assigned at master data in ifototype 0027.
    Regards
    Waqas Anwar

  • SAP Travel & Expense Management (TRIP) in the Enterprise Portal environment

    HI All
    I am Viki. In our organization they are planning to implement the SAP Travel & Expense Management (TRIP) in the Enterprise Portal environment. Can any one help me how to start this process other details like
    What is the business package for Travel and Expense Managment
    How many Iviews are there
    How to show the Travel data in portal
    How to configure the UWL for TRIP
    What are all roles?
    Please help me in this regard
    Thanks
    Viki

    Hi Viki,
    SAP Travel & Expense Management  comes under ESS Package,
    to use these service we need to take license and all So first
    you gather your requirement ,then check for license n with SAP.
    Check Below links for details
    [Link 1|http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/a0b47200-9c6d-2910-afa6-810c12eb7eb3 [original link is broken]]
    [Link 2|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/21eb036a-0a01-0010-25a3-b2224432640a]
    [Link 3|http://www.sap-img.com/human/what-is-ess-mss.htm]
    Regards,
    Piyush

  • Search Help for Region in travel expense manager

    All,
    The travel expense manager has a field called Region in the "general trip data" section . This region is used to to determine the Per diems and Flat rates for meals and accomodation.
    This values can only be the values that exist in T7020 table. That is T7020 is a check table for this field. But there is no search help provided for this field in the transaction PR05. When I click on the search help (f4), i do not get any values. It is impossible for the user to know the codes for the region in contention. Like for Phoenix, the code is AZ/PH. There is no way the user will know these codes without the F4 search help. Any ideas if this is a configuration thing or any round about way to get over this issue?
    Thanks in advance
    regards
    Sam

    hi
    create your customized search help and add to the field.

  • GL Account in Travel Expense infocube

    Please can someone help me.
    What is the infocube I can use to link it with the one of Travel Expense in order to get the GL Account?
    I need to obtain the GL Accounts for expenses that are affected.
    Thanks!!

    I'm sorry; I explained the request in a wrong way.  The real request is to get the employees on 5 specific  expense accounts having the balance by month and ytd.
    For example:
    For account xxxxxx, this employee spent this amount for January
                                              Balance
    Employee   GL Account     Jan    Feb .... YTD
    Is this possible?  Which cubes? Accounts Payable and HR?
    Thanks for your help.

  • Switching off the buffering of number range for Trips (travel expenses)?

    Hi,
    In Tcode SNRO object RP_REINR has a buffer of 10.
    If this is switched off, it could influence the performance.
    Has anyone had any experience in switching off the buffering of number range for Trips (travel expenses)?
    Thank you.
    Kind regards,
    Linda

    Dear Linda,
    I recall switching off the buffer in one of my projects. We did not encounter any problems, since it was a rare activity. Therefore, I do not expect any performance issues on this matter. Anyway, I presume, one can always switch it back.
    Regards,
    Eli

  • Is it possible to delete a trip (travel expense)?

    Hi,
    I have travel expense (trip) which has the status "settled/transferred to FI".
    However, due to something unforeseen, the trip had been settled, but was not transferred to FI. It is not visible in the vendor open items (FBL1N).
    A new trip has been created, settled and was paid.
    I now want to delete the first trip.
    How can I do that?
    Thank you for your feedback.
    Kind regards,
    Linda

    Hi Linda,
    You can cancel the trip data(travel expense) using the tcode PR05, before the settlement of trip data is carried out through t code PREC.
    If you run the t code PREC for a particular travel expense, you cant delete the data.
    Hope this help you,
    Regards,
    Praisty.

  • Tax line items when travel expenses are posted to intercompany

    Hello Experts,
    We are posting a expense report  to a different cost center other than the Master cost center(IT0001). In this case system understanding as intercompany transaction and posting the travel expenses to different cost center and different company code. But the problem is when there is a tax calcualted, this tax is initially getting posted to original master cost center and again transfering the taxes to the intercompany cost center. this is creating an additional FI documents and also additional tax line items which is becoming very difficult for reconcilation.
    can any one suggest me where could be the correction required in order to post the taxes to intercompany cost center in the first instance itself.
    Thanks&Regards
    Srinivas

    Hi Srinivas,
    Profit center was not picking for tax line item when we were doing multiple cost center in a TRIP. So we have activated "not deductible" in VST and it got worked.
    Later when we got a Cross company employee vendor posting, tax line items are posting in both company codes.
    So we have deactivated "not deductible" in VST and activated "set expense company code" in table T706K (to allow cross company code postings in TM)
    And defined a new solution in New GL config for the first prblem.
    We have not changed anything in "posting indicator" in OBCN, it was 2 (Separate line item) only. You should not change this.
    All postings went fine.
    Regards
    SM

  • Travel expense break-up

    Hi,
    I want to get Travel expenses break-ups on Cost-Centers.
    For example, For a perticular person & trip, there is a line item created through
    'PR05'. For a single line item, Amount are split up to 2 Cost Centers. I want to
    get the amounts based on Cost Centers.
    How to get the amounts based on Cost Centers, what are the tables or
    is there any function module for that?
    Thanks,
    Sreenivas

    Details of the Travel Expense breakup is stored in the travel cluster table.
    Take a look at transaction code PRTE  - this lets you look at the various segments in the cluster table and see what data is there.
    Try it out in a sandpit system for a few trips to see how the data is stored, then look at the program source to see how SAP reads the data using function modules and macros.
    Andrew

  • Travel management: Input tax for each travel expense

    Dear forumers,
    I've got the following problem with input tax.
    I activated input tax for my country variant in Customizing IMG Global settings for each trip provision variant, second option "Input tax per trip expense type".
    I also put the tax code to each travel expense which should be taxed.
    But still amounts are not posted in FI with input tax codes.
    When I tested the situation in Testing system, everything worked fine. Then I did the same customizing in Development in order to transfer to Production system and copied requests to Testing. And from that moment, amounts are posted to FI without taxation even in Testing system. Don't know, what went wrong 'cause everywhere I did the same manipulations.
    Can anyone help me to solve the problem?
    Best regards,
    Eldar.

    Hi
      what is the rule in schema?
      i had similiar problem,  i.e. the tax code is not updated in the FI document.
      can you advice what might go wrong?
      thanks in advance!

Maybe you are looking for

  • How a drop out made $5000 in 30 days with $10 using this system

    NOTE: PLEASE COPY THE WHOLE OF THIS AND SAVE IT ANYWHERE, THIS IS REAL AND SERIOUS. How to convert $10 to $15000 in 30 days only as easy as possible. TURN $10 INTO $15,000 IN ONLY 30 DAYS...HERE IS HOW! This is a Money Scheme and Not, I repeat... Thi

  • My Smart Collections in FCP X Are Not Working

    Hello, I'm running Final Cut Pro X 10.1.1 on a new 2013 Mac Pro. For some reason I am not able to get my smart collections to work. After creating a smart collection and naming it b roll, I proceed to label clips b roll, but they are not showing up i

  • Invoice against multiple sales order?

    Hi, My client has a requirement of Clubbing of sales order in one invoice. Is there a possiblity to achieve the same. Details would be appreciated. Thanks

  • Book Binding with a PDF Cover Page - cover page coming in blank

    Hi All, I have sucessfully created a pdf book using PDFBookBinder. I'm getting a blank page when I try to use a Pdf as my cover sheet. My toc.xml looks like this.... <?xml version="1.0" encoding="utf-8" ?> <outline xmlns="http://xmlns.oracle.com/oxp/

  • Struts Application: Binding TextArea to Checkbox. Please Help!!!

    Hi I am working on a Struts Application, where I have to do the following function There is a JSP Page which i have created. The JSP page has these elements. It is basically a page with which a user can specify what problem he/she has and can use the