<?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: Logic need to implement the functionality in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-need-to-implement-the-functionality/m-p/976456#M70996</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 this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) SE54 - environment - Modifiction - events - new entry - &lt;/P&gt;&lt;P&gt;-&amp;gt; choose event 01 (Before saving the data in the database)&lt;/P&gt;&lt;P&gt;And create a include with the form routine e.g. fill_counter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;coding:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select single name from t001w into  YKXRDAWERKS-YLOGICAL_NAME ...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;regards Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Oct 2005 09:29:31 GMT</pubDate>
    <dc:creator>andreas_mann3</dc:creator>
    <dc:date>2005-10-04T09:29:31Z</dc:date>
    <item>
      <title>Logic need to implement the functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-need-to-implement-the-functionality/m-p/976455#M70995</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;There is a table (YKXRDAWERKS) with 2 fields (YWERKS_LOGICAL &amp;amp; YWERKS_LANDLORD). Two new fields should be added to hold the description for the two fields. i.e. YLOGICAL_NAME &amp;amp; YLANDLORD_NAME . The value for this field should be pulled from another table (T001W-NAME1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 2 new fields YLOGICAL_NAME &amp;amp; YLANDLORD_NAME need to bring automatically T001W-NAME1 into the table. Users will only enter Landlord plant and Logical Plant into the table and the plant descriptions should automatically populated with the T001W-NAME1 Description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me the know the Logic &amp;amp; Steps involved in it to implement the logic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Suresh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2005 09:13:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-need-to-implement-the-functionality/m-p/976455#M70995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-04T09:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Logic need to implement the functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-need-to-implement-the-functionality/m-p/976456#M70996</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 this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) SE54 - environment - Modifiction - events - new entry - &lt;/P&gt;&lt;P&gt;-&amp;gt; choose event 01 (Before saving the data in the database)&lt;/P&gt;&lt;P&gt;And create a include with the form routine e.g. fill_counter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;coding:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select single name from t001w into  YKXRDAWERKS-YLOGICAL_NAME ...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;regards Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2005 09:29:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-need-to-implement-the-functionality/m-p/976456#M70996</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-10-04T09:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: Logic need to implement the functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-need-to-implement-the-functionality/m-p/976457#M70997</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;Keep the table YKXRDAWERKS with two new columns added.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First select the records from the table YKXRDAWERKS to an internal table, Say &amp;lt;b&amp;gt;T_YKXRDAWERKS&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at T_YKXRDAWERKS into wa_YKXRDAWERKS,&lt;/P&gt;&lt;P&gt;   select NAME1 from T0001W into wa_YKXRDAWERKS-&lt;/P&gt;&lt;P&gt;   YLOGICAL_NAME where &amp;lt;b&amp;gt;WERKS = wa_YKXRDAWERKS-WERKS&amp;lt;/b&amp;gt; .&lt;/P&gt;&lt;P&gt;   wa_YKXRDAWERKS-YLANDLORDNAME = wa_YKXRDAWERKS-&lt;/P&gt;&lt;P&gt;   YLOGICAL_NAME.&lt;/P&gt;&lt;P&gt;   MODIFY T_YKXRDAWERKS from WA_YKXRDAWERKS TRANSPORTING &lt;/P&gt;&lt;P&gt;   YLANDLORDNAME YLOGICALNAME.&lt;/P&gt;&lt;P&gt;   UPDATE YKXRDAWERKS SET YLANDLORDNAME = wa_YKXRDAWERKS-&lt;/P&gt;&lt;P&gt;   YLOGICAL_NAME AND YLOGICALNAME = wa_YKXRDAWERKS-&lt;/P&gt;&lt;P&gt;   YLOGICAL_NAME.&lt;/P&gt;&lt;P&gt;   Clear wa_YKXRDAWERKS.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sivakumar Muthusamy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2005 09:31:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-need-to-implement-the-functionality/m-p/976457#M70997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-04T09:31:07Z</dc:date>
    </item>
  </channel>
</rss>

