Free item contained saleorder showing  openorder after released to accounts

Dear Consultants,
                       Created a sale order with normal item with free offer.Free Item category is TANN.After the sale order is created
  and saw the overall status in va02 it is open.It is OK.
      If i do delivery for the sale order there is no problem in saving.Delivery number is generated.
Now if check the open sale order in VA05N it is showing this order in open.(Now in VA02 if i check the overall status of the items normal item is showing status complete but free item is showing Overall status as being processed.
When this problem  is raised open orders ratio is increasing in VA05N.
Pl show me a solution at the earliest.Useful answer is awarded without fail.
This is an immediate requirement.
Edited by: akdevavarapu on Jun 25, 2010 6:27 AM

Hi,
Check if you have userexits running that handle the data of status, for instance, USEREXIT_MOVE_FIELD_TO_VBEPKOM
in the include MV45AFZB or FORM USEREXIT_MOVE_FIELD_TO_VBEP in include MV45AFZZ.
I hope this helps you
Regards
Eduardo

Similar Messages

  • Vendor open items report without page break after changing vendor account

    Hi,
    I would like to get the vendor open items report without pagination when the vendor account changes.
    The option of deleting the * mark in the Filter page is not valid for me, because this way the vendor's name dissappear. I mean, it would be ok if I could show in the output of the report the name of the vendors.
    Thanks in advance.

    HI,
    If I understood your issue correctly then in the report S_ALR_87012085 is a field "Summarization level (0-4)" in the output controls.
    You just have to set this field to the value '2'.
    When you set the field to two, the page break will first executed, when the page is "full".
    If you want to see information about the "Summarization level (0-4)" field, you just have to set the cursor in it, and press F1.
    I believe this answer solve your problem.
    Please assign points if it useful.
    Regards
    Ravinagh Boni

  • Invoice Error(Releasing to Accounting)

    hi guys
    when i create invoice and after releasing to accounting error message comes
    Error message
    No account is specified in item 0000001006
    Message no. F5670
    Diagnosis
    No account was specified for account type "S" in item "0000001006" of the FI/CO document.
    System Response
    The Financial Accounting program cannot process the document.
    Procedure
    A system error has probably occurred in the application you called up. Check the data transferred to item "0000001006" of the FI/CO document.
    solutions pls
    regards
    srinivas.

    Dear Srinivasarao
    Please check in the following areas:-
    1)  Configuration in transaction VKOA have been done correctly by assigning G/L Account
    2)  In VA03 - Goto - Header - Financial Accounting - Field name: Account Assignment Group have been filled in automatically
    3)  In VF03 - Goto - Header - Header - Field name: Account Assignment Group have been filled in automatically
    thanks
    G. Lakshmipathi

  • Credit card invoice releasing to accounting with out payment card plan

    Hi
    We have an issue with respect to invoice. For an order with credit card, billing document type F2 is created but it doesn't have any payment card plan at header level but does have payment card plan at item level.But the invoice is released to accounting .
    We were under impression that when payment card plan is not copied in billing document the invoice get stuck in "payment card error " and not released to accounting.
    So please let me know if some body has an idea about the process and what kind of checks are done before releasing to accounting.
    Regards
    Veerendra

    Big ticket items no matter what carrier you'll have the same issues. With the out of orders happening to contact every customer is a pain staking effort for any company. If the demand wasn't so high then it would be plausible.

  • Cannot see transported items in Queue, even after releasing them.

    I cannot see transported items in Queue, even after releasing them. When Iam in transaction: SE09, I am able to see all the released objects, and the check marks next to each one which looks good...Where are these files? Under usr/sap/trans, they show up under logs with nothing in them except log data...Not in Cofiles & datafiles either.
    Any input would be greatly appreciated.
    Alan

    Hello Jazz!
    Our developer released them, and I will get more details from him. We can see them when in SE09/10. Just cannot see them in the import queue? Also can't find the files under: usr/sap/trans, except the logs???
    We just want to find these files, and either zip them up, or put them on a CD for later use, and this project will wind down soon.
    Any other suggestions on how we can find these files, as all exports normally show up in usr/sap/trans/data, and cofiles...but not in this case???.
    Thanks Again,
    Alan

  • BAPI_SALESORDER_CREATEFROMDAT2 is not updating the ITEM Qty after Free ITEM

    Hi,
    I am using BAPI_SALESORDER_CREATEFROMDAT2 to create a order.We have customization for populating a FREE ITEM for a Order ITEM.
    Now the Problem is that .....if I am passing more then one Material as ITEM it is not updating the next ITEM Qty and also not populating FREE ITEM afterwords first one.
    Please help me.
    Regards
    Ricky

    Hi,
    Find below the code :
      read table i_table_t into lwa_table_s index 1.
      if sy-subrc eq 0.
    *Order Header
        lwa_ord_head_in-doc_type          = 'ZSO'.
        lwa_ord_head_in-sales_org         = '1000'.
        lwa_ord_head_in-distr_chan        = '10'.
        lwa_ord_head_in-division          = '10'.
        lwa_ord_head_in-req_date_h        = lwa_table_s-delivery.
    *Order Header Update
        lwa_ord_head_inx-doc_type         = 'X'.
        lwa_ord_head_inx-sales_org        = 'X'.
        lwa_ord_head_inx-distr_chan       = 'X'.
        lwa_ord_head_inx-division         = 'X'.
        lwa_ord_head_inx-req_date_h       = 'X'.
        lwa_ord_partners-partn_role       =  'AG'.
        lwa_ord_partners-partn_numb       =  lwa_table_s-sold_to.
        append lwa_ord_partners to lt_ord_partners.
        if lwa_table_s-ship_to is initial.
          lwa_ord_partners-partn_role     =  'WE'.
          lwa_ord_partners-partn_numb     =  lwa_table_s-sold_to.
          append lwa_ord_partners to lt_ord_partners.
        else.
          lwa_ord_partners-partn_role     =  'WE'.
          lwa_ord_partners-partn_numb     =  lwa_table_s-ship_to.
          append lwa_ord_partners to lt_ord_partners.
        endif.
        lt_table_it_t = lwa_table_s-zsd_table_it_t.
        loop at   lt_table_it_t into lwa_table_it_s.
          lwa_ord_items_in-material      = lwa_table_it_s-matnr.
          lwa_ord_items_in-plant         = wa_table_s-plant.
          lwa_ord_items_in-target_qty    = lwa_table_it_s-qty.
          lwa_ord_items_in-comp_quant    = lwa_table_it_s-qty.
          append lwa_ord_items_in to lt_ord_items_in.
          lwa_ord_items_inx-material     = 'X'.
          lwa_ord_items_inx-plant        = 'X'.
          lwa_ord_items_inx-target_qty   = 'X'.
          lwa_ord_items_inx-comp_quant   = 'X'.
          lwa_ord_items_inx-updateflag   = 'I'.
          append lwa_ord_items_inx to lt_ord_items_inx.
    Schedule Line Information
          lwa_schedule_lines-sched_line  = 'X'.
          lwa_schedule_lines-req_date    = lwa_table_s-date_del.
          lwa_schedule_lines-date_type   = '1'.
          lwa_schedule_lines-req_qty     = lwa_table_it_s-qty.
          append lwa_schedule_lines to lt_schedule_lines.
          lwa_schedule_lines_x-updateflag = 'I'.
          lwa_schedule_lines_x-sched_line = 'X'.
          lwa_schedule_lines_x-req_date   = 'X'.
          lwa_schedule_lines_x-date_type  = 'X'.
          lwa_schedule_lines_x-req_qty    = 'X'.
          append lwa_schedule_lines_x to lt_schedule_lines_x.
        endloop.
    Here I am getting First Item and it's free configured Item perfectly for the Qty 1.
    But when I pass more then 1 Qty or Multiple ITEMS it is not populating other respective free configured ITEMS with them.Also IT is not updating the other ITEM Qty other the first one.
    For Example:
    Item  No      ITEM            Qty           .......
    10             ITEM1           1 EA        ..........
    20             FREE1          1 DAY     ..........
    30             ITEM2            0             ..........
    40             ITEM3            0             .........
    In above example After 30 and 40 two Free ITEM should be generated with 1 Day and for Qty 1 EA
    Regards
    Ricky

  • Dletetion of line item in PR after release..?

    Hi all
    Can anybody explain me ,
    I have created PR with 8 line item nad PR is released , now i want to delete 1 lint item in that PR after release ..?
    Pls explain me som solution to rectify this problm..
    Thanks
    sap-mm

    Hi mm,
    Please Let me know that your pr is overall released or Item wise released.
    Go to ME54N Individual Pr release and Select the Line item which you want to set the cancel release and Revoke it and save.
    Reg,
    Ashok
    Please Close all your issues, if solved.

  • Unrestricted sharing of free* items from iTunes Store

    We are trying to find a legal but convenient way of managing our family iTunes purchases and sharing.
    We are just beginning to use iTunes on a couple of new Macs, three iPads or iPod Touch devices and two old PC's.
    We have a home Wi-Fi network with a network drive, where we can store items to be shared.
    The children in a few years will move out and will take their music, e-books, etc. with them.
    Our Internet connection is slow we would like to avoid downloading the same free item from the iTunes Store to libraries associated with different Apple ID's.
    We want everybody to eventually have his/her own copy of our home videos and voice memos recorded on portable devices, which can be further shared without any restrictions.
    I understand that some of the rules that Apple set for iTunes users are as follows.
    1. Every item purchased from iTunes Store is marked with the ownership information i.e. information about of the account it was purchased from. (The account is identified at any given time by a unique Apple ID.)
    2. The ownership information on an item can not be changed, i.e. I cannot give an item to somebody else, declining to use it any more, and transferring the item to that person's iTunes library associated with that person's iTunes account.
    Question 1: Are the statements 1 and 2 above correct and precise?
    Question 2: Does the same apply to free items (iTunes U, e-books, iPod/iPad apps) from the iTunes store? (it is painful to download the same free item to different accounts over a slow Internet connection.)
    Question 3. Does the same apply to music imported into iTunes from a CD?
    Question 4: Is it true that in order to allow the kids to take their items with them when they move out, one has to make sure that the items
    have been purchased from iTunes accounts associated with their own Apple ID's and placed in their separate iTunes libraries?
    Question 5: If I add our home videos and voice memos to my iTunes Library associated with my iTunes account, and do not retain other copies, will it be possible to copy such items to libraries associated with other Apple ID's without any restrictions? Will it be possible to extract such items from iTunes?
    Question 6: As long as we are using the same Wi-Fi, can we share music, video,  ebooks from libraries associated with different Apple ID's? I believe so, but please confirm. What are the restrictions? Is it helpful to place an iTunes library on a network drive?
    Question 7: I believe the same iTunes library can contain items purchased through different iTunes accounts; also there can be multiple iTunes libraries associated with the same iTunes account. Are such options useful and would they help in managing family purchases and sharing?
    Question 8. I noticed that a portable device can sync (download) items from only one library. Different persons have apps and music from different libraries associated with their own Apple ID's. We would like them to have also on their portable devices the same free e-books and home videos or voice memos. Do we have to copy such free e-books and voice memos to all the different libraries?
    These must be questions many familes ask, but I could not find a precise and comprehensive answer despite browsing the web for several days.
    Could you please help?

    No. It said nothing about authorizing a computer. I only have one I-Pod and one computer with my library on it. I have listened to these 4 songs for over one year on my p/c and I-Pod. This is a new one to me. These 4 songs still show up in my "purchased" section of my I-tunes but I cannot play them and they will not
    copy to my I-Pod. I see where I can repurchase these songs at the I-tunes store, but don't want to pay for them twice. What do you think is going on? Thanks.

  • Sales Order Free item and Credit Limit Checking

    Hiii Guys,
    need your help,
    How to release Sales Order free item when credit limit exceeded ?
    Here some info :
    Customer : ABC
    Credit limit : 50,000.00
    Credit Exposure : 52,000.00
    Risk Category : 003 High Risk
    My user want to create sales order for free item for customer ABC, the customer abc credit limit already exceeded .and the item in sales order not contain any value, it should past the sales order creation. how to allow Free item past the credit limit checking ?

    To reslove this issue,
    I. you can create a new sales order type. for which you make the credit control de-active.
    2. If you can't create a new order type and this cotrol should happen at item category level.
    then try config at the IMG>Sales & Distribution>Basic function>creditmanagement>credit management/riskmanagement setting>Determine Active Receivables Per Item Category.
    Regards/Rakesh Jindal

  • Excise problem in case of free items

    Hello,
    My user is having following issue.
    Vendor has sent 3 items, out of which one is free sample. But on that excise has to b paid by us (which is approx 3000rs). So when user is trying 2 do GR, first 2 items dont hav any problem, but after checking  ITEM OK tab in case of 3rd item(which is free sample), system shows run time error (A value does not fit in a calculation field.)
    What may b the remedy for it. How 2 handle this?
    Thanks.
    Edited by: sapsarang on Oct 29, 2009 6:24 AM

    First if you don't want to take credit of the free sample then follow the below procedure:
    1. Do the GRN for all the three item and for the free item in the excise tab at the item level select the material as non cenvatable. Just remember to add base value of the item
    2.  If you want to capture the Part1 entry then just do the normal transaction and while posting the excise with J1IEX just remove the excise duties for the free item.
    3. For paying the vendor the excise amount, just do subsequent debit in the MIRO and in the details tab add in the unplanned delivery cost the amount that you want to pay for the excise duties
    Second case if you want to take credit of the duties:
    1. Do the Normal GRN process, add the base value and excise values for the free item.
    2. Post the Excise duites with J1iEX.
    3. The with the account entry you can settle the excise payment
    Hope this will help you
    Enjoyyyyyyyyyyy
    Akshit

  • Calculation of sales tax for free item

    Dear SAP B1 Experts
    I have query regarding sales tax calculation for free item .
    For EG.  I have two item for sales (A = 1000,  B = 100)   Sales tax is VAT4%
    But when i am doing sales, i am selling B for free of cost with A for Rs 1000/- 
    here my tax calculation is (1000 *4%)  = 1040/-
    but as per the govt sales tax rule, we are liable to pay the tax for free item as well
    So I this case, In SAP B1 how we will calculate the tax 4% for free item  .
    Please help me.
    Thanks

    i have checked, its working okay, but
    in Invoice print out unit price and line total is showing for free item.  How i make the unite price 0 .
    Tax only calculation is based on the Line total and the line total is based on the unit price.
    in that case when i give the invoice to the customer.
    It should show like this
    Item A       100   * 10         1000
      "    B           0   * 1              00
                                             1000
    4% tax                               44
    Doc Total             =           1044
    thanks
    Regards

  • To check the Free item check box in PO number

    Hi All,
    In the Purchase Order at line item level we have the check box Free item to make Material qty as 0.
    Here my requirement is, to check the check box automatically when the order is created from ME58 transaction for particular vendor. When i checked the fields its showing UMSON but no where its storing the value in the database.
    Please suggest me any user exit or BADI for checking this check box by defualt. Please let me know if any table which holds this value.
    Thanks in advance..
    Regards,
    Sreekala

    hi,
    you can find the chnages made by selecting the condition type and going for the header menu environment--->Header changes.
    this will show the changes made at the header level.
    Regards,
    velu

  • Free item tick automataclly in PO

    Dear Members,
    I have some problem while creating PO. When i am creating the PO "Free Item" indicator is automatically tick.When i uncheck the tick it is showing me the condition tab but when i save the PO again free item indicator is automatically  checked.
    Please suggest where the actual problem is.
    Regards,
    Umesh

    Hi,
    Check if this is because of some USER Exits which are activate for other reasons.
    OR
    If this problem you are facing with some vendors only then check that for particular vendor some plant is assign in vendor master that's may be reason po treating as stock transfer order.
    Thanks..

  • Main Item net value showing as zero by condition type R100.

    Hi Experts,
    I am configured free goods, maintained condition record for exclusive free goods.
    but in sales order free goods item is not populating and when i see the analysis the requirement 55 not met.
    I removed the requirement 55 and i saved it.
    Still in the sales order the  free goods exclusive item not populating.
    and i find that main Item net value showing as zero by condition type R100.
    Why system showing the main item amount as zero by condition type R100?
    Thanks in advance.

    HI ram reddy
    you have to maintain R100 requirement -55 it should be there
    also Alternative Condition Base value - 28(100% discount)
    check your main pricing procedure having conditon type R100 or not if it is not there then maintain
    conditon record in VBN1 for NA00 check all the setting(calculation rule)
    activate free goods pricing correctly(NA0001)
    save it now try
    Regards,
    Krishna.
    Edited by: kris_hna on Jul 14, 2011 11:13 AM
    Edited by: kris_hna on Jul 14, 2011 11:31 AM

  • Inter-company with 'Free Item in Purchase Order'

    Dear Expert,
    In case inter-company, how to create billing document wiht including u2018free item purchase orderu2019. ?
    My case is
    1) Company A issue purchase order (both normal and free item)
    2) Company B issue the delivery order by referring to PO (both normal and free item)
    3) However, when company B issue the billing document, only normal goods is copy to billing document. Free item are completed status after good issues is completed and they do not come in inter-company billing.
    Thank for any sharing

    Both delivery type and item type are the same as normal items.
    The messages from system.
    8500000020 000000 The document is not relevant for billing
    echnical data
       Tech. data details
        Client                                 800
        Group Number
        Sales Document Number                  8500000020
        Item Number of the SD Document         000000
        Schedule Line Number                   0016
        Counter in Control Tables              00
        Message Identification                 VF
        System Message Number                  016
        Output Type                            I
        Message Variable 01
        Message Variable 02
        Message Variable 03
        Message Variable 04
        Group Type                             F

