<?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: F.M NUMBER_GET_NEXT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705235#M308969</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes.  The lock is only required if you are editing the number range itself, rather than retrieving the next number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Feb 2011 15:05:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-02-02T15:05:05Z</dc:date>
    <item>
      <title>F.M NUMBER_GET_NEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705226#M308960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HOW TO USE THIS F.M WITH EXAMPLE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Nov 2006 06:59:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705226#M308960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-02T06:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: F.M NUMBER_GET_NEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705227#M308961</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;data: number type c.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'NUMBER_GET_NEXT'&lt;/P&gt;&lt;P&gt;           EXPORTING&lt;/P&gt;&lt;P&gt;                nr_range_nr = '01'&lt;/P&gt;&lt;P&gt;                object      = 'AUFTRAG'&lt;/P&gt;&lt;P&gt;           IMPORTING&lt;/P&gt;&lt;P&gt;                number      = number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here number cud b any type of number which will fil ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps u.&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Seema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Nov 2006 07:02:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705227#M308961</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-02T07:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: F.M NUMBER_GET_NEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705228#M308962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a serial number range object in SNRO transaction(give 01 in starting number) and every time you want a new number you can call the NUMBER_GET_NEXT function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'NUMBER_GET_NEXT'
EXPORTING
nr_range_nr = '01' (or pass the Variable)
object = 'ObjectName'
IMPORTING
number = number.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;A href="http://www.erpgenie.com/sap/abap/code/abap33.htm" target="test_blank"&gt;http://www.erpgenie.com/sap/abap/code/abap33.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ex----&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;General - Number Range Generation &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;In the 4.6x environment, SAP have included a number range generation&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;program just like those used for Purchase Order, Sales Order etc.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;This SAP number range generation is an include program.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;PRE&gt;&lt;CODE&gt;INCLUDE ZRANGENO.
*
* Always have to be included in the main program data declaration
*
* data: wnorange like INRI-NRRANGENR,            "number range,
*       wsubobj  like inri-SUBOBJECT,            "sub object
*       wdocno(12).
*
* Steps :-
* 1. Number range Sub Object must be maintain in table ZSGRP
*    You can used transaction SE16 to create a table entries.
* 2. Maintain number range and intervals in transaction code SNUM
*
* Written by : SAP Basis, ABAP Programming and Other IMG Stuff
*              &amp;lt;a href="http://www.sap-img.com" TARGET="test_blank"&amp;gt;http://www.sap-img.com&amp;lt;/a&amp;gt;
*

call function 'NUMBER_RANGE_ENQUEUE'
         exporting
               object              = 'ZOWNNO'   "Create with SNUM
         exceptions
               foreign_lock        = 1
               object_not_found    = 2
               system_failure      = 3
               others              = 4.
  if sy-subrc ne 0.
*   message e086 with 'Lock error' sy-subrc.
  endif.

  call function 'NUMBER_GET_NEXT'
         exporting
               nr_range_nr         = wnorange
               object              = 'ZOWNNO'
               subobject           = wsubobj
         importing
               number                  = wdocno  "Number generated by SAP
         exceptions
               interval_not_found      = 1
               number_range_not_intern = 2
               object_not_found        = 3
               quantity_is_0           = 4
               quantity_is_not_1       = 5
               internal_overflow       = 6
               others                  = 7.
  if sy-subrc ne 0.
*   message e086 with 'Number Range' sy-subrc.
  endif.

  call function 'NUMBER_RANGE_DEQUEUE'
    exporting
      object                 = 'ZOWNNO'.

  if sy-subrc &amp;lt;&amp;gt; 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Nov 2006 07:03:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705228#M308962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-02T07:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: F.M NUMBER_GET_NEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705229#M308963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Check this.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT Y_SERAIL_NO .

data: w_range type INRI-NRRANGENR value '01',
     w_obj type INRI-OBJECT value 'ZERROR_KEY',
     w_serial_no type NRIV-NRLEVEL.
