HU in billing

Hi,
there is one issue with billing :-
the sales order is for 100 pcs for a particular item.
the delivery was made for 100 pcs. However while doing packing, there were ten handling units of 10 pcs each. so in the
packing screen, follwoing is the information available.
HU no           some
                   serial no           qty        
3176890....       90001     10 pcs
3176894....        90002      10 pcs               
likewise there are ten HU  of 10 pcs each.
so in delivery there is a single line item of 100 pcs and it can be split into 10 line items with 10 pcs each and there is
serial no 90001,90002.... and so on corresponding to each item.
the batch no in delivery is same for all the 10 HU.
while doing billing, instaed of creating one line item of 100 pcs, the system shows us  10 line items of 10 pcs each with the top item qty as zero and rest line items shows 10 lines with 10 pcs each.
i want only one line item of 100 pcs in the invoice without doing any changes in current delivery. how to do that.
regards
sachin

Hey Sonu, maybe post this in the (new) SD Billing forum ?
They recently created that

Similar Messages

  • TS2446 My phone want let me download apps I put the password in then it's say billing options which tell me I have invalid security code

    My phone want let me download any apps when I put the password in it take me to billing option which tell me I have the wrong security code and that's the security code that was on the card on the account

    iTunes Store: My credit card's security code or zip code does not match my bank's records
    http://support.apple.com/kb/TS1646

  • My phone wont let me download anything even free stuff or update.it keep saying something wrong with my billing info so i fix it but still cant download.I signed out sign back in still nothing please help i'm getting angry

    My phone wont let me download anything even free stuff or update.it keep saying something wrong with my billing info so i fix it but still cant download.I signed out sign back in still nothing please help i'm getting angry

    If it says your billing info is wrong that means that your credit card issuer is refusing to approve your account. You will have to solve the problem with your bank or credit card company.

  • How long does it take for the warehouse to show a phone as recieved so I can pay my final bill?  I would like to sign up for Verizon again as I am very unsatisfied with my new company but cannot until this is resolved.

    I recently switched to another competitor but would actually like to start from scratch with Verizon but cannot do so because they cannot locate my devices I mailed in to their warehouse.  I switched my whole family's accounts, 3 phones and 1 mobile hotspot, to a competitor to get a cheaper rate and unlimited data but I have not been happy with their service and would like to switch back.  The problem is when switching the first time I was told by a Verizon chat rep that I could send my Edge devices back in and would get credit for them and stop my edge payments which was not the way I know now it is supposed to work.  After a couple of phone calls a supervisor looked at my online chat transcript and realized that I was correct and the rep had told me incorrectly that they would take my edge phones back and give me credit for them and I could close my account by only paying the early termination fees.  She sent me two envelopes to send my two edge phones back in and said they would credit on my account and stop the monthly billing for them once they were received.  I called a couple of weeks ago after being charged 24.99 for the both of them again for the month after my account was stopped.  They said that they had not received my phones and I should have noted the tracking number from the labels the rep sent me so they could track them.  I tried to find the tracking numbers but couldn't so I got back on live chat and asked them to resend me the letter from the supervisor rep as well as resending the labels and he said they could that and it should be 7-10 business days.  It has now been over two weeks and I have not received the resent letter or labels so I cannot give them the tracking number to prove I sent my phones back to them.  I have also researched the facility I was asked to send these phones back to and it seems this is a pretty common Verizon trick of making you prove you sent the phones and not giving you any access to the tracking numbers.  I just want to pay my ETF's and close out my original account so I can start over fresh with Verizon but now I am losing faith in doing that as this is making me wonder if they are the type of company I want to deal with.  Please someone who may have dealt with this help me restore my faith in Verizon and give me an idea of what to do next.

    How recently did you switch?  If it's less than 60 days, then Verizon simply reinstates your previous account.  The fact that you were on the EDGE plan and mailed the devices back, and they apparently are somewhere in the system, could cause complications, and it might just work out that you just go back on the same plan and they set you up with the same devices.  I'm not sure how it will go - but since you are still being billed for the devices... 

  • ISA: Billing doc search

    Dear guru's
      The Billing doc search in the ISA searches both open and closed billing docs(Invoices, Credit Memos). How do I restrict to get only the open items in the search.
    Thanks,
    Vivek.

    Hi Vivek,
            Use the following logic.
    Note : lit_isu_cont contains the list of isu contracts,lit_isu_cont-lv_vertrag.
    SELECT belnr vertrag endabrpe bergrund abrvorg loevm
            FROM erch
            INTO TABLE lit_bill_data
            FOR ALL ENTRIES IN lit_isu_cont
            WHERE vertrag = lit_isu_cont-lv_vertrag
            AND ( bcreason = space
                  AND loevm = space
                  AND simulation = space ).
    If sy-subrc = 0.
    " Billing document exits ".
    endif.
    Hope this helps.
    Regards,
    Kapil

  • Open orders and Shipped not billed orders

    Hi All,
                     What is the fastest way to calculate the open orders amount and shipped not billed amount for a given customer.
    Thanks
    Venugopal Reddy

    Can u try this option and see if this is increasin your performance.
    For the billing documents ...
    Goto table VBUK and check the fields LFSTK = 'C' " Delivery completed and
                                                            FKSTK NE 'C' . "billing open
    At header level check that GBSTK ne C "over all processing status is open .
    This will yield you the list of open Invoices ..
    You need to bring in the select query with a join on VBRK and VBUK ..
    once u get the list of open invoices  then calculate the open qty from VBRP and VBUP where VBUP-GBSTA ne 'C'.
    here pick the qty from vbrp and sum it up to check the open qty.
    just like this ..
    SELECT vbeln
             fkart
             kunag
             gbstk
             INTO TABLE it_billing_h
             FROM vbrkuk                       "VBRKUK is a DB view " VBAK+VBUK
             WHERE vkorg IN so_vkorg
             AND vtweg IN so_vtweg
              AND spart IN so_spart
             AND kunag IN so_kunnr
             AND gbstk NE 'C'.
        IF NOT it_billing_h[] IS INITIAL.
          SELECT c~vbeln
                 c~posnr
                 c~matnr
                 c~fkimg      "---->open qty
                 d~fksta
                 d~fksaa
                 d~uvfak
                 d~fkivp
                 d~fssta
                 d~gbsta
                 INTO TABLE it_billing_items
                 FROM vbrp AS c JOIN vbup AS d
                 ON dvbeln EQ cvbeln
                 AND dposnr EQ cposnr
                 FOR ALL ENTRIES IN it_billing_h
                 WHERE d~vbeln EQ it_billing_h-vbeln
                 AND d~gbsta NE 'C'.
    use control break and sum the qty ..
    hope this helps ,
    Regards,
    Vijay

  • Open sales orders and open deliveries and open billing doc to sap from legesy

    Dear all
    i have some open sales orders and open deliveries and open billing doc are there in the legesy system
    so i want to know how to transfer the doc to sap by using lsmw plz tell me

    Hi Amith,
    it is always good to search in Google before posting .LSMW is very old topic and i am sure you will get lots of Documents on this .Please go through the below link .you will get some idea on this.
    http://scn.sap.com/thread/1012472
    there are 14 steps in LSMW and it is same for all (master data and Transaction Data)
    Pls practice this in your sand box or quality system before working it in the client requirement.
    Hope this helps to you
    Regards
    Sundar

  • Open sales order report with billing date.

    Hi,
    I want to know if there's an available report for open sales order with billing date field.
    Thank you.

    Hi,
    If your case is "Order-related" Billing,you can use the T.Code "VF04" for this purpose.
    One more way is to go for a custom report.
    Make a copy of code of the T.Code "VA05n"(Program Name is "SD_SALES_ORDERS_VIEW").
    Change the code as per your requirement to display the field "Billing Date" in the report.
    Check with your ABAPer if you wish to go for a custom report.
    Regards,
    Krishna.

  • Report of cancelled Delivery Document, Billing Document & Shipment Document

    Hi,
    How can I get list of cancelled Delivery Document, Billing Document & Shipment Document.
    Regards,
    VK

    Hi,
    Good Day,
    Cancelled Delivery will available in Table CDPOS
    Pass below parameter
    OBJECTCLAS    LIEFERUNG              
    OBJECTID       Delivery Number
    TABNAME       LIKP                   
    CHNGIND       D                      
    Cancelled Invoice available in Table VBRK Pass Below Parameter
    FKSTO = 'X'
    Shipment Document Once you delete i don't thinks will get the details.
    May we can use Userexist and maintain customized table to track the deleted shipment number.
    Best Regards,
    KSK

  • Depot Plant : Supplimentory Billing and Excise Invoice to customers

    Hello experts,
    We have depot Plant.
    Purchase material from vendors and salling to customer.
    same Capturing excise in J1IG and Passing through J1IJ.
    its working fine.
    my question is, vendor is providing Supplimentory Bill.
    We are capturing additional excise through J1IGA-  with ref. certificate A
    How to raise the supplimentor Invoice to Customer with captured additional Excise through J1IGA.?
    Regards,
    Appasaheb

    Hi,
    You can select the additional invoice from the Excise Invoice tab in J1IJ.
    Apply this note to get a warning if  available additional Excise invoice is not selected.
    1514324 - Selection of Addl Excise Invoice skipped by user in
    J1IJ
    Regards
    Binoy

  • Can we change billing doc without cancelling( excise invoice is subsequent)

    Dear all,
    Here is a urgent issue
    One Excise invoice has been created with reference to a billing document
    and we have not maintained tax code in that condition records so it is not allowing to release the doc for accounting entries
    now my requirement is without cancelling the excise invoice and also not to do transaction  J1ih,( to create excise JV for direct GL entries
    i want to change the billing document
    Thanks in advance

    have not maintained tax code in that condition records
    While it is not necessary to reverse the excise invoice, the fact is that since tax code was not flowing in billing document, I am sure, excise duty would also not be flowing, in which case, your excise invoice is also generated for wrong value. 
    I would be surprised if you say that excise values are flowing in billing document and also in excise invoice and if your issue is only tax, then as already suggested, maintain a condition record (with the date in line with pricing date in billing document) and try.
    G. Lakshmipathi

  • Excise invoice in INR and Billing document in EURO.development issue.

    Dear All
    its  intersesting development i came accross please help if u have came accross this before.
    in my scenario i am having a  client who placed an order from Europe and the currency is in EURO  and we have to deliver it to a client who is in india.
    so  bill to party's currency is EURO and Ship to party is in INR.
    the excise invoice has to be prepared in INR but it made with refferance to billing so it will take Euro.
    so for this how to creat the excise invoice inINR and billing in EURO.
    i have jotted some idea's bellow
    please help
    The excise invoice is prepared on the basis of the delivery document so it may conceder the ship to party currency also.
    As you know the accounting document for the excise invoice is made with respect to billing document but if the billing document is not having the delivery document then it will not generate any accounting document for this. So you do some testing with ship to party as India then we can see what the effect is coming to it.
    Regards
    Subrat

    Dear Subrat
    Your excise invoice currency will always be in Company Code currency and assuming that it is INR in your case, if you generate excise invoice, the currency will also be in INR.
    thanks
    G. Lakshmipathi

  • How can i use my account without the billing info, as i do not have a credit card. and my shipping and billing info is under US. i'm in singapore. how do i change this?

    how can i use my account without the billing info, as i do not have a credit card. and my shipping and billing info is under US. i'm in singapore. how do i change this?

    If you are just visiting Singapore, then leave the account as it is. If you have moved there, then view your account using the iTunes app on a Mac or PC and change the country/region to your current location and address. If you do not have a bank card, you can fund your account using iTunes gift cards if available in Singapore.

  • Is there a way to create itunes account with no billing infomation?

    i just purchased the latest ipod touch and i plugged it into itunes for the first time and it asked me to create a new account before continuing apoon making my account. i got to the billing section and it asks me to fill it in with a credit card, i do not have a credit card and do not wish to do this. what do i do? is there any way of making an account without billing information?

    Please don't use big red text. There's no need to do so - it won't be more attention and in fact may put people off of helping - and it's really difficult to read.
    Adding to what JG said, you can also purchase a prepaid iTunes card, available from most grocery store and discount chains in the US and other countries, and use that. You will need to enter in your address information, but you won't need a credit card.
    Regards.

  • MY BILL INCREASED $60 IN A SINGLE MONTH ...

    **FYI*** I AM POSTING THIS TO THE PUBLIC BOARD PER A VERIZON FORUM TEAM REP'S REQUEST *** THEY SAID I CAN'T SEND A PRIVATE MESSAGE, THAT A MODERATOR NEEDS TO ASSIGN IT TO A FORUM TEAM AGENT *** THANK YOU!! ***
    My bill for standard/on-going monthly services has jumped $60 in a single month.  
    Below is a copy/paste directly from my Verizon Account page.  As you can see, my monthly payment for services rendered has averaged in the $220's going back to Jan 2013. My on-line bill for the current monthly charges is $284.05.  Please clarify 
    BEFORE YOU BEGIN YOUR REVIEW, PLEASE NOTE:  My payments over the last 5 or 6 months do not match the monthly billed charges because there have been multiple charges billed in error to our account that I have been disputing  going back to April.  Verizon just recently approved removal all of the disputed charges and I received email confirmations showing the refunds were posted to my account.   I have been deducting the disputed amounts before I paid my monthly bill, so the amounts below are an accurate average of our monthly services.  The rep who called me to process the refunds indicated she would call me back in a few days to give me the correct total amount due on my account after all refunds had processed. I have yet to receive that call-back.
    CURRENT ISSUE:  I am trying to pay my correct charges in full now that all of the incorrectly billed charges have been removed/refunded.  In order to do that  ....
    -  I am requesting a detailed account of the the $50 increase in the current month's bill
    ... AND ...
    -  I am requesting confirmation of the total amount due to date on my account AFTER the refunds have been removed.  .
    Thank you in advance for your assistance.
    Donna
    {edited for privacy}
    COPY/PASTE =
    Payment History
      Type Account Amount Sent Confirmation Posted
    Others
    $227.11
    7/25/2013
    7/25/2013
    Others
    $223.91
    6/19/2013
    6/19/2013
    Others
    $222.27
    5/16/2013
    5/16/2013
    Others
    $236.82
    4/10/2013
    4/10/2013
    Others
    $217.35
    3/15/2013
    3/15/2013
    Others
    $196.91
    2/11/2013
    2/11/2013
    Others
    $226.94
    1/16/2013
    1/16/2013
    Others
    $215.53
    12/17/2012
    12/17/2012
    Others
    $212.50
    11/14/2012
    11/14/2012
    Others
    $190.12
    10/10/2012
    10/10/2012

    Your issue has been escalated to a Verizon agent. Before the agent can begin assisting you, they will need to collect further information from you.Please go to your profile page for the forum, and look in the middle, right at the top where you will find an area titled "My Support Cases". You can reach your profile page by clicking on your name beside your post, or at the top left of this page underneath the title of the board.
    Under “My Support Cases” you will find a link to the private board where you and the agent may exchange information. This should be checked on a frequent basis as the agent may be waiting for information from you before they can proceed with any actions. Please keep all correspondence regarding your issue in the private support portal.

  • Is there a way to get two separate bills on same contract?

    I know it sounds weird, but I need my phone for work and I cannot pay a $200+ every month, so I want to just pay for my phone and charges and split the other phones.  My contract doesn't terminate until 10/2015

    No, Verizon only give one bill per account.

Maybe you are looking for

  • Urgent--Please help me in woklist customization

    I have a requirement where user wants to customize the worklist apllication, he wants to change the assignee users name from "jcooper" to "James cooper" where shold i change the code in jsp .please help to solve this issue.. Thanks in advance. Shaik

  • Adobe CS5 Applications open/save dialog boxes size always resets

    So, since the Mountain Lion update, all of my Adobe CS5 save/open window dialog boxes reset their size each time. In my case they are too small, causing me to have to enlarge the window out every time, to be able to see file names/locations etc.  Not

  • Searching in System Preferences has stopped working

    A few days ago I noticed that I couldn't search within System Preferences. I can type in the search box, but no autocomplete results are shown and no icons are highlighted. Searching is basically useless: It was working before, so it must be somethin

  • How to obtain SQL that don't use bind variables

    Hi, I'm trying to identify the SQL that should benefit from using bind variables. First, I tried to obtain the common signature from all those sql calls, by using: select * from ( select  force_matching_signature, count(1) from v$sql where force_matc

  • Best way to export individual tracks for mixing on other software

    I've recorded a song with my band, it has 14 tracks in total. We have a friend who is a pretty good engineer and I want to export the tracks from GB to give him so he can mix/master. What is the best way of doing this? I've done a bit of googling and