Maybe you are looking for

  • USB not showing up in Finder

    When I insert a flash Drive into a USB port into my MacBook Pro, it doesn't show up in Finder. I am trying to save videos onto the Flash Drive, but cannot find it.

  • Just bought an iBook G4 1.33ghz for $59.

    I was messing around on eBay, lastnight and I bought a iBook G4, 12" 1.33ghz for $59.99. The auction listed that it works and that OS X is included, but never mentioned what version of the OS it was. It's also graded a "C" cosmetically. Here is a lin

  • Quicktime program to show up in my system preferences?

    I just bought the new Quicktime Pro application-  for $30.   I have been sitting here for over an hour and Cannot find out how to download it.   The "downloading steps" first instruct me to go to my APPLE ICON, Select SYSTEM PREFERENCES, and then sel

  • [Help] Get Text Between words!

    Hi, I wanna to Get Text Between words, I'm tring to something like this , can anyone help please ? <?php $data = "<a target='_blank' href='http://www.mysite'>Engineering</a><des>Description</des>          <a target='_blank' href='http://www.mysite'>A

  • DB creation control files

    Hello, when creating an Oracle Database manually. I seem to have trouble with the creation of my control files. When the manual creation fails and i view the error log, it is the control files that it seems to point to. In my initialisation file my c