Billing block for invoices and credit notes on Sold-tou00B4s level

Hi All
can we have billing block for invoices and credit notes on Sold-to´s level.
please advice.
Thanks
Tushar

Hi
The bellow way at document level.
One more way to maintian the billing block in the functionality of sales document types in VOV8
In VOV8 , Maintain proper value in billing block field.
So that , when you create the order or credit memo request system automatically pick the billing block.
Once remove the block of billling then only system allow to create the billing or credit memo.
Thanks,
KP
Edited by: phanik2503 on Mar 2, 2010 6:46 AM

Similar Messages

  • How to Removed VAT during DTW upload for Invoices and Credit Notes

    Hi Experts
    Please help.
    Every time I import AR Invoice and  Ar credit Notes there is an automatic posting to VAT  even if the template has the same price after VAT and zero discount.
    How to removed this?
    Regards,
    Sandra

    Hi Julie
    As requested. The SO is VAT code for nonvat or zero vat
    As requested
    Header
    RecordKey     DocEntry     CardCode     CardName     Comments     DiscountPercent     DocCurrency     DocDate     DocDueDate     DocNum     DocRate     DocTime      DocTotal      DocType     JournalMemo     NumAtCard     Reference1     Reference2     Series     TaxDate
    1     TRUE     MC002 A     ABENSON INC.                    20090930     20060428          1           13,950.0000      dDocument_Service       OB AR Invoices 09.30.09     SI#044792          SI#044792          20060227
    Lines/Details
    RecordKey     LineNum     AccountCode      LineTotal      VatGroup
    RecordKey     LineNum     AccountCode      LineTotal      VatGroup
    1          392000000     13,950.00      SO
    Regards,
    Amy

  • Remove invoice and credit note block

    Hello all,
    I have got a query with respect to transaction MRBR (Remove Block on invoice). The process that we follow is:
    1) When AP clerk enters invoice, he enters the invoice with a 'R' block. This blocks the invoice from getting paid.
    2) Every evening there is a background job scheduled with transaction MRBR. What this job does is removes the 'R' block from the invoice if it has got a corresponding GR.
    3) This invoice then appears in the payment run and is paid off.
    The problem with this process is when the credit notes are raised on account. We link the credit notes and invoices by copying the document number of invoice in the 'invoice reference' field while entering the credit note. The 'R' block also gets copied onto the credit note (if the invoice has the block). Transction MRBR runs overnight and removes the block from the invocie (if it has a corresponding GR) and the invoice becomes free for payment. However there is no parameter in the program to remove the block from the credit note as well. What eventually happens is that the invoice becomes free for payment, the credit note remains 'R' blocked and hence does not appear in the payment run to offset the invoice and the invoice gets paid off even though it had a credit note.
    Is anyone aware of how to remove the 'R' block from the credit note or if there is a better process to work with invoice and credit notes.
    Thanks for all your help
    Regards
    Keyur

    normally, credit memo should be able to remove the block manually as soon as they are put in the sap.
    they should not be mixed with other AP invoices.
    and if the credit memo need to be paid, then it should have something like approval doc to support the block removing.
    if it is just reversal doc against wrong doc, then also need remove the block by supervisor asap.
    Edited by: JiQing Zhao on Apr 19, 2011 10:17 AM

  • Invoice and credit note processing

    Hello all,
    I have got a query with respect to transaction MRBR (Remove Block on invoice). The process that we follow is:
    1) When AP clerk enters invoice, he enters the invoice with a 'R' block. This blocks the invoice from getting paid.
    2) Every evening there is a background job scheduled with transaction MRBR. What this job does is removes the 'R' block from the invoice if it has got a corresponding GR.
    3) This invoice then appears in the payment run and is paid off.
    The problem with this process is when the credit notes are raised on account. We link the credit notes and invoices by copying the document number of invoice in the 'invoice reference' field while entering the credit note. The 'R' block also gets copied onto the credit note (if the invoice has the block). Transction MRBR runs overnight and removes the block from the invocie (if it has a corresponding GR) and the invoice becomes free for payment. However there is no parameter in the program to remove the block from the credit note as well. What eventually happens is that the invoice becomes free for payment, the credit note remains 'R' blocked and hence does not appear in the payment run to offset the invoice and the invoice gets paid off even though it had a credit note.
    Is anyone aware of how to remove the 'R' block from the credit note or if there is a better process to work with invoice and credit notes.
    Thanks for all your help
    Regards
    Keyur

    Hi,
    I also think that there is no need for putting a R block in the credit note at all. 
    The process should be like below:
    1. Invoice posted before GR - Invoice should be automatically blocked if the tolerance keys are set up properly (transaction code OMR6).  I am not sure why you have to put the R block manually.
    2. Post credit note - do not put any kind of block.  Make sure that you are referencing the credit note to the earlier posted invoice or the the relevant PO line item.
    3. MRBR matches and releases the invoice.
    4. When you run F110, it should automatically clear the invoice, credit note and make payment for the rest.

  • Invoice and Credit Notes

    Hi Guys,
    I am trying to do a query that shows all the Invoices and Credit Notes Posted from a specific Date. So far I have come up with this, however It is not returning the correct Information and I need to show the document type as either an Invoice or Credit Note, can anyone assist me with this ? It is Important for me to have the DocEntry in there as I will need to use that in a Crystal Report.
    SELECT  DISTINCT T0.DocNum as 'Invoice/Credit Number', T0.DocEntry,T0.DocDate as 'Doc Date',  T0.CardCode as 'Customer Code', T0.CardName as 'Customer Name',T0.VatSumSy as 'VAT', T0.DocTotal as 'Doc Total' FROM OINV T0 WHERE T0.DocDate >=[%0]
    UNION ALL
    SELECT DISTINCT T1.DocNum as 'Invoice/Credit Number', T1.DocEntry, T1.DocDate as ' Doc Date',  T1.CardCode as 'Customer Code', T1.CardName as 'Customer Name',  T1.VatSumSy as 'VAT', T1.DocTotal as 'Doc. Total' FROM ORIN T1 WHERE T1.DocDate >=[%0]
    Help always gratefully appreciated
    Kind regards
    Sean Martin

    Hi,
    You can also check this query :
    Select distinct CASE WHEN T1.transtype = '13' THEN T0.DocNum WHEN T1.transtype = '14' THEN T2.Docnum 
    END as 'Invoice/Credit Number',
    CASE WHEN T1.transtype = '13' THEN T0.DocEntry  WHEN T1.transtype = '14' THEN T2.DocEntry  END,
    CASE WHEN T1.transtype = '13' THEN T0.DocDate  WHEN T1.transtype = '14' THEN  T2.DocDate  END as 'Doc Date',
    CASE WHEN t1.TransType ='13' THEN T0.CardCode  WHEN T1.transtype = '14' THEN T2.Cardcode  END as 'Customer Code',
    CASE WHEN T1.transtype = '13' THEN T0.CardName  WHEN T1.transtype = '14' THEN T2.CardName  END as 'Customer Name',
    CASE WHEN T1.transtype = '13' THEN T0.VatSumSy  WHEN T1.transtype = '14' THEN  T2.Vatsumsy  END as 'VAT',
    CASE WHEN T1.transtype = '13' THEN T0.DocTotal  WHEN T1.transtype = '14' THEN  T2.doctotal  END as 'Doc Total',
    CASE WHEN T1.TransType = '13' THEN 'INVOICE'  WHEN T1.transtype = '14' THEN 'CREDIT MEMO'  END
    from JDT1 T1
    LEFT join OINV T0 on T1.transid = T0.transid and t0.DocDate >= '[%1]'
    LEFT join ORIN T2 on T2.transid = T1.transid and  t2.DocDate >= '[%2'
    where T1.TransType in ('13','14')
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • FSCM-COL: Worklist separated by invoices and credit notes

    Hi all,
    We are implementing FSCM-COL and in the u2018Process Receivablesu2019 screen, in the tab "Invoices", there is a split between invoices and credit notes,in two separate lists. The documents are not displayed together!
    As a basic requirement for a collection contact, a single list is required, in order to be possible to sort all open items and enable
    greater efficiency during the customer contact.
    Do you know how this separation is done (by posting key for instance...?) and if we can change this....
    Or this is standard functionality of the worklist ?
    Thanks for your inputs,
    Best Regards,
    Bruno Sousa

    This is standard.
    Credits are normally a different colour.
    The worklist should be used by the team to define what the customers owe's and what they should pay.
    Total overdue - disputed items not resolved = amount to be collected.

  • Printing messages in invoices and credit notes

    Hi Sap gurus,
    The printing messages in invoices and credit notes must be changed due to a new law.
    Does anybody know the transaction used for this, please?
    Regards,
    Roger

    Hi Roger
    You can change the forms by SE71 transaction. 
    thanks
    Ashok
    Assign points for useful answer

  • Setting up multiple billing blocks for a CMR - Credit Memo Request

    I am trying to set a billing block for a credit memo request.  The item category in VOV7 configuration only allows you to set one.  I need to be able to set any of them and for it to block.  If we do not use one; the system allows the credit memo to get created.  If we choose the one that we configured in VOV7 it allows us to only use that one.  The client needs to be able to select any billing block from the drop down when creating a credit memo request in VA01 instead of just one specific one.  Is this possible?  If so, where would I do this?

    Surprising! when a billing block is applied in the sales document, then the system will NOT allow to create the billing document(in your case credit memo). Can you check in t.code OVV3, the billing blocks are assigned to billing types? After assigning, create a new document and test. The path is SPRO->Sales and distribution -> billing->billing documents ->define blocking reasons for billing->assign blocking reasons to billing types.
    Regards,

  • Mismatch between invoice and credit note

    Hi Gurus,
    We have made an credit note,5xxxxxxxx12, to cancel an invoice 5xxxxxxxx10. However the values on the corresponding accounting documents are different (USD  8000,02- and 7992,46), so we cannot match the two documents.
    Please advice me how to match these two documents.

    Hi shivaji,
    What is the reason for the difference in the amount. you may have to manually clear the documents using transaction F-03 or F-32 and post the difference manually.
    Regards
    Mahendra
    Assign points if this helps

  • Amount posted different for Invoice and Credit memo

    Hi Experts,
    The user has reversed only one line item of an invoice entry (RE), which was processed back in 2009. The invoice entry was processed with two Gl Accounts( Transit Comm.match and Com.Inv.GIT d.d) with amount allocated as 576.35 (5399.2 and -4822.85)with an input tax of 22%.But in the reversal entry the amount allocated to these account are different(-5851.62 and 5275.27), thought the total match to -576.35. Interesting thing is this entry was posted in a foreign currency (EUR) wherein the Local Currency values which is in PLN is same for both invoice and reversal entries. Exchange rate for both the entries are  4.20430.
    Please let me know your thoughts..

    Hi Ravi,
    Here by reversal I meant the credit memo processed against invoice.

  • Invoice and Credit note posting not matching

    Hi All,
    An invoice was issued with two items so the credit note in reference to that invoice (to reverse the invoice) has been issued item wise. The problem is that the amount of credit note and the invoice is not matching so the posting does not clear.
    Any idea, what could be the reason. Its critical to business so urgent.
    People with similar problem too are requested to share their experience.
    Regd
    Vk

    Hi Vinay,
    go to copy control from the invoice type to credit memo type. In the 'item' level, Chevk out the 'pricing type' field. If u want the same old values from the invoice as it is, then use the pricing type as 'D'. This will copy all values unchanging them.
    This will solve ur problem.
    Regards,
    Prashant

  • Relation between Proforma Invoice and Credit Note Number

    Hi,
    Could you please tell me how i can link the proforma invoice number with credit note number.
    I have proroma invoice number. I want to find its corresponding credit note number.
    Kindly help.
    Regards
    Sachin

    there wont be any entry in BKPF as this is proforma invoice...
    i tried to link by VBFA but no sucess...
    Kindly help..

  • What is posting key for debit note and credit note?

    Hi Gurus,
    May I know what is posting key for debit and credit note?
    My current sales debit and credit note having same posting key.  Where can I set this posting key?
    Sales debit note                dt      cr
    Sales credit note               dt      cr
    Customer debit note          dt      cr
    Customer credit note         dt      cr
    Vendor debit note             dt      cr
    Vendor credit note            dt      cr
    Thanks
    Moderator: Please, avoid asking basic questions. Try to search available SAP material first

    This depends on requirement.
    Generally, SAP std are followed and ought to be followed, as Std config are based on best practices world over.
    Still, if you business process requires then take an example,
    - use TCode OBYC,
    - double click on transaction BSD - Inventory posting
    - provide chart of account, if asked.
    - check the posting keys for transaction by clicking Posting Key button on the Maintain FI Configuration: Automatic Posting - Accounts screen.
    In Debit
    89 - Stock inwrd movement
    In Credit
    99 - Stock outwd movement
    Thanks & Regards
    JP

  • STANDARD SMARTFORM FOR CUSTOMER INVOICE AND CREDIT MEMO

    GUD MORNING ,
    I WANT THE STANDARD SMART FORM FOR THE CUSTOMER INVOICE AND CREDIT MEMO RELATED TO FI FOR SALES.
    ARUN REDDY I

    Hi,
    Search For Standard or Customise Smartform
    *&  Report       : ZTEST_SEARCH_FORMNAME
    *&  This program will help you to search the SMARTFORM either Standard
      Or Customer created in your compatiable language.
    REPORT  ZTEST_SEARCH_FORMNAME  .
    TYPE-POOLS: SLIS.
      TABLES: STXFADM, STXFADMT.
      DATA:  BEGIN OF ITAB OCCURS 0,
           FORMNAME     LIKE STXFADM-FORMNAME,
           MASTERLANG   LIKE STXFADM-MASTERLANG,
           DEVCLASS     LIKE STXFADM-DEVCLASS,
           VERSION      LIKE STXFADM-VERSION,
           FIRSTUSER    LIKE STXFADM-FIRSTUSER,
           FIRSTDATE    LIKE STXFADM-FIRSTDATE,
           FIRSTTIME    LIKE STXFADM-FIRSTTIME,
           LASTUSER     LIKE STXFADM-LASTUSER,
           LASTDATE     LIKE STXFADM-LASTDATE,
           FORMTYPE     LIKE STXFADM-FORMTYPE,
           CAPTION      LIKE STXFADMT-CAPTION,
           END OF ITAB.
      DATA: IT_FIELDCAT TYPE  SLIS_T_FIELDCAT_ALV,
              WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
              WA_LAYOUT TYPE SLIS_LAYOUT_ALV.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS: S_DEV  FOR STXFADM-DEVCLASS NO INTERVALS.
    SELECT-OPTIONS: S_FORM FOR STXFADM-FORMNAME NO INTERVALS.
    SELECTION-SCREEN SKIP 1.
    PARAMETERS: P_LANG LIKE T002-SPRAS DEFAULT 'EN'.
    SELECTION-SCREEN END OF BLOCK B1.
    PERFORM F_SELECT_DATA.
    PERFORM F_LAYOUT.
    PERFORM F_FIELDCAT.
    PERFORM DISPLAY.
    *&      Form  f_select_data
          text
    -->  p1        text
    <--  p2        text
    FORM F_SELECT_DATA .
      SELECT
             A~FORMNAME
             A~MASTERLANG
             A~DEVCLASS
             A~VERSION
             A~FIRSTUSER
             A~FIRSTDATE
             A~FIRSTTIME
             A~LASTUSER
             A~LASTDATE
             A~FORMTYPE
             B~CAPTION
             FROM STXFADM AS A INNER JOIN  STXFADMT AS B ON
             AFORMNAME = BFORMNAME INTO  TABLE ITAB  WHERE
             A~DEVCLASS IN S_DEV AND
             A~FORMNAME IN S_FORM AND
             B~LANGU = P_LANG.
        IF SY-SUBRC  = 0.
        SORT ITAB BY FORMNAME.
      ELSE.
        MESSAGE I398(00) WITH 'No Form Exits for this selection criteria'.
        LEAVE LIST-PROCESSING.
      ENDIF.
    ENDFORM.                    " f_select_data
    *&      Form  display
          text
    -->  p1        text
    <--  p2        text
    FORM DISPLAY .
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM = SYST-CPROG
          IS_LAYOUT          = WA_LAYOUT
          IT_FIELDCAT        = IT_FIELDCAT
        TABLES
          T_OUTTAB           = ITAB.
      IF SY-SUBRC <> 0.
      ENDIF.
    ENDFORM.                    " display
    *&      Form  f_fieldcat
          text
    -->  p1        text
    <--  p2        text
    FORM F_FIELDCAT .
      DATA: WA_COL TYPE I VALUE 1.
      WA_FIELDCAT-COL_POS   =  WA_COL + 1.
      WA_FIELDCAT-SELTEXT_L =  TEXT-003.  " Form Name
      WA_FIELDCAT-FIELDNAME =  'FORMNAME'.
      WA_FIELDCAT-TABNAME   =  'ITAB'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-COL_POS   =  WA_COL + 1.
      WA_FIELDCAT-SELTEXT_L =  TEXT-004.  " Smart form Text
      WA_FIELDCAT-FIELDNAME =  'CAPTION'.
      WA_FIELDCAT-TABNAME   =  'ITAB'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-COL_POS   =  WA_COL + 1.
      WA_FIELDCAT-SELTEXT_L =  TEXT-005.  "Package
      WA_FIELDCAT-FIELDNAME =  'DEVCLASS'.
      WA_FIELDCAT-TABNAME   =  'ITAB'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-COL_POS   =  WA_COL + 1.
      WA_FIELDCAT-SELTEXT_L =  TEXT-006.  "First User
      WA_FIELDCAT-FIELDNAME =  'FIRSTUSER'.
      WA_FIELDCAT-TABNAME   =  'ITAB'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-COL_POS   =  WA_COL + 1.
      WA_FIELDCAT-SELTEXT_L =  TEXT-007.  "First Date
      WA_FIELDCAT-FIELDNAME =  'FIRSTDATE'.
      WA_FIELDCAT-TABNAME   =  'ITAB'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-COL_POS   =  WA_COL + 1.
      WA_FIELDCAT-SELTEXT_L =  TEXT-008.  "Version
      WA_FIELDCAT-FIELDNAME =  'VERSION'.
      WA_FIELDCAT-TABNAME   =  'ITAB'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-COL_POS   =  WA_COL + 1.
      WA_FIELDCAT-SELTEXT_L =  TEXT-009.  "Master Language
      WA_FIELDCAT-FIELDNAME =  'MASTERLANG'.
      WA_FIELDCAT-TABNAME   =  'ITAB'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-COL_POS   =  WA_COL + 1.
      WA_FIELDCAT-SELTEXT_L =  TEXT-010.  "Last User
      WA_FIELDCAT-FIELDNAME =  'LASTUSER'.
      WA_FIELDCAT-TABNAME   =  'ITAB'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      ENDFORM.                    " f_fieldcat
    *&      Form  f_layout
          text
    -->  p1        text
    <--  p2        text
    FORM F_LAYOUT .
        WA_LAYOUT-COLWIDTH_OPTIMIZE = 'X'.
    ENDFORM.                    " f_layout
    Regards,
    Jagadish

  • Issue in FF v 3.6.10: I have a page which have more than 20 link, clicking on these link opens up a popup using window.showModalDialog, for the first 20 popup opens up without any prob but for the 21st n more click it block the popup and do not open.

    Issue in FF v 3.6.10: I have a web page which have more than 20 link, clicking on each of these link opens up a pop-up using window.showModalDialog, for the first consecutive 20 popup opens up without any prob but for the 21st n more click it block the popup and do not open. This is m problem, the real user on the web page can click on more than 20 link in such a scenario it may create problem, please help

    Your above posted system details show outdated plugin(s) with known security and stability risks.
    *Shockwave Flash 9.0 r999
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    In Firefox 3.6 and later versions you need the Next-Generation Java™ Plug-In present in Java 6 U10 and later (Linux: libnpjp2.so; Windows: npjp2.dll).
    http://java.com/en/download/faq/firefox_newplugin.xml
    See also http://java.sun.com/javase/6/webnotes/install/jre/manual-plugin-install-linux.html

