<?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: Reg: hard coding.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933944#M386435</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;Hard coding is like writing the text directly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ 'hi'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will create problem while releasing the object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to avoid this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will translate the text in logon language and also can be very handy in reporting&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is not recommended to  hard code the text &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 17 Feb 2007 06:21:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-17T06:21:10Z</dc:date>
    <item>
      <title>Reg: hard coding..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933943#M386434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;could any one tel me what exactly mean by hard coding, and  how to avoid that in program, if you give me one or two exampls that would be great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx in advance.&lt;/P&gt;&lt;P&gt;Akshitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Feb 2007 05:54:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933943#M386434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-17T05:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: hard coding..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933944#M386435</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;Hard coding is like writing the text directly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ 'hi'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will create problem while releasing the object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to avoid this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will translate the text in logon language and also can be very handy in reporting&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is not recommended to  hard code the text &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Feb 2007 06:21:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933944#M386435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-17T06:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: hard coding..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933945#M386436</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;hard cocding means we are  directly writing the values with out assigning that value in a variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;hard coding&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select field1 from ztable into table itab
where field = 'ANVER'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of that use like this. Assaign the value to avariable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : f_val(10) tyep c.

f_val = 'ANVER'.

select field1 from ztable into table itab
where field = f_val.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope u r cleared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Feb 2007 06:24:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933945#M386436</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2007-02-17T06:24:21Z</dc:date>
    </item>
  </channel>
</rss>

