<?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 coding in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-coding/m-p/3372042#M809482</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 these&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Date ( MM/DD/YYYY) format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if your sap system format is MM/DD/YYYY format then no need of doing any thing &lt;/P&gt;&lt;P&gt;check in system- own data-user profile- defaults&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. EAN/UPC Number is 5.23E+11 , it should be convert to digits.(i.e 000000005333)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: var1 type p.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move g_variable to var1.&lt;/P&gt;&lt;P&gt;here g_variable is having 5.23E+11  value&lt;/P&gt;&lt;P&gt;now var1 will display 000000005333.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. A InfoObject has length 4. when we entered 2, it displayed 2. I need it should display as 0002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;take a numeric data type&lt;/P&gt;&lt;P&gt;data: g_var1(4) type n .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move infoobject to g_var1.&lt;/P&gt;&lt;P&gt;now g_var1 will contain 0002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Some documents are same no. ex, 34333 45675&lt;/P&gt;&lt;P&gt;34333 45232&lt;/P&gt;&lt;P&gt;34333 45646 , I need to display with a intersection symbol. ( i.e )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use concatenate statment&lt;/P&gt;&lt;P&gt;concatenate var1 var2 into var3 separated by '-'.&lt;/P&gt;&lt;P&gt;now check var3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;34333 - 45675&lt;/P&gt;&lt;P&gt;34333 - 45232&lt;/P&gt;&lt;P&gt;34333 - 45646 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Feb 2008 09:52:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-06T09:52:51Z</dc:date>
    <item>
      <title>simple coding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-coding/m-p/3372041#M809481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am a new to sap and I need some fundamental coding for the following items.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Date ( MM/DD/YYYY) format.&lt;/P&gt;&lt;P&gt;2. EAN/UPC Number is 5.23E+11 , it should be convert to digits.(i.e 000000005333)&lt;/P&gt;&lt;P&gt;3. A InfoObject has length 4. when we entered 2, it displayed 2. I need it should display as 0002.&lt;/P&gt;&lt;P&gt;4. Some documents are same no. ex, 34333 45675&lt;/P&gt;&lt;P&gt;34333 45232&lt;/P&gt;&lt;P&gt;34333 45646 , I need to display with a intersection symbol. ( i.e )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;34333 - 45675&lt;/P&gt;&lt;P&gt;34333 - 45232&lt;/P&gt;&lt;P&gt;34333 - 45646 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any number of coding will be appriciate....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2008 09:44:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-coding/m-p/3372041#M809481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-06T09:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: simple coding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-coding/m-p/3372042#M809482</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 these&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Date ( MM/DD/YYYY) format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if your sap system format is MM/DD/YYYY format then no need of doing any thing &lt;/P&gt;&lt;P&gt;check in system- own data-user profile- defaults&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. EAN/UPC Number is 5.23E+11 , it should be convert to digits.(i.e 000000005333)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: var1 type p.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move g_variable to var1.&lt;/P&gt;&lt;P&gt;here g_variable is having 5.23E+11  value&lt;/P&gt;&lt;P&gt;now var1 will display 000000005333.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. A InfoObject has length 4. when we entered 2, it displayed 2. I need it should display as 0002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;take a numeric data type&lt;/P&gt;&lt;P&gt;data: g_var1(4) type n .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move infoobject to g_var1.&lt;/P&gt;&lt;P&gt;now g_var1 will contain 0002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Some documents are same no. ex, 34333 45675&lt;/P&gt;&lt;P&gt;34333 45232&lt;/P&gt;&lt;P&gt;34333 45646 , I need to display with a intersection symbol. ( i.e )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use concatenate statment&lt;/P&gt;&lt;P&gt;concatenate var1 var2 into var3 separated by '-'.&lt;/P&gt;&lt;P&gt;now check var3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;34333 - 45675&lt;/P&gt;&lt;P&gt;34333 - 45232&lt;/P&gt;&lt;P&gt;34333 - 45646 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2008 09:52:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-coding/m-p/3372042#M809482</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-06T09:52:51Z</dc:date>
    </item>
  </channel>
</rss>

