BAPI to copy the FI reverse documents and post the actual documents

Hi,
  We are facing a issue where I need to copy a FI (FB03 ) reversal document and do the actual posting document.
Regards,
Ankit Gupta

Hi MUkesh,
If you would like to delete multiple documents then it is not possible.  Check OSS note 849742.
Please find the Note details below.
Summary
Symptom
You want to delete several physical inventory documents, but this involves too much manual work, as the documents must be deleted individually in MI02.
Other terms
MI02, delete physical inventory documents, SHDB, recording
Reason and Prerequisites
In the standard version, you can only delete inventory documents individually using Transaction MI02. A mass transaction or BAPI currently does not exist, and none is currently planned.
Solution
You can use standard functions to create a program that can delete several physical inventory documents at once. To do this:
1. In Transaction SHDB, create a new recording using MI02.
2. Also in SHDB, create a function module from the recording.
3. Create a program based on this function module. Define the selection screen based on your needs. You can also create your own transaction for the program, if necessary.
And I see the only way to delete the documents as per my knowledge is just MI02
Edited by: Raj on Jul 30, 2010 5:01 PM

Similar Messages

  • What are  Pre Database Copy and Post data base copy activity list, Pre Migration and Post Migration activity list from SAP BW 7.0 to SAP BW 7.4 SPS6.

    BW on HANA :  Pre Database Copy and Post data base copy activity list, Pre Migration and Post Migration activity list from SAP BW 7.0 to SAP BW 7.4 SPS6.
    We are trying to copy database from SAP BW7.0 to SAP BW on HANA 7.4 SPS6 so we are in search for list of steps or activities during database copy both pre and post steps.
    Along with the above we are in search of Pre and post migration steps ones database is transferred successfully from oracle to HANA on 7.4 SPS6.
    Kindly help us in getting the exact course of action as requested.
    Thanks and Regards,
    Lavina Joshi

    Hi Lavina,
    try this link for starters: Upgrade and Migration - BW on HANA | SAP HANA
    Points to remember are:
    Preparation:
         -- Hardware Sizing
         -- Preparation of Data Centres
         -- HANA Hardware preparation
         -- System Landscape Readiness (upgrade software downloads, system readiness checks, etc)
         -- House Keeping activities on BW system (data clean up, etc)
    Post Installation:
         -- Sanity checks / Preparation and License checks
         -- JAVA Configurations
         -- Infoprovider conversions 
    Overall Stages are described below:
    # Environmental setup (HANA box)
         -- Initial system checks and Building Activities (system copy, Appln server setups, etc)
    # System readiness
                   - ZBW_HANA_COCKPIT Tool
                   - ZBW_HANA_CHECKLIST Tool
                   - ZBW_ABAP_ANALYZER Tool
                   - ZBW_TRANSFORM_FINDER Tool
                   - SIZING Report
                   - System Clean up Activities
                   - Impact of 7.4 on source system checks
                   - Java Upgrade for portal
    # DMO Stages
                   - Preparation & Pre Migration checks
                   - Execution / Migration
                   - Post Migration Activities
    # Testing Phase
                   - Source system checks/Activities
                   - System and Integration Testing
                   - End to End Testing
                   - Performance testing
                   - Reports
                   - BO reports / Interfaces
    Do let me know if you require any further information.
    Regards,
    Naren

  • Copy the Actuals in Plan version with Incremental Factor

    Hi
    We have a requirement wherein we want to copy the Actual Figures add the incremental percentage of 3% & then copy to Plan version in Cost Center Planning
    Is there any standard fuctionality which help me do this transaction
    Regards
    Ash k

    I haven't tried but think there's this is standard way using revaluation.
    Use T Code KSPU and choose menu Extras>Revaluation>Create. Mention the CE's, period and percentage.
    In the initial screen select this revaluation, copied over plan values version and execute.
    Regard
    Sreenivas

  • Bapi to copy the PO line item below the existing PO line item

    Hi All,
    I am new to work on BAPI, Can any one help me out,
    Requirement is to copy the PO line item below the existing PO line item (Replicate the line item for returns purpose) . So is there any bapi to do this task.
    Thanks in Advance
    Pallavi
    Moderator Message: Please employ the SAP procedures to identify the right BADIs and Exits and help yourself.
    Edited by: kishan P on Nov 16, 2010 1:56 PM

    Hi,
    What i think is you should use two BAPI one is BAPI_PO_GET_DETAIL to fetch existing details of line items and then BAPI_PO_CHANGE to create s second one.
    Nabheet

  • CIN - Excise Invoice - Cancel Reversed Invoice and Post New Invoice

    I need to Cancel the Excise Invoice posted for return delivery 122 document, and post a new one.
    The client says he has already cancelled the invoice, and posted another one.
    Now, same return delivery document has 2 Excise Invoices. But the one I am seeing in Excise Invoice tab of MIGO Display is the Excise Invoice with Reversed status.
    When I display the reversed invoice in J1IS - it says "Document is Reversed". Does that mean Cancelled?
    We need MIGO to show us the new Excise Invoice for this return docuemnt, not the reversed one. Kindly help.

    "Have you created Excise invoice for other movements (122) in J1IS and posted the same through J1IV."
    Yes. Invoice No. 2391 is created and posted for return delivery document 5000052046
    "What did you see in 122 Material document header in Excise tab Status after cancellation of Exicse invoice?"
    For 122, the first invoice # 2317 was never cancelled. It has reversed status. "Document is reversed" is showing in Invoice Display through J1IS. Also, in MIGO for return delivery document 5000052046 - STILL the reversed invoice # 2317 is mentioned. Although 2391 is the new invoice posted for the same return delivery document.
    "Have you tried creating J1IS again after canceling the Excise invoice? What systems says then"
    No invoice has been cancelled yet. I don't know how to cancel without cancelling the 122 Mvt material document.

  • Using PowerShell to Copy the content of a Word Document and Paste that content into a New Message in Outlook

    So, I'm a little new to PowerShell and I came across a PowerShell which allow me to copy the content od a spreadsheet, into the new message in Outlook 2007.  I have search and search on a way to do the same with a Word Document.  I would like to
    create a PowerShell Script that copies the content of a Word Document and paste that content in an email message.
    I am basing my script on this
    #Create and get my Word Obj
    $w1 = New-Object  -comobject Word.Application
    $w1.Visible = $True
    $UserWord = $w1.Workbooks.Open("C:\Users\hhhh\Documents\Powershell\test.docx")
    #create outlook Object
    $Outlook = New-Object  -comObject  Outlook.Application 
    $Mail = $Outlook.CreateItem(0)
    $Mail.SentOnBehalfOfName = "[email protected]"
    $Mail.Recipients.Add("[email protected]")
    #Add the text part I want to display first
    $Mail.Subject = "Test email"
    $Mail.Body = "My Comment on the Excel Spreadsheet"
    #Then Copy the Word using parameters to format it
    $Mail.Getinspector.WordEditor.Range().PasteExcelTable($true,$false,$false)
    #Then it becomes possible to insert text before
    $wdDoc = $Mail.Getinspector.WordEditor
    $wdRange = $wdDoc.Range()
    $Mail.Display()
    Any Help would be great!

    My requirements are the Word documents are a template of sorts.  The document will be changes prior to its email with some changes.  The other twist is that the customer might more that one recipients, and each recipient will have to have a separate
    email, with the same content of the word document. 
    For example: Say I'm doing maintenance. The Word doc might descript that maintenance, in a set format. Once save the script is run to generate 3 to 10 email with separate recipients with the body of the email containing what was in the Word document.

  • Identifying the orginal Doc for reset and reverse documents

    hi,
    When there is a cheque return from the customer, what is the practice is to reset and reverse the original receipt posted in the system. but the issue is once the original document is reset and reverse there is no way of identifying the invoice details of the receipt created (f-28). Please some one help to find out those details.
    Thanks and Regards
    Gayani

    HI,
    Up to that point ok, say If i reverse the receipt and from the reversal document number I can see the "reversed with number" but the issue is I want to know the payment usage (original documents) of the "revered with number".
    Say There is receipt document number 1800000000
    and the bank return this cheque, so I want to reverse the receipt number 18000000, so I use the transaction FBRA to reset and reverse the document. but the customer want to know the original documents (invoice) of the receipt number 180000000?
    I can not get those information from the system
    Gayani

  • How do I copy a few lines from a pdf document to a Word document?  I'm not looking to convert the whole document, just need to copy a few lines here and there.

    How do I copy a few lines from a pdf document to a Word document?
    I'm not looking to convert the whole document, just need to copy a few lines here and there.
    ps.  Wow, what a user UNFRIENDLY site this is!

    In most cases you can just select the text and copy/paste. You can do that unless the file is a picture/scan.

  • I want to copy the contents of an active window i LabView and paste that into a Word document programatically

    I am developing an analyse program which produces a large number of results and graphs for each file. These results are presented in different windows one at a time.
    It is possible to programmatically generate these windows and print each window before generating the next one. I would like, however, to be able to generate one window, copy it to the clipboard (Alt+Printscreen), (this function is available through knowledgebase), and then paste the contents of the clipboard into a word document. This second step is the problem. By this way a large number of analyses can be done and all the results and graphs will be copied to one Word document
    for later study.
    Has anyone any idea how to do this?

    You can use ActiveX to paste anything that is in the clipboard into a word document, just follow the logical flow, application, documents, add, paragraph, last, range and paste using property nodes.
    Hope this helps

  • How do I highlight and copy material from one document to another by using keyboard commands? The tool bar is not appearing as it typically does.

    How do I copy material from one document to the next by using keyboard commands.  I am copying from Word into and external database and the external system seems to be covering my tool bar from which I would typically click editing shortcut commands.

    Highlight what you want to copy, then command - C. To paste, select where you want it to go, then command - V.

  • Is there a BAPI that gives the status information (and possibly more) of a

    Hi All,
    We are using an external document image system where we scan and code vendor invoices. They are send to our SAP system via a BAPI.
    We want to update the status of the invoice in the document image system from the status in the SAP system, so whether it is still open or has been paid and cleared. Is there a BAPI that gives the status information (and possibly more) of a specific vendor open item?
    Regards,
    Gerrit

    Are you sure about that? Several highly regarded, widely downloaded apps, e.g., eReader, have an option to hide the status bar. The developer forums are awash in discussions about the commands to hide the status bar-- it's built in to the SDK.
    I figure someone will have put out a small program that does nothing but hide the status bar or allow its tweaking... much like StatusBar does on the Palm OS 5 PDAs...

  • Can you copy the Temperature in Delivery Note to Bulk Shipment document?

    Is there a way to copy the temperature inputted in the "Qty in Alternate UOM" tab in the item details of the Delivery Note to the Bulk Shipment document during the Change Loading confirmation process?
    One of our process requirements is to be able to copy the Material temperature and test temperature parameters, among others, from the delivery note to the Shipment document during O4G1 (change loading confirmation). We can only access until the Delivery Note, and then an automation in the system takes over, hence we cannot make changes in O4G1.
    What happens here now during O4G1 is the system does not look to the delivery note for whatever temperatures have been entered, but rather it looks back at the O3DEFAULTS table. The problem with that is, during the day, some temperature information can be updated, while O3DEFAULTS is updated perhaps only once a day.
    Is there a configuration setting that I can check?
    Thanks.

    Hi there,
    I do not think that there is standard way to copy additional quantities (Qty and temp data) from outbound delivery doc but I think you can do this thru custom developement like implementing BADI and add new tab "Qty in Alternate UoM" and get the data from LIPSO2 table. We have applied same approach on our TSW Nomination to display some additional data outside standard process.
    Hope this may help.
    Regards,
    RS

  • Posting date is wrong in the reversal document in FI document

    Hi All,
    We have one issue related to Posting date. We need your valuable feedback on the same:
    Issue:
    There are some documents which reversed in the month of Mayu20192010 but the posting date is coming as Marchu20192010 which is very strange.  The Original documents posted via transaction code F110 in the month March and reversed in the month May but the posting date of the reversal document is coming as March which is NOT correct.
    Analysis:
    Our first analysis is that, the posting of Original document happened when the system was in 4.6 version and reversal happened after ECC go live. We are not sure if that could be the reason.
    Secondly, we checked the change log of transaction code OB52 but there is no change for the posting period 3 in the month of May.
    Thirdly, we tried to replicate the same scenario in our development system but here we are getting the error that Posting period is not open which is correct.
    Request you to please look into it and provide you input.
    Thanks.
    Regards,
    Ajay Kumar Tiwari

    Hi,
    By any chance, did the user enter march date in FB08 screen ?
    Best Regards,
    Madhu

  • Reversing the reversal document

    Hi,
    I have an request, User had done stock transfer for example A to B(Plants) with a given document no and with mov type 641.And again  he had reversed the document by mov type 642.
    Now he want to reverse the document from mov type 642 to mov type 641 ,
    the question, is how TO REVERSE THE REVERSAL DOCUMENT AND HOW IT CAN BE DONE.
    We have tried by going into vl02n screen but unable to change the movement type as it not in display mode.
    Try to help me out.
    Rgs,
    Tilak.

    Hi
    You have reversed the movement type 641 to 642, means you have reverse the PGI.
    Now to again change the movement type from 642 to 641 you do the PGI of same delivery.
    Manually you can not change the movement type in Delivery document. Movement tYpe 641 will transfer the stock of material in Transit, and its reverse is 642 which will again take the material from Transit stock to Unrestricted Stock.
    Hope this will resolve your issue and clear your doubt too.
    Regards
    AA

  • Reversing & Resetting The Reversed Document using FBRA

    Hello All,
    Our client by mistake reversed a payment document while doing MR8M. Now they want to reverse the reversed document.
    I have tried FBRA again for the reversed document and it worked out and a new document got posted.
    Now let the orginal document be A which is reversed and reset using the document B.
    Due to wrong reversal of A again we used FBRA and posted document C which in turn reversed and reset B.
    Now if you check the orginal document A is available as an open item , earlier which was a cleared item. I want to know how can we make in back to a cleared item
    Regards
    Arun

    Hi All ,
    Thanks for the responses.
    My issue is resolved.
    Steps followed are.
    1. First rest and reversed the reversal document in FBRA. --> At this time the orginal document has again appeared in the line items as an open item.
    2. It was also identified that along with the orginal document which appeared as open item all the items which was cleared using the orginal document also became the open item.
    3. Now we have made the manual clearing of the line items uaing the transfer posting with clearing
    Regards
    Arun

Maybe you are looking for