<?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: simple problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-problem/m-p/1847440#M359356</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;types: begin of ty_names,&lt;/P&gt;&lt;P&gt;         pernr type persno,&lt;/P&gt;&lt;P&gt;         nachn type PAD_NACHN,&lt;/P&gt;&lt;P&gt;         vorna type PAD_VORNA,&lt;/P&gt;&lt;P&gt;       end of ty_names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:  it_names type standard table of ty_names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;if not it_zfm_handy[] is initial.&lt;/P&gt;&lt;P&gt;select pernr nachn vorna &lt;/P&gt;&lt;P&gt;       from pa0002&lt;/P&gt;&lt;P&gt;       into table it_names&lt;/P&gt;&lt;P&gt;       for all entries in it_zfm_handy&lt;/P&gt;&lt;P&gt;       where pernr eq it_zfm_handy-pernr.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Jan 2007 15:32:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-18T15:32:13Z</dc:date>
    <item>
      <title>simple problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-problem/m-p/1847437#M359353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oop at table TABLE it_zfm_handy and for every record where the field pernr &amp;gt; 0, select the corresponding name from PA0002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to write this statement in coding.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 15:14:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-problem/m-p/1847437#M359353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T15:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: simple problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-problem/m-p/1847438#M359354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;Loop at it_zfm_handy.
 
  select Single nachn vorna from pa0002 
             into corresponding fields of it_zfm_handy
                     where pernr = it_zfm_handy-pernr.

modify it_zfm_handy.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 15:19:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-problem/m-p/1847438#M359354</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-01-18T15:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: simple problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-problem/m-p/1847439#M359355</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;Loop at it_zfm_handy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it_zfm_handy-pernr &amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single  vorna nachn from PA0002 into corresponding fields of it_zfm_handy where pernr = it_zfm_handy-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify it_zfm_handy transporting vorna nachn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLs close the thread if the prblem is solved and reward to all helpful answers....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;CNU&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 15:21:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-problem/m-p/1847439#M359355</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T15:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: simple problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-problem/m-p/1847440#M359356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;types: begin of ty_names,&lt;/P&gt;&lt;P&gt;         pernr type persno,&lt;/P&gt;&lt;P&gt;         nachn type PAD_NACHN,&lt;/P&gt;&lt;P&gt;         vorna type PAD_VORNA,&lt;/P&gt;&lt;P&gt;       end of ty_names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:  it_names type standard table of ty_names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;if not it_zfm_handy[] is initial.&lt;/P&gt;&lt;P&gt;select pernr nachn vorna &lt;/P&gt;&lt;P&gt;       from pa0002&lt;/P&gt;&lt;P&gt;       into table it_names&lt;/P&gt;&lt;P&gt;       for all entries in it_zfm_handy&lt;/P&gt;&lt;P&gt;       where pernr eq it_zfm_handy-pernr.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 15:32:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-problem/m-p/1847440#M359356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T15:32:13Z</dc:date>
    </item>
  </channel>
</rss>

