<?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: data conversion functions ?? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022131#M81419</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 think see your question you need to pass the date field in character&lt;/P&gt;&lt;P&gt; BKPF_REC-GJAHR &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So first declare &lt;/P&gt;&lt;P&gt;Data : v_gjahr(10) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Write BKPF_REC-GJAHR to v_gjahr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RF022-GJAHR'&lt;/P&gt;&lt;P&gt;v_gjahr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also remove the code perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'19/07'. That is not required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rajeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Nov 2005 21:54:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-11-29T21:54:00Z</dc:date>
    <item>
      <title>data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022120#M81408</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;whats the function to convert a numeric data to char ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a field value which is numeric and when I use it in my BDC program I get a runtime error &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVT_NO_NUMBER&lt;/P&gt;&lt;P&gt;Unable to interpret "/" as a number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On debugging, I could see in the code that NODATA is represented as "/" and when it is being compared with my numeric field data, this mismatch is reported. So I think it would be right for me to pass on the value after conversion. the statement currently looks like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RF022-GJAHR'&lt;/P&gt;&lt;P&gt;                               bkpf_rec-gjahr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where gjahr contains data such as 2004, 2005 etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help..&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 20:53:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022120#M81408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T20:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022121#M81409</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 space instead of '/'.I guess it will work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 20:56:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022121#M81409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T20:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022122#M81410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check to make sure that in your file the "/" is not being shifted to the right " /".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 20:57:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022122#M81410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T20:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022123#M81411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this your own recording or SAP standard program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Typically, your input structures should be character fields and then you can compare the fields for nodata character. If a field has nodata character, then that field of the screen will be skipped. That is the logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you paste the lines of code where this is happening? also, if it is a routine, then paste the corresponding call(PERFORM) to this routine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 20:59:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022123#M81411</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T20:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022124#M81412</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;Is this Standard LSMW kind of Program i mean Direct Input method , in that No DATA will be treated as "/"&lt;/P&gt;&lt;P&gt;but in normal cases we need to populate with space.&lt;/P&gt;&lt;P&gt;But Can i know in which case you are using this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 21:00:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022124#M81412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T21:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022125#M81413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all for your quick response... Find below my code.. I have recorded BDC for FB12 and pasted that code in my report program, ZFB12 and so the entire code is as follows...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am getting error for the last but one line , i.e.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RF022-GJAHR'&lt;/P&gt;&lt;P&gt;                               bkpf_rec-gjahr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont find any means to pass SPACE !! how do i do that ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZFB12TEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES:     BKPF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF bkpf_rec OCCURS 0,&lt;/P&gt;&lt;P&gt;                bukrs LIKE BKPF-BUKRS,&lt;/P&gt;&lt;P&gt;                blart LIKE BKPF-BLART,&lt;/P&gt;&lt;P&gt;                cpudt LIKE BKPF-CPUDT,&lt;/P&gt;&lt;P&gt;                budat LIKE BKPF-budat,&lt;/P&gt;&lt;P&gt;                belnr LIKE BKPF-BELNR,&lt;/P&gt;&lt;P&gt;                gjahr LIKE BKPF-GJAHR,&lt;/P&gt;&lt;P&gt;      END OF bkpf_rec.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: so_bukrs FOR BKPF-BUKRS,&lt;/P&gt;&lt;P&gt;                so_blart FOR BKPF-BLART,&lt;/P&gt;&lt;P&gt;                so_cpudt FOR BKPF-CPUDT,&lt;/P&gt;&lt;P&gt;                so_budat FOR BKPF-budat,&lt;/P&gt;&lt;P&gt;                so_belnr FOR BKPF-BELNR,&lt;/P&gt;&lt;P&gt;                so_gjahr FOR BKPF-GJAHR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include bdcrecx1.&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT bukrs blart cpudt budat belnr gjahr into table bkpf_rec from bkpf&lt;/P&gt;&lt;P&gt; where bukrs IN&lt;/P&gt;&lt;P&gt;so_bukrs and blart in so_blart and cpudt in so_cpudt and budat in&lt;/P&gt;&lt;P&gt;so_budat and belnr in so_belnr and gjahr in so_gjahr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at bkpf_rec.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform open_group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMF05M' '0100'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'RF022-BUKRS'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=SEL'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RF022-BUKRS'&lt;/P&gt;&lt;P&gt;                              bkpf_rec-bukrs.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMSSY0' '0120'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              '19/07'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=PICK'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLF022' '1001'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'RF022-GJAHR'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=GO'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RF022-BELNR'&lt;/P&gt;&lt;P&gt;                              bkpf_rec-belnr.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RF022-GJAHR'&lt;/P&gt;&lt;P&gt;                               bkpf_rec-gjahr.&lt;/P&gt;&lt;P&gt;perform bdc_transaction using 'FB12'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform close_group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 21:04:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022125#M81413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T21:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022126#M81414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rad, &lt;/P&gt;&lt;P&gt;  The NODATA is in the include bdcrecx1 on the selection screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 21:07:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022126#M81414</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T21:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022127#M81415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;please paste the code where you are passing No data = '/'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 21:16:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022127#M81415</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T21:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022128#M81416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT bukrs blart cpudt budat belnr gjahr
  into &amp;lt;b&amp;gt;corresponding fields of table&amp;lt;/b&amp;gt; bkpf_rec from bkpf
  where bukrs IN so_bukrs 
  and   blart in so_blart
  and   cpudt in so_cpudt
  and   budat in so_budat 
  and belnr in so_belnr 
  and gjahr in so_gjahr.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I take it back. I didn't see how BKPF_REC was declared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rob Burbank&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 21:24:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022128#M81416</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T21:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022129#M81417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;RF022-GJAHR is of type numc! &lt;/P&gt;&lt;P&gt;You cannot pass non-character types to form bdc_field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are not using a standard include, perform a separate BDC_FIELD routine for non-character fields...take a look at the form below......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;perform bdc_field_nonchar using 'RF022-GJAHR' bkpf_rec-gjahr.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FORM bdc_field_nonchar USING fnam fval.
  IF fval is not initial.
    CLEAR bdcdata.
    bdcdata-fnam = fnam.
    bdcdata-fval = fval.
    APPEND bdcdata.
  ENDIF.
