<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: BILLING USER EXIT PLEASE HELP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/billing-user-exit-please-help/m-p/2455293#M550527</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi these ar the following usexits and BAdis... trigger in VF01/VF02&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enhancement&lt;/P&gt;&lt;P&gt;V61A0001 Customer enhancement: Pricing&lt;/P&gt;&lt;P&gt;V60P0001 Data provision for additional fields for display in lists&lt;/P&gt;&lt;P&gt;V60A0001 Customer functions in the billing document&lt;/P&gt;&lt;P&gt;V05N0001 User Exits for Printing Billing Docs. using POR Procedure&lt;/P&gt;&lt;P&gt;V05I0001 User exits for billing index&lt;/P&gt;&lt;P&gt;SDVFX011 Userexit for the komkcv- and kompcv-structures&lt;/P&gt;&lt;P&gt;SDVFX010 User exit item table for the customer lines&lt;/P&gt;&lt;P&gt;SDVFX009 Billing doc. processing KIDONO (payment reference number)&lt;/P&gt;&lt;P&gt;SDVFX008 User exit: Processing of transfer structures SD-FI&lt;/P&gt;&lt;P&gt;SDVFX007 User exit: Billing plan during transfer to Accounting&lt;/P&gt;&lt;P&gt;SDVFX006 User exit: Tax line (transfer to accounting)&lt;/P&gt;&lt;P&gt;SDVFX005 User exit: Reserves (transfer to accounting)&lt;/P&gt;&lt;P&gt;SDVFX004 User exit: G/L line (transfer to accounting)&lt;/P&gt;&lt;P&gt;SDVFX003 User exit: Cash clearing (transfer to accounting)&lt;/P&gt;&lt;P&gt;SDVFX002 User exit for A/R line (transfer to accounting)&lt;/P&gt;&lt;P&gt;SDVFX001 User exit header line in delivery to accounting&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Business Add-in&lt;/P&gt;&lt;P&gt;SD_CIN_LV60AU02 BADI for billing&lt;/P&gt;&lt;P&gt;VOR_WA_FAKTURA Billing before Goods Issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward points&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Jun 2007 13:20:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-27T13:20:57Z</dc:date>
    <item>
      <title>BILLING USER EXIT PLEASE HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/billing-user-exit-please-help/m-p/2455291#M550525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am implementing an enhancement in include program rv60afzz.in user (VF01)exit .."NUMBERING_RANGE_INTERNAL" OR SOMETHG LIKE THAT.&lt;/P&gt;&lt;P&gt;the requirement is that when ever billing docs is saved ..the numbering FOR BILLING DOC . must be taken from the combinations of plant and billtype specific. &lt;/P&gt;&lt;P&gt;I HAVE CREATED A ZTABLE WITH FIELDS PLANT AND BILLTYP AND HOW TO GET THE COMBINATIONS ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LIKE ...EXAMLPLE&lt;/P&gt;&lt;P&gt;PLANT    BILLTYP     RANGE&lt;/P&gt;&lt;P&gt;1000        F2             1000- 20000       " FOR THE THIS BILL DOC. BE IN THIS  &lt;/P&gt;&lt;P&gt;                                                            RANGE OF 1000-20000&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 11:55:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/billing-user-exit-please-help/m-p/2455291#M550525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T11:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: BILLING USER EXIT PLEASE HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/billing-user-exit-please-help/m-p/2455292#M550526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am posting the 'Live' code here:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
* w_doc_type has been defined as Char(1) it is = 1 For INV 2 For Debit Memo
* 3 for Credit MEmo
* Znova_parm is a parameterfile with key MAin_key &amp;amp; sub_key
*znova_parm_value1 has been maintained with 2 alpha char 
*The Idea of using znova_paem is if you want to add any new series, e.g.
*if there is a new plant added, no need to change the pgm, just
* add an entry in znova_parm
Concatenate vbap-werks w_doc_type into w_sub_key.
* Get the series for the Plant
Select single * from znova_parm
       Where ( main_key = sy-repid )
       And   ( sub_key = w_sub_key ).
If sy-subrc NE 0.
  Message e000(znov) with 'Please maintain the series for'
        vbrp-werks w_doc_type.
Else.
   w_series = znova_parm-parm_value1(2).
Endif.
*
* There is a possibility that 'Z1' series defined in Znova_parm is not
* present in the object 'RV_BELEG'. Validate it
*
Translate w_series to Upper Case.
*
CALL FUNCTION 'NUMBER_GET_INFO'
  EXPORTING
    nr_range_nr              = w_series
    object                   = 'RV_BELEG'
*   SUBOBJECT                = ' '
*   TOYEAR                   = '0000'
* IMPORTING
*   INTERVAL                 =
 EXCEPTIONS
   INTERVAL_NOT_FOUND       = 1
   OBJECT_NOT_FOUND         = 2
   OTHERS                   = 3
          .
IF sy-subrc &amp;lt;&amp;gt; 0.
  Clear w_x10.
  Concatenate vbrp-werks w_doc_type w_fityp into w_x10 separated by
   space.
  Message e000(znov) with 'Invalid Series:' w_series
        'Maintained Against..' w_x10.
ENDIF.
*
 US_RANGE_INTERN = w_series.
*

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raju Chitale&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 12:10:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/billing-user-exit-please-help/m-p/2455292#M550526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T12:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: BILLING USER EXIT PLEASE HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/billing-user-exit-please-help/m-p/2455293#M550527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi these ar the following usexits and BAdis... trigger in VF01/VF02&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enhancement&lt;/P&gt;&lt;P&gt;V61A0001 Customer enhancement: Pricing&lt;/P&gt;&lt;P&gt;V60P0001 Data provision for additional fields for display in lists&lt;/P&gt;&lt;P&gt;V60A0001 Customer functions in the billing document&lt;/P&gt;&lt;P&gt;V05N0001 User Exits for Printing Billing Docs. using POR Procedure&lt;/P&gt;&lt;P&gt;V05I0001 User exits for billing index&lt;/P&gt;&lt;P&gt;SDVFX011 Userexit for the komkcv- and kompcv-structures&lt;/P&gt;&lt;P&gt;SDVFX010 User exit item table for the customer lines&lt;/P&gt;&lt;P&gt;SDVFX009 Billing doc. processing KIDONO (payment reference number)&lt;/P&gt;&lt;P&gt;SDVFX008 User exit: Processing of transfer structures SD-FI&lt;/P&gt;&lt;P&gt;SDVFX007 User exit: Billing plan during transfer to Accounting&lt;/P&gt;&lt;P&gt;SDVFX006 User exit: Tax line (transfer to accounting)&lt;/P&gt;&lt;P&gt;SDVFX005 User exit: Reserves (transfer to accounting)&lt;/P&gt;&lt;P&gt;SDVFX004 User exit: G/L line (transfer to accounting)&lt;/P&gt;&lt;P&gt;SDVFX003 User exit: Cash clearing (transfer to accounting)&lt;/P&gt;&lt;P&gt;SDVFX002 User exit for A/R line (transfer to accounting)&lt;/P&gt;&lt;P&gt;SDVFX001 User exit header line in delivery to accounting&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Business Add-in&lt;/P&gt;&lt;P&gt;SD_CIN_LV60AU02 BADI for billing&lt;/P&gt;&lt;P&gt;VOR_WA_FAKTURA Billing before Goods Issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward points&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 13:20:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/billing-user-exit-please-help/m-p/2455293#M550527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T13:20:57Z</dc:date>
    </item>
  </channel>
</rss>

