<?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: Internal table issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/9015936#M1699043</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;D is considered as character type, see: &lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70ehp3/helpdata/en/fc/eb2fd9358411d1829f0000e829fbfe/frameset.htm"&gt;http://help.sap.com/saphelp_nw70ehp3/helpdata/en/fc/eb2fd9358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Thorsten&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 30 Sep 2012 15:15:34 GMT</pubDate>
    <dc:creator>schneidertho</dc:creator>
    <dc:date>2012-09-30T15:15:34Z</dc:date>
    <item>
      <title>Internal table issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/9015933#M1699040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi gurus,&amp;nbsp; i have written the below code , &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;
types : begin of stud_emp,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name type c length 10,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rno type i,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dob type d,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end of studn_emp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data itab type table of stud_emp.&lt;/P&gt;&lt;P&gt;data wa type stud_emp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa-name = 'a'. wa-rno = 1.&amp;nbsp; wa-dob = 20120101.&lt;/P&gt;&lt;P&gt;append wa to itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab into wa.&lt;/P&gt;&lt;P&gt;write : wa-name, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa-rno,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa-dob, &lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but here i am getting the below output , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a 1&amp;nbsp; 00000000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i should get the output as a 1 20120101.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am performed the debuging also , during debuging also i m getting 00000000 in the workarea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please what might be the issue, to get the unexpected output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tnx ,&lt;/P&gt;&lt;P&gt;praveen kodam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Sep 2012 18:55:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/9015933#M1699040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-09-29T18:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/9015934#M1699041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen, &lt;/P&gt;&lt;P&gt;try: wa-dob = '20120101'. (i.e. with quotation marks).&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Thorsten&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Sep 2012 22:49:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/9015934#M1699041</guid>
      <dc:creator>schneidertho</dc:creator>
      <dc:date>2012-09-29T22:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/9015935#M1699042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi thorsten&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tnx for the reply, but why to place those in the quotation. As per my idea only string has to be placed in the quotation mark.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tnx&lt;/P&gt;&lt;P&gt;praveen kodam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Sep 2012 03:49:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/9015935#M1699042</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-09-30T03:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/9015936#M1699043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;D is considered as character type, see: &lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70ehp3/helpdata/en/fc/eb2fd9358411d1829f0000e829fbfe/frameset.htm"&gt;http://help.sap.com/saphelp_nw70ehp3/helpdata/en/fc/eb2fd9358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Thorsten&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Sep 2012 15:15:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/9015936#M1699043</guid>
      <dc:creator>schneidertho</dc:creator>
      <dc:date>2012-09-30T15:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/9015937#M1699044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes praveen kodam, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to use&amp;nbsp;&amp;nbsp; quotation mark&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Naga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Sep 2012 15:25:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/9015937#M1699044</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-09-30T15:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/9015938#M1699045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Thorsten,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This was a useful link for our future reference.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Sep 2012 16:35:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-issue/m-p/9015938#M1699045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-09-30T16:35:48Z</dc:date>
    </item>
  </channel>
</rss>

