BAPI or FM for Invoice made for sales order...

Hi Experts,
Is there any BAPI / FM for Invoices made for sales order for the month or date wise, party wise, etc.
I want to make a report invoices made during the given period for sales order.
Yusuf.

check this BAPI to get invoice details
BAPI_BILLINGDOC_GETDETAIL.
see the documentation to know how to use.
Regards
Peram

Similar Messages

  • BAPI for Packing proposal in Sale order

    Hi,
    I am currently using BAPI_HU_CREATE, BAPI_HU_PACK and WS_DELIVERY_UPDATE_2 to update packing in delivery.
    Is there any BAPI to do packing proposal in sale order ? BAPI_SALESORDER_CHANGE does not have any tables for packing
    Thanks

    Hi,
    I have already used the same BAPIs for packing and i am able to update packing in delivery using WS_DELIVERY_UPDATE.
    But in case of sale orders, i can use BAPI_HU_CREATE and BAPI_HU_PACK....to pack
    But what BAPI i should use to update the sale order ??? BAPI_SALESORDER_CHANGE does not have any tables to pass packing proposal data !!
    Thanks

  • How does the delta works for changes made to Sales Document

    Hi Experts,
    How does delta for 2LIS_11_VAITM for the changes made to Sales Order Header.....
    Example:
    If a sales order had 10 line items any changes at the item level are captured by 2LIS_11_VAITM
    Could you please update me on how the changes made at Sale Order Header level like Change of contract Date...etc
    Does those changes are captured by 2LIS_11_VAITM.......
    Please update

    Hi,
    SAP written lots of programs inside the Extractor, so it is not possible to tell how it will work, so you goto RSA2 in ecc and give the datasource and click on display and see the Function module and debug it you will know.
    Thanks
    Reddy

  • Is it possible to create a actual invoice auntomatically for Internal Requisitions/ Internal Sales Orders

    Currently customer has some regulations in other countries that require they create a actual invoice for Internal Requisitions/ Internal Sales Orders.
    Is there a way that these can be created automatically and emailed to specific users?
    Thanks,
    Ling.

    Pl post in the Financials forum - Financials

  • Tcode for displaying the changes made to sales order

    hi,
    i want to know is dere any tcode which displays how many times and by whom and what are the changes made to sales order.

    hiii
    use VA03 for display..
    also refer to following link
    Regarding 'display of changes in the sales order'.
    regards
    twinkal

  • Invoice for a Patially incomplete sales order

    HI all,
    I have a sales order with say 3 line items. 1 line item has pricing incompletion and the rest 2 items are complete. i save the sales order with the incompletion. Then i create delivery for the 2 line items that are complete and post the PGI. The system allows me to do so and it is fine.
    The problem comes when i try to invoice this delivery that has the completed items. It says that Sales Order number ##### has pricing incompletion. This makes me wonder why? I am invoicing the delivery which does not have that incomplete item. Why will the system look for incompletion from the sales order?
    After looking into the Delivery to Invoice copy ctrl routine 004 at the item level, i found that it also checks for the pricing status of the reference sales order.
    Has anyone faced this problem? Is there any other way out that modifying the routine?
    Thanks
    AriBis

    Hi,
    I understand but why the Sales order should be incomplete with regards to pricing? Normally pricing is finalised before the Order is received.
    If it is due to some other reason e.g. availability of material, system will not stop you to create the Invoice.
    ALSO I feel that since pricing from Sales order flows only into the Invoice and not in the Delivery document, so pricing at the Sales order has to be complete for creation of Invoice. 
    Another solution to this problem can be: change your Incompletion procedure so that pricing is not checked. But again this is not the best practice.
    Regards,
    Peeyoosh.
    Edited by: Peeyoosh Jain on Sep 28, 2009 11:02 AM

  • BAPI for Creation of return sales order

    Folks:
    I have to create return sales order through BAPI from Billing document. I am using BAPI "'BAPI_SALESORDER_CREATEFROMDAT2" and giving billing document as reference document and sales order is created and billing document data is but the document flow is not updated. I mean to say that billing document and in original sales order  the return order is not reflected in document flow. Can somebody tell me which BAPI i can use to create  return sales order and it updates document flow as well.
    Thanks!!!!

    Hi,
    CALL FUNCTION 'BAPI_CUSTOMERRETURN_CREATE'
              EXPORTING
                return_header_in     = wa_return_header_in
                return_header_inx    = wa_return_header_inx
                testrun              = p_testrun
              IMPORTING
                salesdocument        = wf_salesdocument
              TABLES
                return               = it_return
                return_items_in      = it_return_items_in
                return_items_inx     = it_return_items_inx
                return_partners      = it_return_partners
                return_schedules_in  = it_return_schedules_in
                return_schedules_inx = it_return_schedules_inx
                return_text          = it_return_text.
            wf_exp_vbeln = wf_salesdocument.
    Hope this helps you,
    Regards,
    Abhijit G. Borkar

  • Authorization for Change Conditions in Sale order or Billing document

    Good Morning
    In my scenario we have same pricing procedure for sale order and billing document. My requirement is to enter one condition manually in sales order.
    I want a specific user to enter this discount condition for a specific distribution channel only manually only in Sales order, not in billing document.
    Now here are some problems i am facing now.
    We have to make this for one user and for one distribution channel only.
    I can't use transaction variant to make condition tab in display because all users are allowed to enter freight condition manually at the time of invoicing.
    I have tried authorization object V_KONH_VKS but its not working. This is for maintain condition record not for entering in sales or billing document manually.
    Please suggest me is there any standard way to do this or should I go for ABAP?
    I prefer to do this with authorizations control. ABAP will be the last solution.

    I have a feeling that via PFCG,  this can be controlled and of course, with the object what you had indicated and Activity type.
    Create two roles one for maintaining manually in sale order and the other one for display.
    In one role, the activity can be 01 with TCode VA01 and VA02 and in the second role, the activity can be 03 with transaction VF01. Your basis guy should be able to do this so that the requirement can be achieved.
    thanks
    G. Lakshmipathi

  • Function module for deleting the perticular sales order

    Hi Experts
    I wanted a function module name for deleting the perticular sales order document ,when i enter the import parameter as sales order no  and some value as export parameters so that i can use that for the program (message :successfully deleted ).

    Hi Satya,
    Use BAPI BAPI_SALESORDER_CHANGE as follows:
    DATA: T_RETURN LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    DATA: BAPISDH1X LIKE BAPISDH1X.
    PARAMETERS: P_VBELN LIKE VBAK-VBELN.
    *SET THE DELETION FLAG
    BAPISDH1X-UPDATEFLAG = 'D'.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
    EXPORTING
    salesdocument = P_VBELN
    order_header_inx = BAPISDH1X
    tables
    return = T_RETURN
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    Hope this will help.
    Regards,
    Nitin.
    Edited by: Nitin Karamchandani on Dec 8, 2008 8:36 AM

  • Free finish goods for certain level of sales order amount.

    Hi Gurus,
    I want to add some free finish goods if the sales order amount is greather than a certain amount for OR sales order type
    For example : if the sales order net amount is greather than 1000 - I want to automaticaly add a FG - 347234FG .
    Is it possible without having SAP retail module ?

    Khaled is right for details refer to sap help page:
    http://help.sap.com/saphelp_46c/helpdata/en/dd/55fa68545a11d1a7020000e829fd11/frameset.htm
    Good luck!

  • Pricing For Text Item in Sales Order

    Hi ,
    How to give price for text item in sales order.
    With regards.
    Afzal

    Hi Afzal,
    consider to create a single service material as a generic one, type DIEN, with basic data and sales org views, with  item category group LEIS (it will determine item category TAX in sales order). Material description could be "Don't forget to change me!" so in sales order user remembers to changes the description according to the especific sales order requirements.
    Regards,
    JM

  • !!!How to restrict user for making  changes in Sales order , partner level

    Hi all,
    Can anybody tell me how to restrict user for making  changes in Sales order  at partner level, is it through user exit?

    Hi Ruchi
    I hope u had gone to the screen fields which u want them not to be editable. So there u select all the fields contents which u do not want to to be changed and check the boxes with W.content and Display and save it. Once evrything is done u have to activate the particular transcation going in to the standard variants and put the name and click the activate button.
    Hope its clear
    Reward if help ful
    Sri

  • COGS determination for Free of cost sales order

    Hi All,
    We have an issue regarding the COGS determination for Free of cost sales order. We created a free of cost sales order. But i need to know whether this sales order items will hit to COGS or not? If so how do i check whetehr its has been charged to COGS or not? and we have an issue raised saying thst one material in this sales order has not being charged to COGS. So please help me to solve this issue. Ihave checked the account assignment in GBB-VAX. And is there anyting to do with the settlement profile for COGS determination?.
    Thanks and regards
    Uday

    Hi,
    During PGI a material document and accounting doc gets created which would hit COGS account.
    You're talking about one specific sales order in which for one material it didn't hit COGS account or any order you're creating now with that material has an issue? If its a specific material which has an issue always..then something is wrong with that material master setup. Also you can go to the reported Sales order--doc flow to the PGI document and check the accounting doc and if its not posted..check the analysis why its not posted?
    And if its one off then I would suggest 2 options:
    1) Reverse the goods movement, cancel the delivery or if billing has already been done..cancel the billing as well. And re-do the cycle. This always ensures correct posting.--> Recommended option.
    2) Manual adjustment in FI.
    And settlement profile is Controlling concept..not sure you would get any help on this in this forum.
    Regards
    RS

  • Regarding Tolerance Keys for Invoice Block For Payment in MIRO

    Hi all,
    In customizing, I have defined Tolerance Keys for Invoice Block for Payment. I have defined all tolerance keys for my company code ...... with Absolute as well as Percentage Limits. But whenever I am doing MIRO & testing for my Block Codes effectiveness, i am finding that everytime my Invoice gets Blocked by Tolerance Key PP(Price Variance) or by date......but not by any other like BD, BW, KW etc. Can anyone help me as how I should check for this. I even tried to study the documentation part available in customizing, but was unable to understand the term like Order Price Quantity units.......Can anyone help me in understanding this thing ........
    Regards.....

    Hi Ganesh,
    below is the user exit where you can check the tolarance and put the Block according to the your requirment.
    User Exit name - MM08R002 -User exit for tolerance checks
    in the above user exit you have to use  the below Function exit.
    1) EXIT_SAPLMRMC_001
    2) EXIT_SAPLMRMP_001
    we implemented the above user exit to put the payment block based on the checks.
    You can find the documentation of the above exit in the system.
    Thanks
    Naresh

  • Hi, I followed the instructions to apply for the Made For iPhone Program. After submission of the necessary documents and information, I have not heard back from Apple. How to track the application progress? Can someone help?

    Hi, I followed the instructions from Apple MFI website, to apply for the Made For iPhone Program. After submission of the necessary documents and information, I have not heard back from Apple for couple weeks. How to track the application progress? Can someone help? < Edited by Host >
    Thank you.
    Best Regards,
    Gerald

    Hi Gerald
    This is a user-to-user forum, and your message will not be received by Apple. You will need to sign into your Developer/MFI account, and contact Apple that way. This can be done here.
    P.S Please do not post your e-mail address here.
    Taylor

Maybe you are looking for