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.

Similar Messages

  • Event for reversing the write off document

    Hi All,
    Can anyone suggest me the event that I should enhance for our requirement which is when a incoming payment comes in system should first check whether there is any write off document and if there is then write off document should be reversed and the incoming payment should be assigned to that particular item.
    thanks in advance.

    Thanks for Reply, event 0020 gets triggered but when i use BAPI_CTRACDOCUMENT_REVERSE it throws a short dump or gets into an endless loop.
      MESSAGE_TYPE_X   
    Diagnosis                                                         
        The message previously issued was sent at a time that is not  
        permitted. Changes to the database that belong together logical
        must not be interrupted through dialogs because otherwise     
        inconsistent data may be created. In this case, you attempted t
        output message >3 137.                                        
        The text of the message was                                   
        No interest information exists for document 81000050960       
    System Response                                                   
        The system stops the posting.                                 
    Procedure                                                         
        Contact your system administrator.                            
    Procedure for System Administration                               
        If the program error occurred during a:                       
        o   Standard SAP program, create an OSS message.              
        o   Customer-developed program, correct the program.          
    Please respond if any ideas.
    Thanks,
    Immanuel

  • Automatic Write-off Document in Dispute Case

    Hi,
    I was wondering once the dispute case is automatically written off, should the financial document should be updated in the dispute case, because technically the write off document is the resolved object in the dispute case.
    When i performed automatic write off, the accounting document is not updated anywhere in linked objects in any sub folder, however the dispute case was confirmed.
    Should it update or is there something needs to be done to update in the dispute case?
    Thanks.
    Jen

    Hi Mark,
    Thanks for your reply. In auto status changing, I dont have the option other than defining status for automatic reopen, written off and close. I did check the status, but its not relevant.
    Here is what I am looking for, the automatic written off accounting document should be available or updated under resolved objects under linked objects.
    Thanks in advance
    Jen

  • 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

  • Good afternoon! What to do if forgot an access code for write-off of money from the card?

    Hello!!!
    What to do if fogot an access code for write-off of maney from the card?

    If you made in app purchases in a game, and you did not receive the "items" you paid for, contact the developer of the game.  If you are unable to receive support from the developer, you then should contact the iTunes store and inform them that you did not recieve the purchased content. 
    IF iTunes store support refunds the money that you spent, I would suggest you NOT use the refunded money for the same items, as you may not receive a refund for the same thing again.
    Good Luck.

  • 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

  • Access statistic report for sap km documents

    Hi All,
    I have made a XML form which is used to create  updates or news.
    these news items are displayed in Km navigation Iview.
    I need to know the list of users who have read a particular document.
    I have seen many articles which say to configure activitydatacollector report and get a text file generated on Portal system.
    then this report needs to be customized as per our need.
    I need a simple solution ,when a user opens the document and reads it ,he gets the list of other users who have already read that
    document at the end of that document.
    Reply soon as it is a NO-Go issue for our project.
    Regards,
    Nitesh

    Hi,
    You have created a KM Navigation iView and assigned to users right. Using Standard Portal Activity Report tables we can get the list of Users who viewed the particular Page/iView. Not sure whether they have read that document or not.
    Please check the below link for details:
    http://help.sap.com/saphelp_nw04/helpdata/EN/48/6aa9429b930b31e10000000a1550b0/frameset.htm
    Regards,
    Srinivas

  • 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.

  • 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

  • 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

  • Sap Built In Tolerance For Write Offs

    Hi Guys
    We have been noticing that SAP is automatically writing off balances greater than $100.00 on some customer accounts, however will not allow as small as $0.01 on other accounts to be written off without manual intervention.
    In our Customer tolerances configuration we have following
                   Amount     Percent(%)      Adjust Discount by
    Gain           200.00          10                      50.00
    Loss           200.00          10                      50.00
    We have tolerance for payment advices
    Oustat. receiv. from   200.00 and 10%
    Is this config ok or there should be some change.
    Regards, Roberto

    Hi Peter
    I have in OBA4 tolerance group blank and company code and follwoing config is there.
    As i said earlier we do not maintain any tolerance group. Its blank for all.
    Amount per doc. 999999999999999 Amount per open item account item 999999999 cash discount per item 0.5%
               Amount        Percentage  Cash dis upto
    Rev   200                  0.5%           5
    Expense  2000          0.5%           5
    I do not understand where exactly a problem. Some invoices it gets in to small diffrence account with 0.15 $ diff. Some are not.. Its a kind of weird.
    Regards, Roberto

  • Write off FICA documents with no segments after New GL has been activated

    Hi Gurus,
    The scenario we are facing is as follows"
    The client had already implemented FICA as part of its legacy, but SAP FICO was not implemented. As part of the new framework, we are implementing SAP FICO as well, while at the same time New GL is now being activated.
    All ancillary configurations have been maintained for deriving profit center/segment information on main and sub transactions through use of CO Account assignment key.
    Issue:
    The issue we are facing now is that, while writing off (FP04) any FICA document which has a profit center/segment information, we are able to write it off. But any FICA document which does not have segment information, we are getting the error "Segment Missing"
    Probable Solutions:
    1) Tried maintaining the  value as "2" (Account Assignment) at the following node:
    FICAIMG-->Business transactions--> Define specifications for Write-offs
    This solution did not help us in writing off the FICA document
    2)Custom logic in event 5030?
    Custom logic can be maintained in the FM at event 5030, where we should be able to derive the profit center/segment info. based on the business area
    Please let me know if any other options can be tried and also if the custom logic at event 5030 should help us resolve the write off issue?

    Hi, I have the same laptop and had the same problem.
    I have solved it by adding the following arguments to the kernel command line:
    acpi_osi=Linux acpi_backlight=vendor
    Note: acpi_osi only did the trick, but then the backlight service fails. acpi_backlight fixes the service.

Maybe you are looking for