Dependent documents for given FI document

Dear Friends,
Can i seek your help to know if there is any standard report existing to list all the documents related to SD / MM for a given FI Accounting Document (the document number of FB03).
Thanks for helping me to know.
BR,
Ravi

Hi,
Go to FB03. Click on Document List. Give company code and fiscal year. Choose Relevant document type. Enter the Reference transaction and Execute.
You will get the list of all MM and SD transaction according to the reference transaction.
Regards,
Jigar

Similar Messages

  • Single billing document for multiple delivery documents

    Hi,
    Can someone tell me how to configure or proceed to make single billing document for multiple delivery documents.
    Document flow: Contract--> Order---> Delivery----> Billing
    -Thanks

    Being an old member of the forum, there is no need to stress the importance of adhering to forum rules where it has been clearly spelled out to avoid posting repeated queries.
    If you search the forum or Google it, you will find lot of documentations available on the same topic.  Take the inputs and try on your own.  Still if you face any issue, update here.
    G. Lakshmipathi

  • One Billing document for multiple Dilevery Documents

    Dear All,
             I m trying to generate one billing documents for multiple dilveries documents with Tcode : VF04. But it is generating billing documents for all the delivery documents.  M i missing any configuration or some thing like that.
    Suggestions?
    Regards,
    Vikas

    Hi Vikas,
    after you created the billing document there is one menu option protocol. If have it not 100% in mind and i am note able to test it for the moment.
    T

  • Retrieve Multiple Serial Numbers for given Delivery Document and Item

    Hello Experts,
                          I am currently working on a 2Lis datasource to extract Delivery information.Now it is required to append the
    datasource with field (say ZZSERNO) which should extract ALL Serial Numbers from OBJK table for a given Delivery Item.
    I know that there is a link between table SER01 and OBJK to retrieve the same.However, my concern is- C_T_Data table is
    already providing the Delivery Information and along with that I want to display ALL Serial numbers for a given Delivery Item.
    A delivery Item can have more that one serial number linked to it as what I see in VL03N for a Delivery document.
    So currently in RSA3, I retrieve say 1 record for a given Delivery Document and Item .Now an Item has say 10 Serial Numbers
    associated with it, so i should see 10 Records for that Delivery Document and Item, after executing RSA3.
    Please provide me with the CMOD logic to do so.

    Hi,
    You can Link LIPS and OBJK tables with Delivery and Del Item.........refer below for the code.
    1) Declare an Internal table of type OBJK with fields DEL DOC, DEL ITEM and ZZSERNO .
    2) Declare another Internal Table ITAB_LIPS of type LIPS with required fields say in your case *DEL DOC, DEL ITEM and ZZSERNO....etc.
    3) Use below select statement to extract records from LIPS into ITAB_LIPS that you have declared for to fetch LIPS data.
    Select DEL DOC, DEL ITEM ( here i have included only few fields but as per requirement please add fields here)   from
    LIPS into corresponding fields of Table ITAB_LIPS.
    4) write one more select statement to fetch Serial number data.
    Select DEL DOC, DEL ITEM ZZSERNO  from OBJK into corresponding fields of TABLE ITAB_OBJK for all entries in ITAB_LIPS
    where DEL DOC = ITAB_LIPS-DEL DOC and
                DEL ITEM = ITAB_LIPS-DEL ITEM.
    Loop at ITAB_OBJK.
    Read table ITAB_OBJK into ITAB_LIPS with keys DEL DOC    DEL ITEM.
    ITAB_LIPS-DEL DOC = ITAB_LIPS-DEL DOC
    ITAB_LIPS-DEL ITEM = ITAB_OBJK-DEL ITEM.
    IF SY-SUBRC = 0.
    ITAB_LIPS-ZZSERNO = ITAB_OBJK-ZZSERNO.
    ENDIF
    ENDLOOP.
    Hope the above code helps
    Sujan

  • Two FI documents for one billing document.

    Hi,
       This problem occurs rarely. We do VF04 and generate billing documents. Some billing documents thus generated were not found as actual billing documents by looking at VF03 but are posted in FI in the corresponding company code. When we see these documents in FB03, the header of the document indicates that they came from billing and are not manually posted in FI, thus indicating that billing ran, the FI document was processed, but the billing for some reason failed to be saved in SD. For each of these FI document which do not have a corresponding billing document in FI, there is one more billing document which is existing with the same billing amount and references the same details. It has a corresponding FI document too. So, the crux of the issue is there one only one billing document and two FI documents.
    SAP service has given an OSS note 92592 to find out all the orphaned FI documents and then a way to reverse these documents. This is sort of a workaround. But the root cause for this issue is not found. The note also says the following..
    "In one of the function modules called by FI/CO interface, a 'commit work' is performed.
    A 'commit work' can, for example, be triggered in a Native SQL or result from an RFC.
    A commit work is not allowed here.
    The commit work should not be performed until the billing document is transferred to the update program."
    I have gone through most of the custom codes written by us in the SD billing and FI accounting areas. None of the custom codes use 'commit work' staements. Since this issue doesn't happen frequently, we understood that this is due to a 'commit work' problem in the database but are unable to nail down on the exact piece of code.
    Any suggestions/ideas or experiences of similar instances, please share.
    Regards,
    - Raja.

    Hi Raja!
    Explicit commit work wasn't very likely (but of course you never know). Now you should extend your search for the implicit commit works -> database commit.
    "Database commits are triggered either implicitly or explicitly in an SAP system.
    <b>Implicit Database Commits</b>
    The implicit database commits in an SAP system are caused by the fact that the SAP system is logged on to the database system via its work processes . A work process can only ever execute a single database LUW but cannot interfere with the database LUWs belonging to other work processes. Since an ABAP program can be executed by different work processes during its runtime, the database LUW for the current work process must be completed each time an action takes place that leads to a change of work process. As a result, a database commit is performed implicitly in the following situation:
    Completion of a dialog step
    The program waits for a user action and does not occupy a work process during this time. The next free work process is assigned to the program in the next dialog step.
    Calling a function module in a synchronous or asynchronous Remote Function Call
    The current work process hands over control to a different work process or system.
    Completion of a function module accessed with a synchronous Remote Function Call in a separate work process
    The calling program is assigned a new work process.
    Execution of a RECEIVE statement in a callback routine specified in an asynchronous RFC
    The current work process is interrupted so that the data can be received from the other application server.
    Interruption of the current work process with a WAIT statement.
    After interruption, the program is assigned the next free work process.
    Sending error and information messages and warnings.
    These messages interrupt the current dialog step (see above).
    <b>Explicit Database Commits</b>
    Database commits can be triggered explicitly in ABAP programs in the following ways:
    Use of the corresponding database-specific native sql statement.
    Calling the function module DB_COMMIT.
    This function module, which has no parameters, encapsulates the corresponding native sql statement.
    Executing the open sql statement COMMIT WORK."
    Maybe there is somewhere a wait or sometimes a RFC is called - that are the most likely implicit commits.
    Also calls of standard FMs can contain dangerous coding - include calling of 'bigger' standard functions into your search (not something like 'MARA_SINGLE_READ', but all BAPI).
    Regards,
    Christian

  • Mass Upload of documents for a financial Document

    Dear Friends
    I have created Document Type ZFIINVOICE and assigned it to Object Type BKPF. I am able to link Document to individual FI Document via OAWD.
    I want to mass upload documents related to a person in  Financial Document .
    Is there any BAPI vailable for mass upload.
    Or can LSMW can be used.
    Please advice for the method of upload.
    With Regards
    Mangesh Pande

    Hi,
    You can use the following BAPI for this purpose:-
    BAPI_ACC_DOCUMENT_POST
    Regards,
    Gaurav

  • Multiple cost documents for single shipment document

    Hi All,
    My recuirement is as follows. (this is for Cement industry implementation)
    1) In a shipment document i wil inculde mustiple deliveries for which a single route wil be deterimined and only one stage is used.  For Ex. I include 10 deliveries say dly no. 1 to 10. now when my vendor sends bills for the services rendered. ill be making payment only for the deliveries which vendor sends the bill. say vendor sent bills for dly nos. 1,2,4 7, 8 and 10.
    so my query here is when i created a single shipment document for all the 10 deliveries, i would like to make the payment for the selected deliveries only. is this is possible ? if yes please what all the possibilities ?
    2) same as point 1. but when the routes are different.
    please explain on the both the scenarios.
    Regards
    Sree...

    As you aware that,
    Shipment cost created to capture the freight involved in that consignment. Once consignment is finished then vendor issues bill to the client. vendor bill doesnt reflect to the shipment cost, where when you save the shipment cost document service entry sheet will be generated which is used in vendor invoice verification, but not the shipment cost document.
    if client wants to charge the frieght calculated in shipment cost document in Customer invoice, you have to create shipment cost document ,before your vendor issues any invoice to the client.
    Coming to your requirement,
    maintain shipment cost relevance @ item level, noting but you will be calculating freight at each delivery level. while creating condition record, all the deliveries will be copied in shipment cost document at item level, here you delete whatever the deliveries you dont want to capture the freight in VI01 & save it. one service entry sheet will be generated for only listed deliveries & do the invoice verification to settle the amount to the vendor.
          now, try to create one more shipment cost document wrt: shipment doc, but only for the remaining deliveries. Hope you can create because shipment document has not yet been completed.
    Check & revert

  • Different billing document for Same Sales document

    Hi guru's
    I have scenario like this
    Sales document is ZZOR for all countries but billing document will be different from country to country
    Could you please light on this
    Thanks and Regards
    Srinivas Kapuganti

    Hi,
    Now, as your requirement goes I can suggest you something on this as below:
    Presuming you are doing delivery related billing as of now, then you need to maintain copy control between your delivery type to different billing types. Then while doing VF01 you need to manually select the billing type depending upon your country. Same thing will be applicable for order related billing as well.
    Hrishi

  • No accounting document for 541 mat document

    HI,
        I am doing subcontracting for that, i am using  541 mvt type but for that document no accounting document is generated, my problem is that whether accounting document should be generate or not ,if it is to be generate then in my case it is not generating.
                                                                                    THKS.

    Movement type 541 is not a goods issue. This movement type is a
    transfer posting from unrestricted stock to vendor stock. The material
    still belongs to you; you still own the material. A material document
    is created for movement type 541 but there is no accounting document. The system is working as designed. When you do the goods receipt of the ordered material, the system
    then posts a movement type 101 for the G/R and a movement type 543 for
    the goods issue. This material document shows in the order history.

  • Statistical Document for Write off Document.

    Hi All,
    I need your help in following
    We have following requirement....
    When a document is written off using either FP04 or FP04M, a normal write off document is get posted.  But in addition to that
    we need a statistical document to be get posted in Contract Account for this write off.
    Thanks in advance.
    Regards,
    Pradeep

    Pradeep:
    Standard functionality - receivable adjustment - handles this scenario better than write off with statistical.  Test transactions FPZW (single)  and FPRW (mass).  Using writeoff with statistical creates much more work, documents and overhead processing.
    regards,
    bill.

  • FBR2 generate reverse posting for a cleared document

    Hi,
    I am using the transaction FBR2 to generate a reverse document for an existing document.  There are several GL accounts in the original document but when i generate the reverse document system could populate lines only for the GL accounts where the original document was not reversed.
    Any inputs how to geneate the whole reversal document.
    Regards,
    Haranadh

    Hi
    First of all let me know are you trying to Reverse already Reversed Document OR trying to Reverse a Original Document.
    If you Reversing the Original Document what ever may be the No. of Line Items, Document will get Reversed. Use FB08 for this.
    1. Individual Document Reversal --->FB08
    2. Reversal of Reversed Document --->FBR2
    3. Reversing a Cleared Document --->FBRA
    Regards
    Venkat

  • Mass Upload Documents for Master Data in BI 7.0

    Can anyone confirm that the 'How To' document for uploading mass documents is still valid in BI 7.0 SP 15 (it was stated for 3.0B SP7) or suggest another way to do this?
    The business requirement is to upload numerous image files as BW: Physical Class Master Data documents for 0MATERIAL. It would need to also set the Log.Doc.Property of Document Type = value.

    This code does work in BI 7.0 SP 16, with a small alteration.

  • NO Document for Goods Issue -Kindly help me in solving the issue

    Hi,
    I am getting the below error while doing post goods issue.and not generated acccounting document.kindly advice me.
    Material document 4900001022 does not include an accounting document
    Message no. M7082
    Diagnosis
    The system cannot find an accounting document for the material document 4900001022.
    Possible reasons for this are:
    The goods movement has no relevance to accounting. Therefore, the system did not generate an accounting document for the material document.
    The material document is a document that was posted before Release 2.1. Such documents must be converted so that the system can find the relevant accounting document.
    The procedure for the subsequent calculation of value is not active in your system. For further information, refer to the documentation on the program for valuating goods movements: RM07MWBU.
    Procedure
    Choose Continue and then choose another function.
    Find out when the material document was created. If the document was created prior to the Release changeover, ask your system administrator to carry out the conversion of the documents. The individual steps required for document conversion are described in the Release Notes for Release 2.1B.
    Thanks
    Sunitha

    Dear Sunita,
    Please check
    T. Code: OMS2
    Select your material type (from right hand side), and click: Quantity/ Value updating (frpm left hand side).
    Check whether the Box: value updated is checked or not. If this is not checked the material is not valuated.
    Also, check whether a relevant accounting document( In general, WL) is assigned the material document or not.
    Best Regards,
    Amit.
    Note: The best way is to cosult your MM-Consultant.

  • Work around to force trigger Accounting documents for Billing documents

    Hi All,
    I have an issue very similar to:
    [Accounting Document not posted for Cancelled Invoice -error in FI interface|Accounting Document not posted for Cancelled Invoice -error in FI interface]
    The invoices number range were changed recently and few documents created during that time range did not create the accounting documents. Now, if I try VF02-> ReleasetoAccounting, it says:
    "Incorrect doc.no.: 98020923. Select document number between 3000000000 and 3999999999."
    Is there a workaround here to re-trigger the accounting documents for these Cancellation documents(Type S1)?
    I've also tried cancelling them, but I get the below error message:
    "For billing type S1, no cancellation billing type is maintained"
    I've found a few hits when i searched the forum but none talked about a workaround.
    Any help would be appreciated.
    Thanks,
    Tabraiz

    Hi,
    Thanks for the reply. I've checked the note, it states the below steps for the solution:
    1) Implement Notes 331771 and 363717 first if they are relevant for your release.
    2) Implement the attached program corrections
    3) Branch to Customizing of the billing document types and enter a cancellation billing document type for the affected billing document type of the cancellation document itself.
    I was wondering if only the step 3 will be enough to cancel the cancellation invoices. I am still not sure what is the significance of point (2) here.
    I haven't implemented a SAP note so far, have you encountered this problem, and have you implemented the whole three steps?
    Thanks,
    Tabraiz

  • DMS - File attached for FI posted document

    Hi All,
    I am new for DMS .
    My requirement is - we have web application in .net  . Vendor update entry in web application , attached some file with that page and go to submit .
    It comes in SAP through proxy and posting in FI has been done .
    But the file attached in .net application is stored in .net application server .
    So now requirement is when we open posted document in SAP we need that file attached with posted document (available in GOS for that t-Code) .
    My question is -
    1 - how we create entry in DMS dynamically ( we got posting confirmation in SAP through proxy and we got that file in SAP application server through file transfer ) . But how to entry maintain in DMS (we have multiple document for single posted document ). Even I know how to create document type for DMS n basic thing of DMS .But I need algo . 
    2-  How that entry link maintain to that FI T-Code . 
    Thanks to all .
    Regards,
    Alter

    Hi Ravi,
    you need to customize in OAC3 the Documenttyp link to FI Object.
    e.g
    ObjectType      Doc.type   Status Cont. Rep. Link  Doc.class      Ret.per.
    BKPF               #ZXYDOC#      X      C1    TOA01      PDF              180
    From your Server you need to call am FM (something like ALINK_CREATE_ASYNCHRON_META" on your SAP System via RFC to save the File after you created the Object.
    regards
    Kim

Maybe you are looking for