Expense (PR05) - Line item change report

Hi:
We are looking for a report on the changes made in the trip line items after the trip was submitted, approved, transferred to FI (at every status).
Basically if a consultant has submitted an expense and is approved by the manager, Then if consultant is opening that trip again and making the changes in the line item (change in cost object, amount etc) or adding a new line, we need  a report which tells when was the change made, what was the change etc.
With the custom program, we are able to get the trip status history but not the line item details (change).
Any suggestions.

It tells the status of the trip but doesn't tell me what change is made.
For example:
If the original trip had one line for Airfare (say 1000) which was approved and transferred.
Later on this was adjusted to Airfare (say 1010) which was again approved.
We want to know amount was changed from 1000 to 1010 on this date. Similarly to cost assignment. Any field which has accounting effect.
Basically our Accounts payable needs to know if they should settle the expenses without waiting for the receipts at month end (in the scenario where cost object is changed later but amount is same, so there is no revised receipt from consultant. They can just settle it again)
Some kind of report which tells when and what change was made (at item level).
Thanks.
Rahul

Similar Messages

  • COPA Realignments for line item based reports

    Hi Guru
    I built two CO-PA  line item based reports in our environment. Now , there are some organizational changes in our environment and Now I have re-derive a characteristic from customer master data. Does those changes reflect in my line item based reports, If i run Re-Alignments (KEND)?
    Thanks in advance

    Line item reports (defined w/KE91) will reflect the realignment.  Line item display (KE24/KE25) will give you the choice of reading the original posting or the realigned data.

  • What is the Table to Capture line item changes in PO?

    Dear Guru's
    what is the table in which i can find the report of ammendment in the PO at line item level OR is there any Standard SAP report ???
    please help..
    gaurav

    Go through Following Link
    Report on Purchase order header changes and Line item changes.
    Vipin

  • Line item actuals report for Profit center group

    I am looking for a Line Item Actuals report for a Profit Center Group  on the lines of KSB 1 report for Cost center /groups.
    I tried report "KE5Z but only profit centers can be selected, not profit center groups.
    Any help on this

    Try out the following report
    S_ALR_87013326 - Profit Center Group: Plan/Actual/Variance
    Call up Actual line items, here we go you would get the profit center group reports in similar lines as KSB1.
    Award points so as to say thanks.
    Regards,
    Suraj

  • Cumulative GL Line Item Balance Report

    Hi,
    Can anybody suggest Cumulative GL Line Item Balance Report in SAP.
    thanks in advance
    Muhammed Riyas

    Hi Ryas,
    This means you are looking for a report of GL Account Statement, where you can have all GL Line item (documents) and thier total also,
    You can use S_ALR_87012332 report, you can also add column total debit and total credit column, then sum of all the line item you can see against each gl, please see below output snapshot.
    Regards
    Javed

  • Order of Line Items change when billing

    Hi all,
    For some reason the order of the line items change when billing a salesorder
    Salesorder line items:
    10
    20 text line
    30
    When billing it changes in:
    20 text line
    21
    30
    I'm kind of lost on how to solve this.
    With kind regards,
    John Waltmans

    try to do with copy controls... VTLA.. sales doc to delivery doc.. goto item and there take item categioreis..
    there check wethere data transfer
    101
    0
    2
    reard if it helps..
    Ramki

  • Exit/badi for ME22 line item change

    hi gurus,
    pls mention any exit/badi for ME22 line item changes......

    Hi,
    Check below thread
    BADI in ME21
    Regards,
    Atish

  • Report on Purchase order header changes and Line item changes.

    Gurus
    All changes which has been done in Purchase order can be seen in enviroment----Header changes Or Item changes for a particular PO.
    Now end user want to see the changes made in all the purchase orders for a particular project in specified date range.
    Suppose there are total 100 POs placed in one month for a particular project. End user want to see the changes MADE (IF ANY) in above POs
    Is there any standard report is available to this effect OR it is z development
    Atul

    HI ,
    This report can easily be written useing the tables EKKO and EKPO
    First get the PO's created in that date range.
    From there get the change document numbers with this extarct the date from CDHDR and CDPOS tables.
    regards,
    Lalita

  • Need profit center in Vendor & customer Line items in reports FBL1N & FBL5N

    Hi,
    how to get profit center field in reports FBL1N and FBL5N.  Please help.
    Regards,
    Sumit Jain
    Moderator: Please, search SDN; it has been answered several times

    Hi,
    I have done the below to get this. (You can change the naming convention of function module as per your wish):-
    Step 1:-
    Create function module Z_GET_PRCTR as below:-
    Import:-
    BELNR     LIKE     BKPF-BELNR
    BUKRS     LIKE     BKPF-BUKRS
    BUZEI     LIKE     BSEG-BUZEI
    GJAHR     LIKE     BKPF-GJAHR
    Export:-
    PRCTR     LIKE     BSEG-PRCTR
    FUNCTION Z_GET_PRCTR.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(BELNR) LIKE  BKPF-BELNR
    *"     VALUE(BUKRS) LIKE  BKPF-BUKRS
    *"     VALUE(BUZEI) LIKE  BSEG-BUZEI
    *"     VALUE(GJAHR) LIKE  BKPF-GJAHR
    *"  EXPORTING
    *"     VALUE(PRCTR) LIKE  BSEG-PRCTR
    DATA: ZDOCLN LIKE FAGLFLEXA-DOCLN.
    CONCATENATE '000' BUZEI INTO ZDOCLN.
    SELECT SINGLE PRCTR FROM FAGLFLEXA INTO PRCTR WHERE RYEAR = GJAHR
                                    AND  DOCNR = BELNR
                                    AND  RLDNR = 'NL'
                                    AND  RBUKRS = BUKRS
                                    AND  DOCLN = ZDOCLN.
    CLEAR ZDOCLN.
    ENDFUNCTION.
    Step 2:-
    Then create the Function Modules as below:-
    Z_LINE_ITEMS_GET_PRCTR (Copy of SAMPLE_INTERFACE_00001650)
    FUNCTION Module Z_LINE_ITEMS_GET_PRCTR.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(I_POSTAB) LIKE  RFPOS STRUCTURE  RFPOS
    *"  EXPORTING
    *"     VALUE(E_POSTAB) LIKE  RFPOS STRUCTURE  RFPOS
    Initialize Output by using the following line -
    E_POSTAB = I_POSTAB.
          E_POSTAB = I_POSTAB.                "<-- important
          IF I_POSTAB-PRCTR EQ SPACE.
              CALL FUNCTION 'Z_GET_PRCTR'
                   EXPORTING
                    BELNR           = I_POSTAB-BELNR
                    BUKRS           = I_POSTAB-BUKRS
                    BUZEI           = I_POSTAB-BUZEI
                    GJAHR           = I_POSTAB-GJAHR
               IMPORTING
                    PRCTR           = E_POSTAB-PRCTR
               EXCEPTIONS
                    OTHERS          = 1.
          ENDIF.
    ENDFUNCTION.
    Step3:-
    Transaction FIBF:-
    Settings -> Products -> of a Customer
    PRCTR     Profit Center in Line Item Display          Active
    Settings -> P/S Module -> of a Customer
    00001650     PRCTR                    Z_LINE_ITEMS_GET_PRCTR
    Step 4:-
    Create the layout for FBL*N with display of the profit center.
    Regards,
    Gaurav

  • Profit Center Actual line items (KE5Z Report)

    Hi All,
    While going through the KE5Z report a line item contains profit center "9623" instead of Profit center "9721" which is maintained in cost center master data "11007117".
    Can you please advice why this is happening and necessary config settings for this change please.
    Kind Regards,
    Vinay

    In your original post, you didn't tell us it was a Partner Profit Centre.
    Look for the config for Partner Profit Centre (Sales or Purchases) using 8KER or 8KES. Here, you maintain derivation rules for Partner Profit Centres.
    Look for the document and the derivation rule that it triggers. you should find this in the original document.
    Hope this helps.
    Cheers.

  • Asset field blank in FS10N (Drilldown to line item level) report layout

    Hi all,
    i ahve posted a Retirement transaction to an asset and when i went to see the line item on the GL using/executing report FS10N for asset transactions GL and drill down to the line item level by double clicking on the period balances and I choose field "Asset" to be displayed in the layout, it is blank. How can I get report FS10N to display the asset number from the transaction?
    the field is available in the layout but when i pull it into the report it is Blank in the report.
    Any help would be appreciated. Thanks
    Jay

    Hello,
    FS10N shows only balance, FBL3N shows the line details.
    Add the asset as a special field via OBVU  (Table:  BSEG, Field: ANLN1).
    Regards
    Waza

  • Withholding tax showing zero value in vendor line item display report

    Hello Friends,
    I have facing one strange issue in withholding tax, when im executing report of vendor line item display(fbl1n tcode) the column for withholding tax is showing zero value for some documents even though the tax is been deducted which is clearly visible in f-02 entry.
    Kindly help me on this!
    Regards,
    Sunny

    Hi,
    1.Please check the WHT config has been done properly.
    2.Check the vendor master and varify tax fields are filled up.
    Regards

  • Tracing the line item change in a accounting document

    We have to send accounting document line items details which have been created or changed to non-SAP system.
    I am looking for way to identify the line items which have been changed as I don't want to send the other line items of the accounting documents which are not changed.
    Thanks.

    Shailendra,
    You've hit the nail on the head - CDHDR and CDPOS are the central repository tables that contain all changes - wherever logged.
    There's no other way.
    P.S.: I'm assuming you know how to extract data from these tables - so am not going into it.
    Remember to assign points if found useful.
    Regards
    Gulshan

  • Line item Change Mode

    Hi,
    When iam Entering the sales order with item category TAN...........after saving the order,In Line item Material Code Filed going in Display Mode...
    My client requirment is .........it should be in CHange mode
    Regards
    Raj

    Dear saravanan,
    Line item can be deleted but i need to Replace the item w/o deleting the line item....
    is thr any possibilitite through Customization...
    Regards
    raj

  • PO Line Item Change

    Hi,
    I have a question regarding the sequence in the PO, when adding a new item from a Purchase requisition.
    we have in an existing PO, added a new item from a requisition (created from a BOM), but we want to change the item-sequence in the PO from the last to the second place.
    It’s not possible to change the item-no manually for e.g 50 to 15.
    Is there any solution for this?
    Points will be rewarded
    Regards
    Irfan

    Hi,
    If you already have the Existing PO with some line items upto 10,20,30,40,50  you can enter manually item number like 11,12,25,25 like that the way you want to add the Purchase requisition to this existing PO.
    You can include at any intervals system will consider for that as sequence like if you enter 15 in item no and enter the PR number at the specified field system will place this PR line item next to your 10 line item of PO.
    Thats like the system will process.
    hope you understand, if not reply on the same.
    rgds
    Chidanand

Maybe you are looking for