<?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 exits in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440553#M209602</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the error message you got?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;P&gt;Suresh Ganti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Jul 2006 17:56:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-19T17:56:46Z</dc:date>
    <item>
      <title>conversion exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440547#M209596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, &lt;/P&gt;&lt;P&gt;does anybody know about a reasonable documentation about conversion exits to data element conversions needed to be done before data is stored to the database?&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;ana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2006 15:35:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440547#M209596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-19T15:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: conversion exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440548#M209597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this online document perhaps it may help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCDWBDIC/BCDWBDIC.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCDWBDIC/BCDWBDIC.pdf&lt;/A&gt;&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;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2006 15:44:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440548#M209597</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2006-07-19T15:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: conversion exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440549#M209598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, &lt;/P&gt;&lt;P&gt;thank you!!!&lt;/P&gt;&lt;P&gt;this helps a bit, nevertheless, i am still not sure, how to add the conversion routines are accessed by the data element, especially, where I need to add these routines...anybody can help here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;ana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2006 16:08:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440549#M209598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-19T16:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: conversion exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440550#M209599</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;Under Domain of a data element of a field, Output Characterestics field 'Convers. routine' is used to create conversion routines, system will do the data changes with in these routines while storing the data into table and retriving the data from table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex: if coversion routine is defined as 'ALPHA' for a standard domain , with this value system will create two function modules.&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ALPHA_INPUT  &lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ALPHA_OUTPUT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can also create your own conversion routines by defining the value in this field. i have defined conversion routine to convert NUMC type data to DEC type data with 'ZCNV'.system will generate two FM's. you need to write the code in those FM's according to your logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the code for this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ZCNV_INPUT   &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------" /&gt;&lt;P&gt;FUNCTION CONVERSION_EXIT_ZCNV_INPUT.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Local interface:&lt;/P&gt;&lt;P&gt;*"  IMPORTING&lt;/P&gt;&lt;P&gt;*"     VALUE(INPUT)&lt;/P&gt;&lt;P&gt;*"  EXPORTING&lt;/P&gt;&lt;P&gt;*"     VALUE(OUTPUT)&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : ws_output type numc10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ws_output = input.&lt;/P&gt;&lt;P&gt;  output = ws_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ZCNV_OUTPUT  &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION CONVERSION_EXIT_ZCNV_OUTPUT.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Local interface:&lt;/P&gt;&lt;P&gt;*"  IMPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(INPUT)&lt;/P&gt;&lt;P&gt;*"  EXPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(OUTPUT)&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data : ws_value type dec12.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ws_value = input.&lt;/P&gt;&lt;P&gt;  WRITE: ws_value TO output DECIMALS 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;Appana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2006 16:28:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440550#M209599</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2006-07-19T16:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: conversion exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440551#M209600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dude,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best way would be double click on the domain and check if there is any conversion routines used. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That would be more easier for you to use either Input/Output routine based on your requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Suresh Ganti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2006 16:38:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440551#M209600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-19T16:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: conversion exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440552#M209601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tx a lot, that helped a lot.&lt;/P&gt;&lt;P&gt;one more question.&lt;/P&gt;&lt;P&gt;if i use a specific short name fpor the concversion, such as agew, the I would have assumed, that when activating the domain, that the function modules would be generated by sap, instead i get an error message.&lt;/P&gt;&lt;P&gt;the only solution i did find was that I addded my own Function group and then added the respective function modules to this function group. &lt;/P&gt;&lt;P&gt;This of course gave a warning because of naming problems (fg and fm should be in same namespace, but i could proceed nevertheless.&lt;/P&gt;&lt;P&gt;do you know about a nicer solution to handle this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;ana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2006 17:01:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440552#M209601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-19T17:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: conversion exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440553#M209602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the error message you got?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;P&gt;Suresh Ganti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2006 17:56:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440553#M209602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-19T17:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: conversion exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440554#M209603</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;without giving 'agew' , change it to 'zage' and check it.&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;appana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 04:38:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440554#M209603</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2006-07-20T04:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: conversion exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440555#M209604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the error message is when trying to activate the domain with the convert name agew (zagew does not solve the problem), that the converting routine agew does not exist, therefore the domain cannot be converted.&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;ana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 07:17:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440555#M209604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-20T07:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: conversion exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440556#M209605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi buddy&lt;/P&gt;&lt;P&gt;All conversion exits are linked at the domain level, just go the domain of a data-element from se11 &amp;amp; look for rules tab which will give you the required conversion exit for input or output, there is no much funda behind conversion exits available in the documents&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sudhir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 07:20:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440556#M209605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-20T07:20:20Z</dc:date>
    </item>
    <item>
      <title>Re: conversion exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440557#M209606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)Create a domain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&amp;lt;b&amp;gt;Domain&amp;lt;/b&amp;gt;             ZTEST                          New                          
