<?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 mapping of fields? Dynamic select? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/mapping-of-fields-dynamic-select/m-p/6289176#M1389568</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ALL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am selecting fixed cost(EL_HF) from table TCKH3 and cost fields from table KEPH (fields are KST001,KST002..........KST040)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want if EL_HF = 0 then KST000 field should consider&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if EL_HF = 1 then KST001.................EL_HF = 40 then KST040.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one tell me how can i achive the same?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Oorvi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Oct 2009 15:15:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-22T15:15:16Z</dc:date>
    <item>
      <title>mapping of fields? Dynamic select?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mapping-of-fields-dynamic-select/m-p/6289176#M1389568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ALL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am selecting fixed cost(EL_HF) from table TCKH3 and cost fields from table KEPH (fields are KST001,KST002..........KST040)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want if EL_HF = 0 then KST000 field should consider&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if EL_HF = 1 then KST001.................EL_HF = 40 then KST040.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one tell me how can i achive the same?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Oorvi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 15:15:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mapping-of-fields-dynamic-select/m-p/6289176#M1389568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T15:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: mapping of fields? Dynamic select?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mapping-of-fields-dynamic-select/m-p/6289177#M1389569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: v_field   TYPE name_feld,
      v_numb(3) TYPE n.

DATA: v_cost TYPE kstel.

v_numb = tckh3-el_hf.
CONCATENATE 'KST'
            v_numb
       INTO v_field.
CONDENSE v_field NO-GAPS.

SELECT (v_field) INTO v_cost
                 FROM keph 
                WHERE........
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 15:28:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mapping-of-fields-dynamic-select/m-p/6289177#M1389569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T15:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: mapping of fields? Dynamic select?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mapping-of-fields-dynamic-select/m-p/6289178#M1389570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Below code using field symbols should give you an idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: v_el_hf_c(3) type c,
      v_elhf(6) type c.

FIELD-SYMBOLS : &amp;lt;fs_kstval&amp;gt;.
v_el_hf_c = TCKH3-el_hf.
overlay v_el_hf_c with '000'.
concatenate 'KST' v_el_hf_c into v_elhf.
loop at i_keph.
ASSIGN COMPONENT v_elhf of structure I_KEPH to &amp;lt;fs_kstval&amp;gt;.
if sy-subrc = 0.
 "&amp;lt;fs_kstval&amp;gt; has the value
endif.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vikram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 15:46:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mapping-of-fields-dynamic-select/m-p/6289178#M1389570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T15:46:42Z</dc:date>
    </item>
  </channel>
</rss>

