<?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 compare fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/compare-fields/m-p/4407678#M1047459</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an internal table of type bsid&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and another of type knc1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my selection screen i have budat as selection.I am taking only the month part of the budat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i loop in table bsid to get the total of month 'May' from i_knc1, the problem is that I dont know how to retrieve the value of the fiels um05u in table i_knc1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at gi_bsid into wa_bsid.&lt;/P&gt;&lt;P&gt; read table i_knc1 with table key kunnr = wa_bsid-kunnr &lt;/P&gt;&lt;P&gt;bukrs = wa_bsid-bukrs&lt;/P&gt;&lt;P&gt;*****here i dont know how to compare the value of 'um' + the month + 'u'&lt;/P&gt;&lt;P&gt;*********************&lt;/P&gt;&lt;P&gt;how to retrieve the value 'um'&lt;EM&gt;month&lt;/EM&gt;' u' from knc1&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can somebody help me ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Sep 2008 15:10:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-12T15:10:59Z</dc:date>
    <item>
      <title>compare fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/compare-fields/m-p/4407678#M1047459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an internal table of type bsid&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and another of type knc1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my selection screen i have budat as selection.I am taking only the month part of the budat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i loop in table bsid to get the total of month 'May' from i_knc1, the problem is that I dont know how to retrieve the value of the fiels um05u in table i_knc1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at gi_bsid into wa_bsid.&lt;/P&gt;&lt;P&gt; read table i_knc1 with table key kunnr = wa_bsid-kunnr &lt;/P&gt;&lt;P&gt;bukrs = wa_bsid-bukrs&lt;/P&gt;&lt;P&gt;*****here i dont know how to compare the value of 'um' + the month + 'u'&lt;/P&gt;&lt;P&gt;*********************&lt;/P&gt;&lt;P&gt;how to retrieve the value 'um'&lt;EM&gt;month&lt;/EM&gt;' u' from knc1&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can somebody help me ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 15:10:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/compare-fields/m-p/4407678#M1047459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T15:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: compare fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/compare-fields/m-p/4407679#M1047460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One quick solution is to go for a dynamic select instead of doing a loop endloop and transferring the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 15:23:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/compare-fields/m-p/4407679#M1047460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T15:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: compare fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/compare-fields/m-p/4407680#M1047461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FIELD-SYMBOLS : &amp;lt;FS&amp;gt; TYPE ANY.

LOOP........
CONCATENAMTE 'I_KNC1-' 'UM' MONTH 'U' INTO V_FIELDNAME.
CONDENSE V_FIELDNAME NO-GAPS.
'
ASSIGN (V_FIELDNAME) TO &amp;lt;FS&amp;gt;.

IF &amp;lt;FS&amp;gt; NE  ..... " Validate here

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 15:23:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/compare-fields/m-p/4407680#M1047461</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-09-12T15:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: compare fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/compare-fields/m-p/4407681#M1047462</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;Try to get the data using the dynamic fields.&lt;/P&gt;&lt;P&gt;Eg. Once you get the value as 'UM05U'. &lt;/P&gt;&lt;P&gt;w_data = ( KNC1-UM05U ).&lt;/P&gt;&lt;P&gt;write: / w_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The value 'KNC1-UM05U' has to be stored in some data variabel and pass that data variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SimpleProg.&lt;/P&gt;&lt;P&gt;DATA:  TEST(10) TYPE C.&lt;/P&gt;&lt;P&gt;SELECT  * FROM KNC1&lt;/P&gt;&lt;P&gt;WHERE KUNNR = '0000001000'.&lt;/P&gt;&lt;P&gt;  TEST = ( KNC1-UM05U ).&lt;/P&gt;&lt;P&gt;  WRITE TEST.&lt;/P&gt;&lt;P&gt;  EXIT.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 15:24:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/compare-fields/m-p/4407681#M1047462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T15:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: compare fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/compare-fields/m-p/4407682#M1047463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi avinash&lt;/P&gt;&lt;P&gt;how u do a dynamic selection?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 10:03:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/compare-fields/m-p/4407682#M1047463</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T10:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: compare fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/compare-fields/m-p/4407683#M1047464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; hi avinash&lt;/P&gt;&lt;P&gt;&amp;gt; how u do a dynamic selection?&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just place a search in SDN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 10:12:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/compare-fields/m-p/4407683#M1047464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T10:12:37Z</dc:date>
    </item>
  </channel>
</rss>

