<?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: table that stores SNRO number range data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-that-stores-snro-number-range-data/m-p/4746067#M1113232</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the table NRIV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Nov 2008 05:42:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-05T05:42:09Z</dc:date>
    <item>
      <title>table that stores SNRO number range data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-that-stores-snro-number-range-data/m-p/4746066#M1113231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the table that stores SNRO number range data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 05:41:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-that-stores-snro-number-range-data/m-p/4746066#M1113231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T05:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: table that stores SNRO number range data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-that-stores-snro-number-range-data/m-p/4746067#M1113232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the table NRIV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 05:42:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-that-stores-snro-number-range-data/m-p/4746067#M1113232</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T05:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: table that stores SNRO number range data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-that-stores-snro-number-range-data/m-p/4746068#M1113233</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;Check table NRIV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One suggestion to find out the table names, press F1 on the field and press Technical Information button to get the table name and field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Navneeth K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 05:46:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-that-stores-snro-number-range-data/m-p/4746068#M1113233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T05:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: table that stores SNRO number range data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-that-stores-snro-number-range-data/m-p/4746069#M1113234</link>
      <description>CONSTANTS : lc_rangeobj  TYPE inri-object VALUE 'ZRFID_RANG',&lt;BR /&gt;            lc_range_num LIKE inri-nrrangenr VALUE '01'.&lt;BR /&gt;&lt;BR /&gt;DATA : lv_nextnum TYPE i.&lt;BR /&gt;BREAK-POINT.&lt;BR /&gt;CALL FUNCTION 'NUMBER_RANGE_ENQUEUE'&lt;BR /&gt;  EXPORTING&lt;BR /&gt;    object           = lc_rangeobj&lt;BR /&gt;  EXCEPTIONS&lt;BR /&gt;    foreign_lock     = 1&lt;BR /&gt;    object_not_found = 2&lt;BR /&gt;    system_failure   = 3&lt;BR /&gt;    OTHERS           = 4.&lt;BR /&gt;IF sy-subrc NE 0.&lt;BR /&gt;** message e086 with 'Lock error' sy-subrc.&lt;BR /&gt;ENDIF.&lt;BR /&gt;&lt;BR /&gt;CALL FUNCTION 'NUMBER_GET_NEXT'&lt;BR /&gt;  EXPORTING&lt;BR /&gt;    nr_range_nr             = lc_range_num&lt;BR /&gt;    object                  = lc_rangeobj&lt;BR /&gt;*   QUANTITY                = '1'&lt;BR /&gt;*   SUBOBJECT               = ' '&lt;BR /&gt;*   TOYEAR                  = '0000'&lt;BR /&gt;*   IGNORE_BUFFER           = ' '&lt;BR /&gt;  IMPORTING&lt;BR /&gt;    number                  = lv_nextnum " Number generated by Range Generator Object&lt;BR /&gt;*   QUANTITY                =&lt;BR /&gt;*   RETURNCODE              = lv_returncode&lt;BR /&gt;  EXCEPTIONS&lt;BR /&gt;    interval_not_found      = 1&lt;BR /&gt;    number_range_not_intern = 2&lt;BR /&gt;    object_not_found        = 3&lt;BR /&gt;    quantity_is_0           = 4&lt;BR /&gt;    quantity_is_not_1       = 5&lt;BR /&gt;    interval_overflow       = 6&lt;BR /&gt;    buffer_overflow         = 7&lt;BR /&gt;    OTHERS                  = 8.&lt;BR /&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt;* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;BR /&gt;* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;BR /&gt;ENDIF.&lt;BR /&gt;&lt;BR /&gt;CALL FUNCTION 'NUMBER_RANGE_DEQUEUE'&lt;BR /&gt;  EXPORTING&lt;BR /&gt;    object = lc_rangeobj.&lt;BR /&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt;  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;BR /&gt;   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;BR /&gt;ENDIF.&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;DATA(lv_new_nextnum) = lv_nextnum.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2023 13:27:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-that-stores-snro-number-range-data/m-p/4746069#M1113234</guid>
      <dc:creator>rattaiah88</dc:creator>
      <dc:date>2023-09-21T13:27:49Z</dc:date>
    </item>
  </channel>
</rss>

