<?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: Unique id in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unique-id/m-p/4479392#M1060727</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; Unique ID is nothing but no duplication in the serious like : 1 2 3 4 5 6 ....n. There should not be any repetation in the value what your entering or automatic generation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your case that function module will create the value automatically i mean if you have the value 4 in table function module will create 5(It will compare the previous value and create the next value). If any duplication occurs in the unique 'Error will through  at the time updating in table'.&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;Saran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Sep 2008 12:29:03 GMT</pubDate>
    <dc:creator>saranwin</dc:creator>
    <dc:date>2008-09-15T12:29:03Z</dc:date>
    <item>
      <title>Unique id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unique-id/m-p/4479389#M1060724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a small dought regarding Unique id.&lt;/P&gt;&lt;P&gt;what exactly unique id means.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i found a function module &lt;/P&gt;&lt;P&gt;SYSTEM_UUID_C_CREATE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which creates a unique id worldwide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any body tell me what exactly this unique id means and what is the use of it with a example.&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;PRIYANKA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 12:15:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unique-id/m-p/4479389#M1060724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T12:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: Unique id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unique-id/m-p/4479390#M1060725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Priyanka&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unique means that regardless how many ID's you generate you will never get a duplicate ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There also is another function module you can use to achieve this. It provides ID's of different length:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GUID_CREATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You usually use this function to generate ID's when you have to make sure that there won't be any duplicates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 12:25:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unique-id/m-p/4479390#M1060725</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T12:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: Unique id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unique-id/m-p/4479391#M1060726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi priyanka,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what i get in Google search &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We sometimes face situations where we need an ID for uniquely identifying our objects. SAP had provided a function module for the same. We can use the function module SYSTEM_UUID_C_CREATE for generating a world wide unique ID. (Yes, this is a worldwide unique ID. No other person can get the same ID even if two people execute the same function module, at the same time.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the sample code for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT ZGUID .

data: unique_id like sys_uid.

start-of-selection.

clear unique_id.

CALL FUNCTION 'SYSTEM_UUID_C_CREATE'
IMPORTING
UUID = unique_id.

write : unique_id.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 12:26:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unique-id/m-p/4479391#M1060726</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T12:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: Unique id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unique-id/m-p/4479392#M1060727</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; Unique ID is nothing but no duplication in the serious like : 1 2 3 4 5 6 ....n. There should not be any repetation in the value what your entering or automatic generation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your case that function module will create the value automatically i mean if you have the value 4 in table function module will create 5(It will compare the previous value and create the next value). If any duplication occurs in the unique 'Error will through  at the time updating in table'.&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;Saran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 12:29:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unique-id/m-p/4479392#M1060727</guid>
      <dc:creator>saranwin</dc:creator>
      <dc:date>2008-09-15T12:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: Unique id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unique-id/m-p/4479393#M1060728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;kartik before posting the question in sdn I have done the same thing what you did.&lt;/P&gt;&lt;P&gt;Instead i even searched the sdn form but could not find a clear answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;PRIYANKA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 12:30:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unique-id/m-p/4479393#M1060728</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T12:30:42Z</dc:date>
    </item>
  </channel>
</rss>

