<?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: Table maintenance in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/6097643#M1359769</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;I assume if changing all those parameters will be a burden for you, you can write code to update the table.&lt;/P&gt;&lt;P&gt;This is not the right way, but this certainly is a workaround.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pramod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Sep 2009 11:21:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-17T11:21:09Z</dc:date>
    <item>
      <title>Table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/6097639#M1359765</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;We have created a maintenance view for a table which  basically stores URL information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we maintain any URL using SM30,the entries are getting saved in upper case,is there a way to restrict it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please clarify.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Keerthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 03:38:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/6097639#M1359765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-17T03:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/6097640#M1359766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Keerti,&lt;/P&gt;&lt;P&gt;I dont think that we can restrict it. &lt;/P&gt;&lt;P&gt;Better you can use function module 'EDITOR_LINE_TRANSLATE_CASE' to change the case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sheeba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 06:10:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/6097640#M1359766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-17T06:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/6097641#M1359767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Keerthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a solution but this will require a lot of rework.&lt;/P&gt;&lt;P&gt;The dataelement that will be used to store the URL, does it take the properties from a domain ?&lt;/P&gt;&lt;P&gt;if so in the domain properties, there is something called 'Lower Case'. Check that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are not using it. Please create a domain check the 'Lower Case', create a data element &lt;/P&gt;&lt;P&gt;using that domain. Use this data element in your table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now whatever u enter in ur maintenance will be stored as it is without the case being changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pramod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 08:58:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/6097641#M1359767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-17T08:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/6097642#M1359768</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;   In PAI you can translate it to lower case&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PAI

CHAIN.
 field URL1 module conevrt_to_lowercase.
ENDCHAIN.


module convert_to_lowercase inout.
 if not URL1 is initial.
  translate URL1 to lower case.
endif.
endmodule.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 09:03:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/6097642#M1359768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-17T09:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/6097643#M1359769</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;I assume if changing all those parameters will be a burden for you, you can write code to update the table.&lt;/P&gt;&lt;P&gt;This is not the right way, but this certainly is a workaround.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pramod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 11:21:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/6097643#M1359769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-17T11:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/6097644#M1359770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;resolved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Sep 2010 09:11:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/6097644#M1359770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-27T09:11:09Z</dc:date>
    </item>
  </channel>
</rss>

