<?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: Simple Logic...Upper case and lower case.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic-upper-case-and-lower-case/m-p/3266919#M780746</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I have the same problem, but using the LDAPMAP transaction, I want the username as you explain: John Smith, no JOHN SMITH.&lt;/P&gt;&lt;P&gt;Have you solved this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;P&gt;Rubén García (not RUBEN GARCIA)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Feb 2008 16:10:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-19T16:10:31Z</dc:date>
    <item>
      <title>Simple Logic...Upper case and lower case..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic-upper-case-and-lower-case/m-p/3266915#M780742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;GUru's..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need your advise..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a parameter and I declared it as type c with a lenght of 20 characters. that parameter will be using to input names , whole to be exact..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: Ms. Clara Yeshi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my problem is when I enter it or execute it the whole name/string becomes capital letters.which should'nt. it capital letter should only start at the beginning of every name.like in my example..&lt;/P&gt;&lt;P&gt;the reason why I needed it to be like that bacause whatever the user will input on the paramter will be display on my form as name.that's why i need ito to be a bit formal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again this is what I want to happen in my font.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Ms. Claire Jane Yeshi.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the upper case letter should only start at the beginning of every name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you can help me...&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Feb 19, 2008 11:13 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jan 2008 07:35:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic-upper-case-and-lower-case/m-p/3266915#M780742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-20T07:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Logic...Upper case and lower case..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic-upper-case-and-lower-case/m-p/3266916#M780743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;actually i dont hav my system now&lt;/P&gt;&lt;P&gt;but i think the following code wil b helpful to make a custom FM&lt;/P&gt;&lt;P&gt;or make a sub routine in ur report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : text(50) value 'this is a test for upper lower case'.&lt;/P&gt;&lt;P&gt;data : itab(50) occurs 0 with header line.&lt;/P&gt;&lt;P&gt;data : result(50).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;split text at space into table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;translate itab+0(1) to upper case.&lt;/P&gt;&lt;P&gt;concatenate result itab into result separated by space.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;write : / result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Feb 19, 2008 11:14 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jan 2008 08:22:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic-upper-case-and-lower-case/m-p/3266916#M780743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-20T08:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Logic...Upper case and lower case..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic-upper-case-and-lower-case/m-p/3266917#M780744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use function module  SWA_STRING_TO_UPPERCASE and keep PRESERVE_EXISTING_CAPITALS as space. It will fullfil your requirement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jan 2008 08:27:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic-upper-case-and-lower-case/m-p/3266917#M780744</guid>
      <dc:creator>former_member225631</dc:creator>
      <dc:date>2008-01-20T08:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Logic...Upper case and lower case..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic-upper-case-and-lower-case/m-p/3266918#M780745</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;  use a field from any table wherein the the field "Lowercase" is "checked" in the domain for its data element .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg: parameters: p_name like bseg_sgtxt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your problem will be solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nivin Joseph.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jan 2008 11:37:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic-upper-case-and-lower-case/m-p/3266918#M780745</guid>
      <dc:creator>nivin_varkey</dc:creator>
      <dc:date>2008-01-20T11:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Logic...Upper case and lower case..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic-upper-case-and-lower-case/m-p/3266919#M780746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I have the same problem, but using the LDAPMAP transaction, I want the username as you explain: John Smith, no JOHN SMITH.&lt;/P&gt;&lt;P&gt;Have you solved this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;P&gt;Rubén García (not RUBEN GARCIA)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 16:10:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic-upper-case-and-lower-case/m-p/3266919#M780746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T16:10:31Z</dc:date>
    </item>
  </channel>
</rss>

