<?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 hello SDNs in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hello-sdns/m-p/1498256#M231091</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have problem with coding for the below data. please help me in this regard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3* 1 = 0003&lt;/P&gt;&lt;P&gt;3* 2 = 0006&lt;/P&gt;&lt;P&gt;3* 3 = 0009&lt;/P&gt;&lt;P&gt;3* 4 = 0012&lt;/P&gt;&lt;P&gt;3* 5 = 0015&lt;/P&gt;&lt;P&gt;See below the structure of local file&lt;/P&gt;&lt;P&gt;__________________________________&lt;/P&gt;&lt;P&gt;Name                 Cod name                 No&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;P&gt; --                       Master                    -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; --                       Master                    -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; --                       Visa                      -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; --                       Master                    -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;--                        Master                    -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;___________________________________&lt;/P&gt;&lt;P&gt;Write code for Knowing how many master and visa records present in local file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Jul 2006 16:46:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-31T16:46:43Z</dc:date>
    <item>
      <title>hello SDNs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hello-sdns/m-p/1498256#M231091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have problem with coding for the below data. please help me in this regard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3* 1 = 0003&lt;/P&gt;&lt;P&gt;3* 2 = 0006&lt;/P&gt;&lt;P&gt;3* 3 = 0009&lt;/P&gt;&lt;P&gt;3* 4 = 0012&lt;/P&gt;&lt;P&gt;3* 5 = 0015&lt;/P&gt;&lt;P&gt;See below the structure of local file&lt;/P&gt;&lt;P&gt;__________________________________&lt;/P&gt;&lt;P&gt;Name                 Cod name                 No&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;P&gt; --                       Master                    -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; --                       Master                    -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; --                       Visa                      -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; --                       Master                    -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;--                        Master                    -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;___________________________________&lt;/P&gt;&lt;P&gt;Write code for Knowing how many master and visa records present in local file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2006 16:46:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hello-sdns/m-p/1498256#M231091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-31T16:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: hello SDNs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hello-sdns/m-p/1498257#M231092</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;Check this :&lt;/P&gt;&lt;P&gt;I.&lt;/P&gt;&lt;P&gt;   data : x_fix type i,&lt;/P&gt;&lt;P&gt;          x_counter type i,&lt;/P&gt;&lt;P&gt;          x_max type i,&lt;/P&gt;&lt;P&gt;          x_output(4) type n.&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;   x_fix = 3.&lt;/P&gt;&lt;P&gt;   x_max = 5.&lt;/P&gt;&lt;P&gt;   x_counter = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   loop at x_max    &lt;/P&gt;&lt;P&gt;     x_output = x_fix * x_counter &amp;lt;---- output&lt;/P&gt;&lt;P&gt;     x_counter = x_counter + 1. &lt;/P&gt;&lt;P&gt;     if x_counter GE x_max .&lt;/P&gt;&lt;P&gt;       exit.&lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;P&gt;   endloop.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;II.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how many master and visa records present in local file &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use FM : GUI_UPLOAD to get data into internal table.if data comes to x_tab internal table.&lt;/P&gt;&lt;P&gt;   x_tab1[] = x_tab.&lt;/P&gt;&lt;P&gt;   delete x_tab where name = 'Master'.&lt;/P&gt;&lt;P&gt;   delete x_tab1 where name = 'Visa'.&lt;/P&gt;&lt;P&gt;   describe table x_tab lines x_lines.&lt;/P&gt;&lt;P&gt;   describe table x_tab1 lines x_lines1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x_lines contains count of Visa records&lt;/P&gt;&lt;P&gt;x_lines1 contains count of Master records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Appana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2006 17:09:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hello-sdns/m-p/1498257#M231092</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2006-07-31T17:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: hello SDNs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hello-sdns/m-p/1498258#M231093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi aravind,&lt;/P&gt;&lt;P&gt;i have problem with coding for the below data. please help me in this regard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3* 1 = 0003&lt;/P&gt;&lt;P&gt;3* 2 = 0006&lt;/P&gt;&lt;P&gt;3* 3 = 0009&lt;/P&gt;&lt;P&gt;3* 4 = 0012&lt;/P&gt;&lt;P&gt;3* 5 = 0015&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data b type i.&lt;/P&gt;&lt;P&gt;data a type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: x  type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do 10 times.&lt;/P&gt;&lt;P&gt;b = x * sy-index.&lt;/P&gt;&lt;P&gt; write:/ 'result', b.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write code for Knowing how many master and visa records present in local file &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;upload the data from local file into an internal table (ITAB) using the FM GUI_UPLOAD,&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;if itab-name = 'Master'.&lt;/P&gt;&lt;P&gt;describe table itab lines v_lines.&lt;/P&gt;&lt;P&gt;elseif itab-name = 'Visa'.&lt;/P&gt;&lt;P&gt;describe table itab lines v_lines.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps,&lt;/P&gt;&lt;P&gt;do reward if it helps,&lt;/P&gt;&lt;P&gt;priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2006 17:28:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hello-sdns/m-p/1498258#M231093</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-31T17:28:17Z</dc:date>
    </item>
  </channel>
</rss>

