<?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 type SXMSMGUIDT declaring error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-sxmsmguidt-declaring-error/m-p/3754846#M903341</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Warren,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the type SXMSMGUIDT is already a table type (hence my first question, what is the type, is it a line type or a table type):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; DATA: i_message_guid TYPE sxmsmguidt,
      wa_message_guid TYPE sxmsmguid.

wa_message_guid = '123'.
APPEND wa_message_guid TO i_message_guid.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This will work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 May 2008 06:23:59 GMT</pubDate>
    <dc:creator>Sm1tje</dc:creator>
    <dc:date>2008-05-01T06:23:59Z</dc:date>
    <item>
      <title>Table type SXMSMGUIDT declaring error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-sxmsmguidt-declaring-error/m-p/3754840#M903335</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'm trying to declare an internal table of type SXMSMGUIDT and insert one row into it. However when I try to do so it's giving me an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: i_message_guid type STANDARD TABLE OF SXMSMGUIDT.
  
i_message_guid-SXMSMGUID = '123'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The type of "I_MESSAGE_GUID" cannot be converted to the type of "'123'".		&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I even tried to declare a work area and append the work area to the internal table but no luck. Does anyone know what I have done wrong with the declaration?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Warren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 09:34:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-sxmsmguidt-declaring-error/m-p/3754840#M903335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T09:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: Table type SXMSMGUIDT declaring error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-sxmsmguidt-declaring-error/m-p/3754841#M903336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How does this type look like?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 09:42:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-sxmsmguidt-declaring-error/m-p/3754841#M903336</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-04-30T09:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Table type SXMSMGUIDT declaring error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-sxmsmguidt-declaring-error/m-p/3754842#M903337</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;You can declara the work area &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_message_guid type STANDARD TABLE OF SXMSMGUIDT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: w_message_guid like line of i_message_guid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then you can add your text to this work area and append it to the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it is helpful for you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 09:45:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-sxmsmguidt-declaring-error/m-p/3754842#M903337</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T09:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: Table type SXMSMGUIDT declaring error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-sxmsmguidt-declaring-error/m-p/3754843#M903338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This kind of depends on the type. I recon, that this type consists NOT of a structure, but of one single field only. This means you can not just declare the workarea and name the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is probably something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_message_guid = '123' and not&lt;/P&gt;&lt;P&gt;w_message_guid-SXMSMGUID = '123'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 09:49:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-sxmsmguidt-declaring-error/m-p/3754843#M903338</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-04-30T09:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: Table type SXMSMGUIDT declaring error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-sxmsmguidt-declaring-error/m-p/3754844#M903339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I already tried this and got an error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The type of "W_MESSAGE_GUID" cannot be converted to the type of "'123'".		&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: i_message_guid type STANDARD TABLE OF SXMSMGUIDT.

data: w_message_guid like line of i_message_guid.

w_message_guid = '123'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 23:07:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-sxmsmguidt-declaring-error/m-p/3754844#M903339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T23:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: Table type SXMSMGUIDT declaring error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-sxmsmguidt-declaring-error/m-p/3754845#M903340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No that does not work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 23:12:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-sxmsmguidt-declaring-error/m-p/3754845#M903340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T23:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: Table type SXMSMGUIDT declaring error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-sxmsmguidt-declaring-error/m-p/3754846#M903341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Warren,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the type SXMSMGUIDT is already a table type (hence my first question, what is the type, is it a line type or a table type):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; DATA: i_message_guid TYPE sxmsmguidt,
      wa_message_guid TYPE sxmsmguid.

wa_message_guid = '123'.
APPEND wa_message_guid TO i_message_guid.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This will work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2008 06:23:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-sxmsmguidt-declaring-error/m-p/3754846#M903341</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-01T06:23:59Z</dc:date>
    </item>
  </channel>
</rss>

