<?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: conversion in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion/m-p/3025408#M715311</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I think you can do this way:&lt;/P&gt;&lt;P&gt;Declare a variable of type c length 18.Then from the field of 15 character length,move the value to the variable of 18 characters.&lt;/P&gt;&lt;P&gt;e.g.: lv_field1(18) tye c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_field = value from 15 char field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it was useful.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sandeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Oct 2007 19:23:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-25T19:23:27Z</dc:date>
    <item>
      <title>conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion/m-p/3025406#M715309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all, &lt;/P&gt;&lt;P&gt;i get a field with 15chars, i need to change it into 18 chars and then proceed with the other things.&lt;/P&gt;&lt;P&gt;could someone let meknow how i can do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 19:17:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion/m-p/3025406#M715309</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T19:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion/m-p/3025407#M715310</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;Please try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: FIELD1(15) TYPE C VALUE '1234567890ABCDE',
      FIELD2(18) TYPE C.

MOVE FIELD1 TO FIELD2.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 19:21:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion/m-p/3025407#M715310</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-10-25T19:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion/m-p/3025408#M715311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I think you can do this way:&lt;/P&gt;&lt;P&gt;Declare a variable of type c length 18.Then from the field of 15 character length,move the value to the variable of 18 characters.&lt;/P&gt;&lt;P&gt;e.g.: lv_field1(18) tye c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_field = value from 15 char field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it was useful.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sandeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 19:23:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion/m-p/3025408#M715311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T19:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion/m-p/3025409#M715312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Ferry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a field Equnr which is having either chars or 15 chars, so I have to convert it to 18chars.&lt;/P&gt;&lt;P&gt;Could you pls help me with this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 19:31:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion/m-p/3025409#M715312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T19:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion/m-p/3025410#M715313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Pass the value from the equnr field to any variable which is having a lenght of 18.&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;data: lv_field(18) type c.&lt;/P&gt;&lt;P&gt;lv_field = equnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;characters variables can accept values from all fields.Similarly character variables values can also be assigned to any field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it was useful.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sandeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 19:35:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion/m-p/3025410#M715313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T19:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion/m-p/3025411#M715314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need a function mdule which would convert any dec or imei to hex.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 19:38:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion/m-p/3025411#M715314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T19:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion/m-p/3025412#M715315</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;Please try FM CHAR_HEX_CONVERSION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 19:41:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion/m-p/3025412#M715315</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-10-25T19:41:39Z</dc:date>
    </item>
  </channel>
</rss>