&amp;lt;b&amp;gt;Short Description&amp;lt;/b&amp;gt;  test field                                                  

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)Give the technical Attributes IN &amp;lt;b&amp;gt;Definition&amp;lt;/b&amp;gt; Tab.&lt;/P&gt;&lt;P&gt;                                                                        &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  Data type        CHAR       Character string                              
  No. characters       40                                                   
  Decimal places        0                                                   
             &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;                                                         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3)&lt;/P&gt;&lt;P&gt;                                                                           &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; &amp;lt;b&amp;gt;Output length&amp;lt;/b&amp;gt;        40                                                   
 &amp;lt;b&amp;gt;Convers. routine&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;MATN1&amp;lt;/i&amp;gt;                                                    
          &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;                                                                                &lt;/P&gt;&lt;P&gt;4)Save and activate it (No Errors).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is possible because conversion routines are defined with name &amp;lt;b&amp;gt;MATN1&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
OMCV                           Material Number Conversion
CONVERSION_EXIT_&amp;lt;b&amp;gt;MATN1&amp;lt;/b&amp;gt;_INPUT    Material number conversion (INPUT)
CONVERSION_EXIT_&amp;lt;b&amp;gt;MATN1&amp;lt;/b&amp;gt;_OUTPUT   Material number conversion (OUTPUT)
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now try giving. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
                                      
&amp;lt;b&amp;gt;Output length&amp;lt;/b&amp;gt;        40               
&amp;lt;b&amp;gt;Convers. routine&amp;lt;/b&amp;gt; ARUN1                

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will give an error(&amp;lt;i&amp;gt;Conversion routine ARUN1 does not exist Domain ZTEST is inconsistent&amp;lt;/i&amp;gt;). You will have to create the following FM's for eliminating this error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CONVERSION_EXIT_&amp;lt;b&amp;gt;ARUN1&amp;lt;/b&amp;gt;_INPUT
CONVERSION_EXIT_&amp;lt;b&amp;gt;ARUN1&amp;lt;/b&amp;gt;_OUTPUT
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best way to create these FM &lt;/P&gt;&lt;P&gt;1)See if you can use the functionality of any existing Conversion Routines (by adding some custom code).&lt;/P&gt;&lt;P&gt;2)Consider CONVERSION_EXIT_&amp;lt;b&amp;gt;MATN1&amp;lt;/b&amp;gt;_INPUT can be used now which is in FG &amp;lt;b&amp;gt;OMCV&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;3)Goto SE80 and enter the FG and right click on the FG&lt;/P&gt;&lt;P&gt;4)Copy the whole FG into new FG.&lt;/P&gt;&lt;P&gt;5)It will prompt you to enter the new FM's name enter the name like CONVERSION_EXIT_&amp;lt;b&amp;gt;ARUN1&amp;lt;/b&amp;gt;_INPUT&lt;/P&gt;&lt;P&gt;6)Activate it.&lt;/P&gt;&lt;P&gt;7)Now you can use them in Domains.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope its clear now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arun Sambargi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Arun Sambargi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 07:38:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440557#M209606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-20T07:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: conversion exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440558#M209607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;cheers, &lt;/P&gt;&lt;P&gt;ok, thats about the way i did it, although i find it a bit strange...nevertheless, thats abap;-)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks to all!&lt;/P&gt;&lt;P&gt;ana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 10:11:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exits/m-p/1440558#M209607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-20T10:11:56Z</dc:date>
    </item>
  </channel>
</rss>

