<?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 lsmw problem: for mm01 basic data text two language in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-problem-for-mm01-basic-data-text-two-language/m-p/5809153#M1312987</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;I want to realize, in mm01, under 'basic data text' tab, have English and French text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use lsmw, direct input,object:0020, method:0000, program name:RMDATIND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The basic data text function should be done in structure BMMH7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I add some codes for BMMH7 after entering 'Display Conversion Program'. But the codes will be covered when the rules changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please tell me how to do the same function in 'Maintain Field Mapping and Conversion Rules'?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Jun 2009 03:28:15 GMT</pubDate>
    <dc:creator>WLZ</dc:creator>
    <dc:date>2009-06-18T03:28:15Z</dc:date>
    <item>
      <title>lsmw problem: for mm01 basic data text two language</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-problem-for-mm01-basic-data-text-two-language/m-p/5809153#M1312987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;I want to realize, in mm01, under 'basic data text' tab, have English and French text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use lsmw, direct input,object:0020, method:0000, program name:RMDATIND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The basic data text function should be done in structure BMMH7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I add some codes for BMMH7 after entering 'Display Conversion Program'. But the codes will be covered when the rules changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please tell me how to do the same function in 'Maintain Field Mapping and Conversion Rules'?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2009 03:28:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-problem-for-mm01-basic-data-text-two-language/m-p/5809153#M1312987</guid>
      <dc:creator>WLZ</dc:creator>
      <dc:date>2009-06-18T03:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: lsmw problem: for mm01 basic data text two language</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-problem-for-mm01-basic-data-text-two-language/m-p/5809154#M1312988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at the codes I added in conversion program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;***********************************

form convert_transaction.

  check so_tcntr.
  loop at ZMATERIAL.
    perform convert_0001.                                   " BGR00
    perform convert_0002.                                   " BMM00
    perform convert_0003.                                   " BMMH1
    perform convert_0004.                                   " BMMH2
    perform convert_0005.                                   " BMMH3
    perform convert_0006.                                   " BMMH4
    perform convert_0007.                                   " BMMH5
    perform convert_0008.                                   " BMMH6
    perform convert_0009.                                   " BMMH7
* Add start by SAPGD003
    perform convert_0011.                                   " BMMH7
* Add end by SAPGD003
    perform convert_0010.                                   " BMMH8
  ENDLOOP.

* End of transaction
  transfer_transaction.

endform.                    "convert_transaction

***********************************

form convert_0009.                                          " BMMH7

  check g_skip_transaction = no.

  g_skip_record = no.

  g_record = 'BMMH7'.

* --- __BEGIN_OF_RECORD__
  BMMH7 = INIT_BMMH7.

* --- BMMH7-STYPE
  BMMH7-STYPE = '8'.

* --- BMMH7-TDID
  BMMH7-TDID = 'GRUN'.

* --- BMMH7-TDSPRAS
* Add start by SAPGD003
  BMMH7-TDSPRAS = 'F'.
* Add end by SAPGD003

* --- BMMH7-TDFORMAT
  BMMH7-TDFORMAT = '*'.

* --- BMMH7-TDLINE
* Add start by SAPGD003
  BMMH7-TDLINE = zmaterial-TEXTE_CMD_FR .
* Add end by SAPGD003

* --- BMMH7-TDSPRASISO
* Add start by SAPGD003
  BMMH7-TDSPRASISO = 'FR'.
* Add end by SAPGD003

* --- __END_OF_RECORD__
  transfer_record.

  g_skip_record = no.

endform.                    "convert_0009
*************************************************
form convert_0011.                                          " BMMH7

  check g_skip_transaction = no.

  g_skip_record = no.

  g_record = 'BMMH7'.

* --- __BEGIN_OF_RECORD__
  BMMH7 = INIT_BMMH7.

* --- BMMH7-STYPE
  BMMH7-STYPE = '8'.

* --- BMMH7-TDID
  BMMH7-TDID = 'GRUN'.

* --- BMMH7-TDSPRAS
  BMMH7-TDSPRAS = 'E'.

* --- BMMH7-TDFORMAT
  BMMH7-TDFORMAT = '*'.

* --- BMMH7-TDLINE
  BMMH7-TDLINE = zmaterial-TEXTE_CMD_EN .

* --- BMMH7-TDSPRASISO
  BMMH7-TDSPRASISO = 'EN'.

* --- __END_OF_RECORD__
  transfer_record.

  g_skip_record = no.

endform.                    "convert_0011&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2009 03:35:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-problem-for-mm01-basic-data-text-two-language/m-p/5809154#M1312988</guid>
      <dc:creator>WLZ</dc:creator>
      <dc:date>2009-06-18T03:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: lsmw problem: for mm01 basic data text two language</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-problem-for-mm01-basic-data-text-two-language/m-p/5809155#M1312989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If i see your code; I find that you have added the following code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Add start by SAPGD003 &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   perform convert_0011. " BMMH7 &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Add end by SAPGD003 &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you want this code from field mapping rules?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that case you will have to use a separate file for LONG TEXT and that file should have some common field between your main file so that it can be looped.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2009 05:37:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-problem-for-mm01-basic-data-text-two-language/m-p/5809155#M1312989</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-18T05:37:11Z</dc:date>
    </item>
  </channel>
</rss>

