<?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 Dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/2540072#M577094</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;CHAR(22).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN (CHAR) TO &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I_MPRICE = &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why iam getting dump when iam moving to i_mprice??Please tell me onn this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jul 2007 12:22:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-12T12:22:01Z</dc:date>
    <item>
      <title>Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/2540072#M577094</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;CHAR(22).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN (CHAR) TO &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I_MPRICE = &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why iam getting dump when iam moving to i_mprice??Please tell me onn this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:22:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/2540072#M577094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T12:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/2540073#M577095</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;The reason can be that the type of data that your FIELD-SYMBOL has is not type compatiable with that of I_MPRICE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the type of &amp;lt;FS&amp;gt; and I_MPRICE?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:26:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/2540073#M577095</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-07-12T12:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/2540074#M577096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Analyse the Dump Analysis? what's wrong it displays. See ST22 for dump.&lt;/P&gt;&lt;P&gt;see the doc on field symbols&lt;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;fs&amp;gt; { typing | STRUCTURE struc DEFAULT dobj }. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Extras: &lt;/P&gt;&lt;P&gt;1. ... typing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. ... STRUCTURE struc DEFAULT dobj &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;The FIELD-SYMBOLS statement declares a field symbol &amp;lt;fs&amp;gt;. The naming conventions apply to the name fs. The angle brackets of the field symbols indicate the difference to data objects and are obligatory. You can declare field symbols in any procedure and in the global declaration section of an ABAP program, but not in the declaration section of a class or an interface. You can use a field symbol in any operand position in which it is visible and which match the typing defined using typing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After its declaration, a field symbol is initial - that is, it does not reference a memory area. You have to assign a memory area to it (normally using the ASSIGN statement) before you can use it as an operand. Otherwise an exception will be triggered. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 1 &lt;/P&gt;&lt;P&gt;... typing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;You can use the addition typing to type the field symbol. The syntax of typing is described under Syntax of Typing. The typing specifies which memory areas can be assigned to the field symbol (see Checking the Typing) and in which operand positions it can be used. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;You can omit the addition typing outside of methods. In this case, the field symbol has the complete generic type any and is implicitly assigned the predefined constant space during the declaration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2 &lt;/P&gt;&lt;P&gt;... STRUCTURE struc DEFAULT dobj &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;If you specify the addition STRUCTURE instead of typing for a field symbol, and struc is a local program structure (a data object, not a data type) or a flat structure from the ABAP Dictionary, this structure is cast for the field symbol &amp;lt;fs&amp;gt;. You have to specify a data object dobj that is initially assigned to the field symbol. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field symbol copies the technical attributes of structure struc as if it were completely typed. When you assign a data object using the addition DEFAULT, or later using ASSIGN, its complete data type is not checked in non- Unicode programs. Instead, the system merely checks whether it has at least the length of the structure and its alignment. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Unicode programs, we differentiate between structured and elementary data objects. For a structured data object dobj, its Unicode fragment view has to match the one of struc. In the case of an elementary data object, the object must be character-type and flat, and struc must be purely character-type. The same applies to assignments of data objects to field symbols typed using STRUCTURE when using the ASSIGN statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;Field symbols declared using the addition STRUCTURE are a mixture of typed field symbols and a utility for casting structured data types. You should use the additions TYPE or LIKE for the FIELD-SYMBOLS statement to type field symbols, while the addition CASTING of the ASSIGN statement is used for casting. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;The first example shows the obsolete usage of the addition STRUCTURE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA wa1 TYPE c LENGTH 512. &lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;scarr1&amp;gt; STRUCTURE scarr DEFAULT wa1. &lt;/P&gt;&lt;P&gt;&amp;lt;scarr1&amp;gt;-carrid = '...'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second example shows the replacement of STRUCTURE with the additions TYPE and CASTING. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA wa2 TYPE c LENGTH 512. &lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;scarr2&amp;gt; TYPE scarr. &lt;/P&gt;&lt;P&gt;ASSIGN wa2 TO &amp;lt;scarr2&amp;gt; CASTING. &lt;/P&gt;&lt;P&gt;&amp;lt;scarr2&amp;gt;-carrid = '...'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for useful Answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:26:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/2540074#M577096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T12:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/2540075#M577097</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;Change the parameter name CHAR. I thing Its reserved one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the Data type of  I_MPRICE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:27:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/2540075#M577097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T12:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/2540076#M577098</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 : I_MPRICE TYPE PMCO_EXT.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS : &amp;lt;FS&amp;gt; type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:38:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/2540076#M577098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T12:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/2540077#M577099</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;go through this example and use like that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF line,&lt;/P&gt;&lt;P&gt;         col1 TYPE c,&lt;/P&gt;&lt;P&gt;         col2 TYPE c,&lt;/P&gt;&lt;P&gt;       END OF line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: wa TYPE line,&lt;/P&gt;&lt;P&gt;      itab TYPE HASHED TABLE OF line WITH UNIQUE KEY col1,&lt;/P&gt;&lt;P&gt;      key(4) TYPE c VALUE 'COL1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;fs&amp;gt; TYPE ANY TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN itab TO &amp;lt;fs&amp;gt;.&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, 12 Jul 2007 12:44:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/2540077#M577099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T12:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/2540078#M577100</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 : I_MPRICE TYPE PMCO_EXT.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS : &amp;lt;FS&amp;gt; type any.&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;ASSIGN CHAR TO &amp;lt;FS&amp;gt; CASTING TYPE PMCO_EXT.&lt;/P&gt;&lt;P&gt;I_MPRICE = &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:45:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/2540078#M577100</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-07-12T12:45:21Z</dc:date>
    </item>
  </channel>
</rss>