ENDFORM.                    "BDC_FIELD_NONCHAR
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise, you can declare a place holder of type character and use it to build your bdcdata. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: GJAHR(4) TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE bkpf_rec-gjahr TO gjahr.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field USING 'RF022-GJAHR' gjahr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 21:37:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022129#M81417</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T21:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022130#M81418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I explained, you are getting this error from the standard SAP include that you used. What you can do is to check for initial values in your code, before calling the routine as follows.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
if not bkpf_rec-gjahr is initial.
  perform bdc_field using 'RF022-GJAHR' bkpf_rec-gjahr.
else.
  perform bdc_field using 'RF022-GJAHR' '/'.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to do this for the date fields as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 21:47:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022130#M81418</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T21:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022131#M81419</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 think see your question you need to pass the date field in character&lt;/P&gt;&lt;P&gt; BKPF_REC-GJAHR &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So first declare &lt;/P&gt;&lt;P&gt;Data : v_gjahr(10) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Write BKPF_REC-GJAHR to v_gjahr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RF022-GJAHR'&lt;/P&gt;&lt;P&gt;v_gjahr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also remove the code perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'19/07'. That is not required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rajeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 21:54:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022131#M81419</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T21:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022132#M81420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajeev already presented that solution. Let us leave that credit to him instead of modifying our response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 22:01:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022132#M81420</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T22:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022133#M81421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Srinivas, I didn't see his reply when I started to edit my message!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 22:03:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022133#M81421</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T22:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022134#M81422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rajiv...It works fine now !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 22:10:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022134#M81422</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T22:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022135#M81423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sam, please don't take it seriously. I know it does happen sometimes that we hit the same idea but someone will be there first and other one will be a duplicate. Instead of modifying, may be we should just type in a new reply. I apologize if I unintentionally overstepped here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 22:10:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022135#M81423</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T22:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: data conversion functions ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022136#M81424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are right...typing in a new reply is a better idea! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Sam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2005 22:21:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-conversion-functions/m-p/1022136#M81424</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-29T22:21:32Z</dc:date>
    </item>
  </channel>
</rss>

