<?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: Help regarding the Function Module GUID_CREATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-the-function-module-guid-create/m-p/5646712#M1284996</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This function returns  the system id in 3 forms one in X(Hex form), one in Char (length 22) and the other in Char(length 32).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 May 2009 07:32:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-08T07:32:09Z</dc:date>
    <item>
      <title>Help regarding the Function Module GUID_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-the-function-module-guid-create/m-p/5646711#M1284995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can some one explain the functionality of GUID_CREATE function module.Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With regards,&lt;/P&gt;&lt;P&gt;Srini...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 07:27:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-the-function-module-guid-create/m-p/5646711#M1284995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-08T07:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help regarding the Function Module GUID_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-the-function-module-guid-create/m-p/5646712#M1284996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This function returns  the system id in 3 forms one in X(Hex form), one in Char (length 22) and the other in Char(length 32).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 07:32:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-the-function-module-guid-create/m-p/5646712#M1284996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-08T07:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Help regarding the Function Module GUID_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-the-function-module-guid-create/m-p/5646713#M1284997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;This function module is used to generate a so-called Global Unique Identifier.&lt;/P&gt;&lt;P&gt;You can use it to get a worldwide unique key for arbitrary purposes like e.g. internal key of a table entry/business object or internal key of shared memory objects (EXPORT/IMPORT MEMORY) or unique key for Server-Side Cookies and so on.&lt;/P&gt;&lt;P&gt;This function is also very useful when exchanging data with other SAP systems, ensuring that you use a unique and distiinct key (avoiding key conflicts with other SAP systems).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Volker&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 07:33:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-the-function-module-guid-create/m-p/5646713#M1284997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-08T07:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Help regarding the Function Module GUID_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-the-function-module-guid-create/m-p/5646714#M1284998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Guid for unique identification assigned list&lt;/P&gt;&lt;P&gt;It think it will generate the one unique key in the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: con_log_guid   TYPE  guid_16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUID_CREATE'&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    ev_guid_16 = con_log_guid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE con_log_guid .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this example it is generating a 16number id.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 07:35:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-the-function-module-guid-create/m-p/5646714#M1284998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-08T07:35:11Z</dc:date>
    </item>
  </channel>
</rss>

