Document entry report

Dear Friends
Is there any report  to view  the  only document entry of particular GL account that has been posted for a period.( Only document entries)
Eg; When we post a document. The line items will be recorded into GL account. What we are looking at is like simulation entry we would like to see as a report by executing any t code.
Give a thought to this
HK

Hi John,
Suggest you use S_ALR_87012291.
Unfortunately the system doesn't adeqautely address the need for multiple column sorting.
One option, though unfriendly is to identify these fields as filters and see the report in bits and pieces. For example you can filter transactions for a particular date and then sort on document number.
But the best option you have would be to export the report to excel and then work as much magic with it as you may. I know this may sound naive, but trust me it is the way to go.
Thanks.
Anand

Similar Messages

  • Can profit center report drilldowen to the document entry level

    Hi,
    In Profit center Reporting can we drill down to the document entry level if yes how we can prepare this kind of reports.
    Thanking you.
    Regards
    Santosh Rothe

    Hi Santosh,
    Yes,
    Click 2 times on the line (amount) or use the menu path Report / Other report
    In the most standard reports you can drill down.
    When not you can ad reports, line item overvieuw to the Report group
    Transaction GR52 go to the header and under Report interface you can ad other reports or line item transaction codes
    Paul

  • Document or report for assessment and reversed assessment?

    Hi guyz,
    Is there any document or report for assessment and reversed assessment?
    I need to find documentation as a proof for any execution and reversal of assessment, such as journal entry or report line items that is showing debit or credit for the expenses..
    Currently, I can only see actual cost document which shows execution of assessment and an assessment cost element debit and credit in the Cost Center Actual/Plan/Variance report.
    However, when I do reversal at KSU5, in the Cost Center A/P/V report is showing that assessment cost element is still exist (no more debit and credit showing as the result of the reversal), only that the value is now zero.
    Need your answer asap...Thanking you..

    Dear Meila,
    Use tcode KSB1 Cost Center Actual Line Itens, execute then report and change the Layout, insert the field Business Transaction in the report.
    Regards

  • Document changes report

    Create a new report to display contract document changes
    I got an assignment to create a new report which must show the document changes in Functional Areas SD
    Requirements are
    1. create customised report that will allow them to list the changes made in contract documents with more
    ranges options on the report selection parameters
    Basically this customised report will retrive all the changes made in sales contract documents within a plant,date ranges and other selection parameters.
    Testing scenarios
    Test 1 : create a new contract document. Make changes to the contract line item information such as order qty, add in a new line item , apply rejection code, etc.
    The report layout must shows
    Sales offcie from __________ to __________
    contract document number from ______________ to ______________
    change Date from _______________ to __________________
    change by < username >
    Contract Doument Number
    DATE                     Changes (Header Item)               old value          new value        user
    <sales Office code >     < Sales_office_Description>
    + 400000600
      08/10/2007             Customer purchase order date         00/00/0000        08/10/2007         user01
      09/10/2007             10 Item credit price                 330.00            323.40             user02
      09/10/2007             30 Reason for rejection of
                             quotations and sales order                                                     
    + 400000601    
      08/10/2007             Customer Purchase order              XYZ-111           ABC-123            USER03
      08/10/2007             10 Item credit price                 100.00            95.50 AUD          USER03
    Like above whoever made changes for the document the report must display as above
    can anyone help me or give idea how to proceed with the codes
    regards
    Piroz

    Hey Ashish
    Below is the report for document changes for 2 tables CDPOS, CDHDR
    I need some modification for how to add the ranges
    Plant from ________ to ___________
    Udate from __________ to ___________-
    Document No from ________ to __________
    Change date from ____________ to _____________
    username by __________
    If i don't enter anything the it should display all the records esle the ranges defined.
    I even want to add plant code from and to but not getting idea from which table it has to be taken? I want this to be display in ALV Gride format too.
    Please could anyone help me in modification please urgent.........v urgent
    REPORT ZCHGDOC.
    TABLES: CDHDR,
             CDPOS.
    DATA: BEGIN OF itab occurs 0,
    UDATE TYPE sy-datum,
    end of itab.
    SELECT-OPTIONS udate for sy-datum .
    SELECTION-SCREEN BEGIN OF BLOCK DOCUMENT WITH FRAME TITLE TEXT-701.
    PARAMETER: CHANGENR LIKE CDHDR-CHANGENR.
    SELECTION-SCREEN END OF BLOCK DOCUMENT.
    END-OF-SELECTION.
       DATA: BEGIN OF IT_CDHDR OCCURS 0,
               OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
               OBJECTID LIKE CDHDR-OBJECTID,
               CHANGENR LIKE CDHDR-CHANGENR,
               USERNAME LIKE CDHDR-USERNAME,
               UDATE LIKE CDHDR-UDATE,
               UTIME LIKE CDHDR-UTIME,
               VALUE_NEW LIKE CDPOS-VALUE_NEW,
               VALUE_OLD LIKE CDPOS-VALUE_OLD,
       END OF IT_CDHDR.
       DATA: WA LIKE LINE OF IT_CDHDR.
    DATA: WA LIKE LINE OF IT_CDPOS.
       DATA: BEGIN OF IT_CDPOS OCCURS 0,
               OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
               OBJECTID LIKE CDHDR-OBJECTID,
               CHANGENR LIKE CDHDR-CHANGENR,
               TABNAME LIKE CDPOS-TABNAME,
               FNAME LIKE CDPOS-FNAME,
               VALUE_NEW LIKE CDPOS-VALUE_NEW,
               VALUE_OLD LIKE CDPOS-VALUE_OLD,
       END OF IT_CDPOS.
    SELECT OBJECTCLAS
            OBJECTID
            CHANGENR
            USERNAME
            UDATE
            UTIME INTO CORRESPONDING FIELDS OF TABLE IT_CDHDR
            FROM CDHDR
            WHERE OBJECTCLAS = 'VERKBELEG'.
            IF IT_CDHDR[] IS NOT INITIAL.
       SELECT OBJECTCLAS
              OBJECTID
              CHANGENR
              VALUE_NEW
              VALUE_OLD
              FNAME
              TABNAME
              INTO CORRESPONDING FIELDS OF TABLE IT_CDPOS FROM CDPOS
              FOR ALL ENTRIES IN IT_CDHDR
              WHERE
              OBJECTCLAS = IT_CDHDR-OBJECTCLAS
              AND OBJECTID = IT_CDHDR-OBJECTID
              AND CHANGENR = IT_CDHDR-CHANGENR.
       SORT IT_CDPOS BY OBJECTCLAS OBJECTID CHANGENR.
    ENDIF.
    Add tables CDPOS DATA TO CDHDR.
    DATA: INDEX TYPE i.
    LOOP AT IT_CDHDR.
    INDEX = SY-TABIX.
    READ TABLE IT_CDPOS WITH KEY OBJECTCLAS = IT_CDHDR-OBJECTCLAS
    OBJECTID = IT_CDHDR-OBJECTID
    CHANGENR = IT_CDHDR-CHANGENR BINARY SEARCH.
    IF SY-SUBRC = 0.
    IT_CDHDR-VALUE_NEW = IT_CDPOS-VALUE_NEW.
    IT_CDHDR-VALUE_OLD = IT_CDPOS-VALUE_OLD.
    MODIFY IT_CDHDR INDEX index TRANSPORTING value_new value_old.
    ENDIF.
    LOOP AT IT_CDHDR INTO WA.
         WRITE:  WA-OBJECTID.
         WRITE:  / WA-UDATE,WA-CHANGENR,WA-USERNAME,WA-VALUE_NEW,WA-VALUE_OLD.
    WRITE: / WA-CHANGENR,WA-VALUE_NEW,WA-VALUE_OLD.
    ENDLOOP.
    ENDLOOP.

  • How to link PDF document in Report Layout??

    I need to display the contents of PDF document after the form letter report. I tried OLE object but at the runtime it does not display the content. Does any one knows how to attach PDF document in reports layout?
    Thanks
    Ravindra

    you will have to concatinate your report output with the static PDF document. in reprots 10g you can create a cusotm destination that could implement this functionality.
    out of the box, reports does not provide the ability to add static content in PDF to reports' generated PDF output.
    thanks,
    philipp

  • Length of amount field in New GL at the document entry

    Hi,
    1) At present I am working on ECC 6, EhP 4 with New GL Activated & Old GL "Not deactivated" (i.e deactivate update of Classic General Ledger GLT0 not done).
    2) The total table (FAGLFLEXT) & Line item table (FAGLFLEXA) field in new GL has amount field length as 23 digit.
    3) When I am trying to enter any FI Document in SAP, using transaction code F-02 or FB60 etc, the length of amount field is coming as 13 digit. I am not able to enter higher value
    Question:-
    a) Is the above issue due to "non-deactivation" of "Old GL"? As per my understanding, it is not, but wanted your opinion.
    b) Is there any configuration which needs to be done to increase the length of the amount field at transaction level?
    Thanking you in advance
    Santosh Agarwal

    a) Is the above issue due to "non-deactivation" of "Old GL"? As per my understanding, it is not, but wanted your opinion.
    No, it is not.
    b) Is there any configuration which needs to be done to increase the length of the amount field at transaction level?
    No, there isn't.  The field length that is appearing during document entry is really dictated by the data type of fields such as DMBTR, WRBTR in table BSEG; which is CURR (13,2).  Although the GL view (FAGLFLEX* tables) have longer length, the limitation in entry view (BSEG, etc.) stays as 13,2.

  • Line items in a document entry

    Hi,
    there is restriction on line items for per document entry - i.e. 999.
    i would like to know if there is any update on the restriction in the enhancement packs.. or is it still 999.
    thank you
    - Vedavatee

    Check WIKI http://wiki.sdn.sap.com/wiki/display/ERPFI/Systemlimitationof999lineitemsperFIdocument
    Which Says
    Purpose
    The purpose of this WIKI is to explain a system limitation which does not allow you to have more than 999 line items per FI document, and also provide you with workarounds you can use to post your document.
    Overview
    When you are posting an FI document which has more than 999 line items, the system will issue an error message. This is due to the fact that the line item number field (BUZEI) in the BSEG table consists of 3 characters only and therefore the system cannot read more than 999 line items in the FI document.  There are some workarounds which can be done so that your document will be successfully posted in the system.
    System Limitation
    The FI document has more than 999 lines, the system issues error F5 807 ("Number of items in document is too large") or F5 727 ("Maximum number of items in FI reached"), and posting is not possible.
    There are no immediate plans to expand the number of line items beyond the current limit (999 lines per document). This is because the line item number (BSEG-BUZEI) field length is defined as 3 numeric positions (leading to a maximum possible number of 999 line items). The SAP development group is aware of this functionality change request, but the change is significant since BSEG is a cluster table which is used in numerous R/3 programs.
    Srinivas

  • Send a Change Document entry when an equipment change its status (IE02)

    Hello experts,
    In the transaction IE02 (Change Equipment), when a user changes the equipment status, for instance, from Active (ACTV) -> Inactive (INAC) when the SAVE button is pressed I need to post a Change Document entry (CDHDR and CDPOS).
    I've already identified the user exit EXIT_SAPMIEQ0_002 which is triggered when the SAVE button is pressed in IE02 transaction. I cannot read the new status value.
    At that moment I can read the old status (which has been change until the user exit finalized) but I don't find a way to check if that old_value <> new_value.
    Does anybody knows a way to achieve this?
    Thanks in advance,
    CL

    Stauts changes are tracked in the table JCDS and not in CDHDR and CDPOS.
    You will have to check the box for Change documents in the configuration for equipment status ( this is done on equipment type's status profile ). The status change tracking will not happen until it has been set there.
    Thanks,
    Srihari

  • Documents in Reporting

    Hi,
       We are creating a documents in reports and those are available for users to view and modify. but we donot want to allow the users to modify those documents expect few users who can have access to modify the documents? how can we achive this? please let me know the answer.
    Regards
    Sankar

    Sankar,
    Use the authorization object S_RS_ADMWB. Check the following documentation, this should be simple to implement just like any other authorization object.
    http://help.sap.com/saphelp_nw70/helpdata/en/e3/ae133bdca84047e10000000a11402f/frameset.htm
    -Saket

  • Missing Document Number Report in Oracle Accounts Payable

    Hi All,
    Can you please let me know if there alternative report for Missing Document Number Report in R12......
    similar to what we had in 11.5.9 Instance In AP
    Thanks
    Edited by: user5358827 on Apr 19, 2010 11:31 AM

    Hi
    We have tried this but no output. ie the issue continues the same. This issue is there for all PC including Server. Is there any other solution avaliable. .
    Regards
    Sunil

  • Document Drafts Report Indirect Delivery:  understading

    Hello Experts,
    In Sales - A/R > Sales Reports > Document Drafts Report >> there are few things I wanted to ask:
    In selection criteria I selected full Sales - A/R area:
    In Document Drafts Report, there is a columns about which I want to ask
    1. Approval (Column) >> Values: a. Indirect Delivery and b. Direct Delivery
    Can you please tell me about Indirect Delivery and Direct Delivery ?
    Help Required..
    Kind Regards
    Edited by: Shazad Nazir on Dec 31, 2008 12:46 PM

    Hi,
    The 'Direct/indirect delivery' is only meaningful for orders. It changes along with the setting under Order-logistic tab-approved check box.
    Regards,
    Jitin
    SAP Business One Forum Team

  • Document Drafts Report, Draft Open & Close: understading

    Hello Experts,
    In Sales - A/R > Sales Reports > Document Drafts Report >>
    In selection criteria I selected full Sales - A/R area:
    In Document Drafts Report, there is a column about which I want to ask
    Status >> Values: a. Open b. closed
    Can you please tell me when system close the Document and when system keeps it open ?
    Help Required..
    Kind Regards

    Hi,
    First of all Happy new year!
    The closed status in the document draft indicates that you have added the document from the draft into to original.
    You can manually rt.click the draft and can change it to closed status and vice versa by selecting restore.
    Once you have posted the draft to original you need to delete the draft document inorder to avoid duplication.

  • Accounting document entry date

    Is there a function to get the Accounting document entry date? Given the batch number (charg) and Number of material document (mblnr)
    Thanks.

    hi ,
    try this FM <b>AC_DOCUMENT_RECORD</b>, to get the Accounting Documents . For Export parameters just search for this FM in MIRO program , put a break-point, where u will come to know how to use this FM .
    Option 2 : Get the MBLNR  for the CHARG from MKPFMSEG ,and get AWKEY from this like MBLNRMJAHR pass this one to BKPF to get the Accounting Document @ Header Level.
    Regards
    Prabhu

  • POs without service entry-Report

    Hai,
    I have one requirements for service entry report.
    my requirement is I need to take all POs without service entry.
    I am taking records all from the table EKBE, but I  dont know how to classify  these records.
    Is it based on fields(table EKBE) vgabe & vgabe?
    Is the table EKBE correct?
    Any tips?
    With Regards,
    Jaheer.

    > 1) I have a contract Number, how to find the Service Entry sheet and P.O. number?
    Go to ME2M select scope of list as RAHM, choose contract in the same screen put the required details execute
    select the line item from contract go to release details there you can find the history
    Also You can Check it in ME33K, Select the line item and go to item details. In quantity and price tab, you can see Target quantity and Released order quantity.
    Selection Parameters Tab---->Press F4 from the drop down you can find list of parameters (WE102 & GUTSCHRIFT)
    For PO-GR existing, use ME2N & WE102 combination for existing GR list, pls use ctrl+F8 for the selection field for this.
    For PO-Invoice, use ME2N & GUTSCHRIFT combination for existing Invoice list ,
    > 2) My user wants a to know how much payment company has made agaisnt the each line item of the service entry sheet. Please suggest me the T. code
    This is FI reporting & not MM, but you can check this through T-code FBL1N.

  • Hi, i am using SAP by Design in india. I am trying to get GL entry report in which i require a field "Approved by" but unable to find - please suggest.

    Hi, i am using SAP by Design in india. I am trying to get GL entry report in which i require a field "Approved by" but unable to find - please suggest.

    Hi hanmant,
    You could find GL Line item report under General ledger WOC => Reports => List=> G/L Line Item Report, but this report does not have filter parameter "Approved by".
    May I know what was the use case behind "Approved by" field?
    BR, Rakesh

Maybe you are looking for

  • How to use the Wire-Tag in Cairngorm 3 Observer Library?

    Dear Observer-Lib coders, Maybe I am posting my issue into the wrong forum, see this thread: http://forums.adobe.com/thread/756046 I'd like to know how to use the Wire-Tag mentioned in the Observer-Lib docu, see: http://sourceforge.net/adobe/cairngor

  • My down arrow fell off, and it won't go back on. How do I fix this without going to an apple store?

    My down arrow came off and I cannot get it to click back on. I live a good hour and a half away from an apple store. Is there anyway to fix it without having to make that trip??

  • No windows shows up in PE10

    In the last three days I've hade the same problem: After working on a project (making video of still images), saving, closing and restarting the computer, I can't open the project again properly the next day. When media is finished loading, there is

  • Static Text in flash 8 disappears

    Here's a weird one for you. I have a site built in flash 8 with some static text in there. It's in Verdana, no Kern set on it and is Anti-Aliased for animation, whilst this appears to work on every test machine and clients machines we've had reports

  • Itunes files protected (DJ)

    So long story short, i need to use song files and i need to be able to change the formats. (mp3, mp4, etc.) I use a program called serato scratch live that allows me to play music through my turn tables using my mac. i am able to rip music onto itune