Issue in Billing doc CST

Hi Gurus,
At the time of billing CST is calculated item wise for all 3 materials but when we see accounting doc
it shows only one cst line item with collected total of all three materials, I analysis the same & found out that the system takes that amount from header level.
How to solve this mistake,as my client wants it item wise not single entry for all items??
Following entry will be passed at the time of billing
Customer Account Dr
Revenue Cr
Excise Duty Payable Cr
Sales Tax Payable (local or central) Cr
the same entry gets repeated with everry new material exept CST.
Thanks & Regards,
Sany.
Edited by: Sany on Jan 24, 2009 6:48 AM

you are right! must be F
and try another thing:
goto your item (see my path in spro) and set Relev. for Bill "F" -Relevant to order-rel. bil.doc. - status acc.to invoice qty
i guess in your case you need to bill your order only with the same qnty (example: order has 6 kg, bill must have 6 kg)

Similar Messages

  • Output could not be issued for billing doc no

    Hi All,
    I am getting printpreview correctly, but when i am taking print it is saying output couldnot be issued.
    In Devlopment it is working fine. in qulaity i am getting this error.
    I am getting below error message.
    An error occurred while output was being issued. It is possible, for example, that the form to be issued has not been activated or has an error. An error may also have arisen while the data to be issued was being edited.
    Thanks in advance.

    Hi,
    I guess, may be the problem is due to your Authorizations Problem in Quality system.
    after giving print, just check transaction SU53 for Authorization, if it shows something in red it mean U dont have authorizations..
    Hope it helps!!
    Rgds,
    Pavan

  • Billing doc while post goods issue

    Hi,
    Is there any Exit to creat a billing doc immediately when we post goods issue.
    Please, if there any other solution. don't hesitate.
    Thanks.

    You can use message condition record in outbound delivery ,as soon as you do PGI ,this message condition will trigger & it will create Billing document Back ground.Take ABAPer help he will guide you.

  • How to re-issue a disputed billing doc when mat posting period is closed

    I'm working a client site that has to deal with disputed invoices that come in after the material posting period has been closed.
    What needs to happen is that the billing document is cancelled (no problem) and this returns the stock (fuel put back in the tank).
    Howeve, the problem is we do not know the best way to re-issue the billing document so that the posting date is against the original date which is often outside the current of previous month's posting period.
    Is it practical to open the period prior to last month again? We suspect that this may cause more issues than it solves. What tis the industry standard process for dealing with such disputes?
    Thanks for your suggestions
    Phil

    Hi,
    It is not good to open the period again, as you are in current period.
    The best business practise is to raise an return order request against the billing docuement followed by credit memo to give the credit to customer. The return delivery also will be created against return order as you need to return the suplied goods.
    The sales docuement type 'RE' is used for sales return in standard SAP, followed by delivery docuement type 'RE' and billing type 'RE' (Credit Memo).
    regards
    Vivek.

  • Error while creating Billing doc using VF01 for Debit memo req. from RRB

    Hi,
    I am creating billing doc for my Debit memo req. which is created using RRB(DP90, DP95).
    Error message - Item 000010 does not exist.
    When I debugged and looked into code it seems following lines are causing problem.
    Program
    LV60AA28
    Line u2013 734
      IF  vbap-vkgru EQ vkgru_dyn_posten.
        IF vbap-aufnr IS INITIAL .
    set AUBEL because it was overwritten by VBAP-VBELN
          vbrp-aubel = vbap-vgbel.
          vbrp-aupos = vbap-vgpos.
          vbrp-autyp = vbap-vgtyp.
    This code was not in 4.6 system.
    We have just migrating from 4.6 to 6.0 and facing this issue while testing.

    First of all you should try to learn how to express in a public forum like this. 
    On your comments
    Do some ground work from your end
    why should I ??  if you want you can do ground work or any work.  If you post a question, you have to hear patiently all suggestions and dont scribble whatever you want.
    You should have some basic
       understanding of SAP ABAP.
    You should have posted this question ABAP forum !!!!   Why without any sense you have posted in sales forum ??

  • Billing document cancellation (VF11) the cancelled doc. is not getting automatically cleared against the actual billing doc.

    Hi All,
    In case of billing document cancellation (VF11) the cancelled doc. is not getting automatically cleared against the actual billing doc. no. Each time user has to clear the doc. manually. We have observed this issue after recent patch updation dated 22nd Feb’2014. Till 21st Feb’2014 the cancelled doc. has been cleared automatically against their respective billing documents.
    Please guide.
    Thank you.

    Hi Gopi,
    Please chheck SAP Note No. 1259505. It explains two ways in which SAP releases cancellation documents to FI.
    OSS NOte 1259505 lists the possible causes from SD side &
    OSS Note 309208 lists the possible causes from FI side.
    Regards,
    Kavita

  • Billing Doc can't cancelled--Urgent

    < MODERATOR:  Message locked.  Please read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting next time. >
    Pls help on this issue.
    When i cancelled the billing doc through VF11 Fi document not yet creted. system thrown the given below error:
                                                                                    Diagnosis   :                                                                          The document does not exist. It was possibly not posted and therefore cannot be read from the database.                                                                               
    Procedure  :                                                                    
         Repeat the transaction at a later time.                                                                               
    Pls help on this issue.I assign full marks .
    Rgds
    Mahesh

    Hi
    Can you please explain your issue a little elaborately?
    Karthik

  • Billing doc transfer from CRM to ECC debugging

    Hello Experts,
    I have made enhancement to the badi BILL_ACC_IF method ENRICH_ACC_DOCUMENT and would like to know the way to debug this code when the transfer of billing doc occurs (middleware).  Is that possible?  If yes, can you please let me know how?
    Thanks,
    --Jamie.

    Hi Jamie,
        Sometime back I had these kind of issue, I was not able to stop the debugger at break-point.
    For these type of things, I will write some simple code in BADI and you should have required authorizations. If you use this option, don't forget to remove the code.
       Write below some sample code at the place, where u want to start debug
       data l_exit.
        do.
          if l_Exit = 'X'.
             exit.
          endif.
        enddo.
        Here a process will be running conitnuously.
       Now go to SM50,
         select your process.
           From Menu select
                 Program/Session
                     --> Program
                          -->  Debugging.
            when you select this, the debugger will popup and cursor will be at above code. Now in debugger change the value of L_Exit to 'X'. control comes out from the do...enddo , and from here you debug it.
    //Bhanu

  • Billing doc cancelled

    Dear Friends,
    We are facing a major issue which is as follows:
    A bill doc was cancelled. The doc flow of the original billing doc shows:
    Delivery (Archived)-> Sale Invoice (Completed)-> A/cing doc (Not Cleared)
    The cancelled doc is not coming in the above doc flow. What can be the reason that cancelled doc is not coming in the doc flow?
    On the other hand the doc flow of the Cancelled doc shows:
    Delivery (Same as above) (Status Archived)->Cancel Inv (S1) Status- Missing export data. (Transaction is domestic). Here also the original bill doc is not coming in the doc flow of S1. However the original doc is coming in the Assignment field in the header of S1. Again what can be the reason? We also want to clear the A/cing doc of the original Billing document. How is this possible?
    Is there any T.Code for displaying J1ID?
    Plz hep to solve these issues.
    Thank you very much.

    Go to VA03, key in the sale order reference and check the document flow.  Let me know whether you could see the original billing document that was cancelled.  If not, check in copy control whether you have ticked the box "Update document flow".
    Is there any T.Code for displaying J1ID?
    What do you mean by this ??  J1ID itself is a standard TCode.
    thanks
    G. Lakshmipathi

  • Billing doc error due t copa standard quantity

    Hi  I am facing an issue .this is regarding the error while releaseing a billing doc the errortranslating the quantity to the COPA standard quatity.
    in material master i checked the unit of measure is SET and in copa KEA6 VVAUM( Alt Uom)
    Error translating the quantity to the CO-PA standard quantity
    Message no. K/832
    Diagnosis
    Customizing in Profitability Analysis CO-PA allows a standard quantity field to be updated.
    An error has occurred in the present document while the standard quantity field "VVAUM" was being supplied.
    The base unit of measure "SET" could not be translated into the standard unit of measure "M3" for the material "B/CAL/PROJECT5".
    System Response
    It is not possible to process the document again.
    Procedure
    1. If required, maintain the unit of measure "M3" as an alternative unit of measure in the material master for the material "B/CAL/PROJECT5".
    2. In certain cases, you should check whether derivation of the unit of measure for the CO-PA standard quantity field "VVAUM" needs to be changed in Customizing for CO-PA characteristic derivation
    This is billing docments needs to be released . what is the problem some body can help me to resolve the issue
    Arjun

    Hi
    I am assuming that you want to update qty in COPA with UoM M3
    In MM02 - Maintain conversion of SET to M3
    In KE4MS - Maintain M3 as the Standard Unit of Measure
    In KE4M - Assign SD Qty field (FKIMG) to VVAUM
    BR,Ajay M

  • Billing doc is not getting saved.

    Hi All,
    I am doing  billing with ref to Delivery in VF01. Billing doc is processed but when I click on save button to create document..its not saving and redirecting to initial billing overview screen.
    I assume this is some system setup issue and needs to be looked by Basis. Is this Basis issue or an SD Consultant can solve this one.
    what needs to be setup properly to resolve this one.
    Your inputs are appreciated.
    Naveen

    Gampa,
    During invoice creation, please sit with a technical guy and debug the process. In 10minutes you should be able to find out hte actual problem, as there can be many reasons why the invoice creation is coming back to VF01 screen.
    My hunch goes to Number ranges. The number range can be completely exhausted and because of this, it is not able to assign a number to the newly created document. If you debug it, you should be able to find out the correct reason.

  • Billing doc referenced by delivery document

    Hi All,
    there is a problem in my scenario that billing doc are created automatically when creating shipment doc that is collective shipment doc type. in stead of this process, ı have not faced on this stuation when i creating it by using individual shippment doc type. I need your help on this issue that why it creates automatically billing doc at the time of creation shipment doc by using collective shipment doc type what is the difference between those doc. types? how can configure them to create billing doc manually?
    Thanks in advance all of you.
    Regards,
    Sinan

    Hi,
    If you are using Collective shipment document and if the billing document is getting created automatically, then, there is a fair chance that a profile (to create automatic billing document) has been assigned to the shipment document type.
    Check SPRO > Logistics Execution > Transportation > Shipments > Define and Assign Activity Profile and remove the profile (if present) for the collective shipment document type (If you desire to)....
    Hope this answeres your question
    Thanks
    Mukund S

  • Billing Doc with over 200 item lines, wont post to FI

    Hi there i have a F2 billing doc with 209 lines on it, this will not post to FI as it is trying to post over 999 lines into FI, has anyone overcome this issue if so how did you do it?
    If not what are my options, i have customers who want monthly bills but this bill i have created is only for 2 weeks worth.
    Is there away of having multile FI docs again one billing doc?
    Hope you can help me out
    (this question is also in ERP-SD & FI section)

    hi,
    you have to set up summarization of the line items. Please see note 36353.
    If your business process does not allow this, the only possibility is to split the invoice.
    Balazs

  • Billing doc splitting to different cocodes

    hi gurus,
    my client needs billing doc splitting to different cocodes  with different revenue G/L accounts  with common customer.  He needs from billing doc flow ?how can we solve this? any inputs on invoice splitting highly appreciated.
    thanks in advance.
    regds,
    ram

    Hi,
    I am facing a similar issue. Please let me know a s how you proceeded in clearing the "SPLIT DUE TO PARTNER DATA".
    Thanks in Advance.
    Regards,
    Rajesh

  • Billing doc Split due to different partner data in VOFM

    I have a Billing doc split due to different partner data in a routine in VOFM. How do you clear these. I have tried VBPA without success. We want a billing document by Payer and PO number.

    Hi,
    I am facing a similar issue. Please let me know a s how you proceeded in clearing the "SPLIT DUE TO PARTNER DATA".
    Thanks in Advance.
    Regards,
    Rajesh