CALL FUNCTION 'NUMBER_GET_NEXT'
  EXPORTING
    NR_RANGE_NR                   = w_range
    OBJECT                        = w_obj
   QUANTITY                      = '1'
*   SUBOBJECT                     = ' '
*   TOYEAR                        = '0000'
*   IGNORE_BUFFER                 = ' '
 IMPORTING
   NUMBER                        = w_serial_no
*   QUANTITY                      =
*   RETURNCODE                    =
* EXCEPTIONS
*   INTERVAL_NOT_FOUND            = 1
*   NUMBER_RANGE_NOT_INTERN       = 2
*   OBJECT_NOT_FOUND              = 3
*   QUANTITY_IS_0                 = 4
*   QUANTITY_IS_NOT_1             = 5
*   INTERVAL_OVERFLOW             = 6
*   BUFFER_OVERFLOW               = 7
*   OTHERS                        = 8
          .
IF SY-SUBRC &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
write:/ w_serial_no.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Nov 2006 07:05:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705229#M308963</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-02T07:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: F.M NUMBER_GET_NEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705230#M308964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check the documentation :&lt;/P&gt;&lt;P&gt;NUmber range: Assigns next free number&lt;/P&gt;&lt;P&gt;Preliminary comment&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This function module has been released.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The documentation is being revised so that it conforms to the requirements for released function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function module assigns the next free numbers of a number range. A number is assigned as a default if no larger number is demanded in the parameter QUANTITY. If more than one number is demanded and not enough numbers are available up to the interval limit, the numbers are only assigned up to the interval limit. If the last number was assigned, the first interval number is provided again during the next call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The length of the number depends on the definition of the number range object. However, the length is not determined from the definition when allocating, but is calculated from the length of th from-number of the number range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All exceptions are created with MESSAGE ... RAISING ... .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Object HUGO, not year-dependent, next free number searched for&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: RC         LIKE INRI-RETURNCODE,&lt;/P&gt;&lt;P&gt;      NUMBER(10) TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CALL FUNCTION 'NUMBER_GET_NEXT'&lt;/P&gt;&lt;P&gt;        EXPORTING OBJECT          = 'HUGO'&lt;/P&gt;&lt;P&gt;                    NR_RANGE_NR     = '01'&lt;/P&gt;&lt;P&gt;        IMPORTING RETURNCODE      = RC&lt;/P&gt;&lt;P&gt;                    NUMBER          = NUMBER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CASE RC.&lt;/P&gt;&lt;P&gt;     WHEN ' '.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     everything o.k.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     WHEN '1'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     the assigned number lies in the critical area.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     WHEN '2'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     this was the last number, next time the first number&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      will be assigned&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Object EGON, year-dependent, next 5 free numbers for 1992 in company code 0001 searched for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: RC         LIKE INRI-RETURNCODE,&lt;/P&gt;&lt;P&gt;      NUMBER(10) TYPE C,&lt;/P&gt;&lt;P&gt;      YEAR       LIKE INRI-TOYEAR,&lt;/P&gt;&lt;P&gt;      QUAN       LIKE INRI-QUANTITY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   YEAR          = '1992'.&lt;/P&gt;&lt;P&gt;   QUAN          = 5.&lt;/P&gt;&lt;P&gt;   T001-BUKRS    = '0001'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CALL FUNCTION 'NUMBER_GET_NEXT'&lt;/P&gt;&lt;P&gt;        EXPORTING OBJECT           = 'EGON'&lt;/P&gt;&lt;P&gt;                    NR_RANGE_NR      = '01'&lt;/P&gt;&lt;P&gt;                   SUBOBJECT        = T001-BUKRS&lt;/P&gt;&lt;P&gt;                   TOYEAR           = YEAR&lt;/P&gt;&lt;P&gt;        IMPORTING RETURNCODE       = RC&lt;/P&gt;&lt;P&gt;                    QUANTITY         = QUAN&lt;/P&gt;&lt;P&gt;                   NUMBER           = NUMBER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;the last assigned number is in NUMBER&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;the number of the assigned numbers is in QUANTITY&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;the first free number is calculated from:&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;NUMBER - QUANTITY + 1.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CASE RC.&lt;/P&gt;&lt;P&gt;     WHEN ' '.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     everything o.k.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     WHEN '1'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     the assigned number lies in the critical area.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     WHEN '2'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     this was the last number, next time the first number will be        assigned&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;     WHEN '3'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     more numbers are demanded than are available,&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     the number of the assigned numbers is in QUAN.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Sandeep Josyula&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Mark helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Nov 2006 07:10:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705230#M308964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-02T07:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: F.M NUMBER_GET_NEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705231#M308965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NUMBER_GET_NEXT Get the next unique number in a number range. Use tcode SNRO for maintaining number ranges. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'NUMBER_RANGE_ENQUEUE'&lt;/P&gt;&lt;P&gt;         exporting&lt;/P&gt;&lt;P&gt;               object              = 'ZOWNNO'   "Create with SNUM&lt;/P&gt;&lt;P&gt;         exceptions&lt;/P&gt;&lt;P&gt;               foreign_lock        = 1&lt;/P&gt;&lt;P&gt;               object_not_found    = 2&lt;/P&gt;&lt;P&gt;               system_failure      = 3&lt;/P&gt;&lt;P&gt;               others              = 4.&lt;/P&gt;&lt;P&gt;  if sy-subrc ne 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  message e086 with 'Lock error' sy-subrc.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'NUMBER_GET_NEXT'&lt;/P&gt;&lt;P&gt;         exporting&lt;/P&gt;&lt;P&gt;               nr_range_nr         = wnorange&lt;/P&gt;&lt;P&gt;               object              = 'ZOWNNO'&lt;/P&gt;&lt;P&gt;               subobject           = wsubobj&lt;/P&gt;&lt;P&gt;         importing&lt;/P&gt;&lt;P&gt;               number                  = wdocno  "Number generated by SAP&lt;/P&gt;&lt;P&gt;         exceptions&lt;/P&gt;&lt;P&gt;               interval_not_found      = 1&lt;/P&gt;&lt;P&gt;               number_range_not_intern = 2&lt;/P&gt;&lt;P&gt;               object_not_found        = 3&lt;/P&gt;&lt;P&gt;               quantity_is_0           = 4&lt;/P&gt;&lt;P&gt;               quantity_is_not_1       = 5&lt;/P&gt;&lt;P&gt;               internal_overflow       = 6&lt;/P&gt;&lt;P&gt;               others                  = 7.&lt;/P&gt;&lt;P&gt;  if sy-subrc ne 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  message e086 with 'Number Range' sy-subrc.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'NUMBER_RANGE_DEQUEUE'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      object                 = 'ZOWNNO'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Nov 2006 09:52:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705231#M308965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-02T09:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: F.M NUMBER_GET_NEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705232#M308966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just to clarify for anyone who might be misled by the above (as I was)  - you do not need to (nor should you) lock the number range itself with NUMBER_RANGE_ENQUEUE before calling NUMBER_GET_NEXT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2009 10:31:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705232#M308966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-27T10:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: F.M NUMBER_GET_NEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705233#M308967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a question. How do you know which range you have to pass? For example I need the range for BSIS table. HOw should I know its range?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mohamed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2009 19:03:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705233#M308967</guid>
      <dc:creator>mrahhaoui</dc:creator>
      <dc:date>2009-08-25T19:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: F.M NUMBER_GET_NEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705234#M308968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what makes you say this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does the function module number of next lock and lock itself already?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Apr 2010 18:41:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705234#M308968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-30T18:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: F.M NUMBER_GET_NEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705235#M308969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes.  The lock is only required if you are editing the number range itself, rather than retrieving the next number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2011 15:05:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-m-number-get-next/m-p/1705235#M308969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-02T15:05:05Z</dc:date>
    </item>
  </channel>
</rss>