Maybe you are looking for

  • Blurred image Apple TV

    The screen is blurred on my Apple TV. It has done this intermittently before and mysteriously "normalizes" on its own.  I have reset via menu and with the remote (down & menu x 6 secs) without effect. Could this be a temperature related issue?  Any k

  • HT4858 Shared photo stream limits?

    I've read that 1,000 photos is the limit to 'My Photostream'. Is there a limit to the number of total shared photos across multiple streams? For example, can there be 1,000 photos in each of 4 shared photo streams for a total of 4,000 shared photos?

  • Input Method Limitation on BB10 (only 3)

    Hello, I love the physical keyboard and the OS of my Q10 but it has a huge problem (as least for me): it won't let me select more than 3 input languages (such as French, English, Chinese...). I need to select to select at least five. Android, IOS or

  • Where to find statistics about the java platfrom?

    Anyone know where? I searched google and java.sun.com & can't find anything. I am doing a project on Java and I want the # of class, # of methods, etc. I also want JavaScript statistics if anyone knows where to get that... Thanks!

  • Is my HP Officejet G55 compatible with Mac OS X 10.7.1?

    Product: HP officejet g55 OS: mac os x 10.7.1 Error: Jobs immediate disappear from queue without printing No changes made to the system, brand new macbook I tried installing the driver from hps support site, but got an error message. (I read about th