Maybe you are looking for

  • Keep getting this error when I run a program   UC_OBJECTS_NOT_CONVERTIBLE

    I created a project via CMOD for a modification to a BW extractor.  It is pretty simple coding but when I try and execute the extractor via RSA3 I get the following error.  I've attached the code as well and it is something with line 17.  can you ple

  • VMware Fusion vs Parallels Desktop 3.0

    i want to run Windows XP or Windows Vista on my mac. which among VMware Fusion and Parallels would be a much better program/software to buy? what are the pros & cons of each? should i buy now or would waiting for Leopard's release (with a new Boot Ca

  • NIS install on solaris 9

    I am trying to install NIS on solaris 9 but I don't have a Makefile in /var/yp. I tried copying the Makefile from one of my solaris 8 boxes but then I ended up missing a bunch of files from /usr/lib/netsvc/yp. I think I must be missing some packages

  • Mapping in Taxonomy

    Hi... My expected Hierarchy structure in Taxonomy is as below:   Root      |__A         |___B         |    |___E         |    |___F         |___C      |__B         |___E         |___F      |__C         |___B         |    |___E         |    |___F     

  • Txt to XML

    I need to convert txt file into xml. There are text formatting tags (like <bold></bold> , <italic></italic>). I'm new to Java so I'm not sure if I understand my task in the right way. For now I think that to "convert txt file into xml" I should: 1. c