<?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: BAPI_MATERIAL_MAINTAINDATA_RT problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794931#M1466513</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am also facing the same problem while upgrading to ECC6.0.&lt;/P&gt;&lt;P&gt;It seems that this is a common issue.&lt;/P&gt;&lt;P&gt;Would you like to share on how did you overcome this issues?&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, 09 Dec 2010 01:43:43 GMT</pubDate>
    <dc:creator>colin_cheong</dc:creator>
    <dc:date>2010-12-09T01:43:43Z</dc:date>
    <item>
      <title>BAPI_MATERIAL_MAINTAINDATA_RT problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794917#M1466499</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 trying to change some material parameters. It's MARC-MINBE and MARC-MABST. &lt;/P&gt;&lt;P&gt;For this I am using BAPI_MATERIAL_MAINTAINDATA_RT with appropriate parameters.&lt;/P&gt;&lt;P&gt;Unfortunatelly there is an error message: 537.&lt;/P&gt;&lt;P&gt;In SLG1 I have some messages:&lt;/P&gt;&lt;P&gt;- The field MARA-BRAND_ID/BAPIE1MARART-BRAND_ID is defined as a required field; it does not contain an entry&lt;/P&gt;&lt;P&gt;- The field MARA-BSTAT/BAPIE1MARART-CREATION_STATUS is defined as a required field; it does not contain an entry	&lt;/P&gt;&lt;P&gt;- The field MARA-FASHGRD/BAPIE1MARART-FASHION_GRADE is defined as a required field; it does not contain an entry	&lt;/P&gt;&lt;P&gt;I've got 15 of messages like that.&lt;/P&gt;&lt;P&gt;Code is as follow:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

REPORT ztest.

PARAMETER: p_matnr LIKE mara-matnr DEFAULT '116'.

DATA: wa_head LIKE bapie1mathead,
            wa_return LIKE bapireturn1.

TYPES: BEGIN OF t_plantdata.
        INCLUDE STRUCTURE bapie1marcrt.
TYPES: END OF t_plantdata.
DATA: wa_plantdata TYPE t_plantdata,
      it_plantdata TYPE TABLE OF t_plantdata.

TYPES: BEGIN OF t_plantdatax.
        INCLUDE STRUCTURE bapie1marcrtx.
TYPES: END OF t_plantdatax.
DATA: wa_plantdatax TYPE t_plantdatax,
      it_plantdatax TYPE TABLE OF t_plantdatax.

MOVE: p_matnr TO wa_head-material,
'X' TO wa_head-basic_view.

MOVE: p_matnr TO wa_plantdata-material.
MOVE '1204' TO wa_plantdata-plant.
MOVE '1.0' TO wa_plantdata-reorder_pt.
*MOVE '2' TO wa_plantdata-max_stock.
APPEND wa_plantdata TO it_plantdata.
CLEAR wa_plantdata.

MOVE: p_matnr TO wa_plantdatax-material.
MOVE: '1204' TO  wa_plantdatax-plant.
MOVE: 'X' TO wa_plantdatax-reorder_pt.
*MOVE: 'X' TO wa_plantdatax-max_stock .
APPEND wa_plantdatax TO it_plantdatax.
CLEAR wa_plantdatax.

CALL FUNCTION 'BAPI_MATERIAL_MAINTAINDATA_RT'
  EXPORTING
    headdata   = wa_head
  IMPORTING
    return     = wa_return
  TABLES
    plantdata  = it_plantdata
    plantdatax = it_plantdatax.

IF wa_return-type EQ 'E'.
  WRITE:/ 'Error in updating the Material'.
ELSE.
  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
  WRITE:/ 'Updating the Material is Successful'.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW: Problem is only on ECC 6.0. On 4.6C there is no problem like that, data are being updated...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Really gratefull for help.&lt;/P&gt;&lt;P&gt;Daniel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 10:50:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794917#M1466499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-19T10:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_MAINTAINDATA_RT problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794918#M1466500</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;These are all the &lt;STRONG&gt;Mandatory values&lt;/STRONG&gt; which you need to pass the BAPI structure to change  material parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 11:01:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794918#M1466500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-19T11:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_MAINTAINDATA_RT problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794919#M1466501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a list of those parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bapie1marart-brand_id&lt;/P&gt;&lt;P&gt;bapie1marart-creation_status&lt;/P&gt;&lt;P&gt;bapie1marart-fashion_grade &lt;/P&gt;&lt;P&gt;bapie1marart-fiber_code_1 &lt;/P&gt;&lt;P&gt;bapie1marart-fiber_code_2,&lt;/P&gt;&lt;P&gt;bapie1marart-fiber_code_3,&lt;/P&gt;&lt;P&gt;bapie1marart-fiber_code_4,&lt;/P&gt;&lt;P&gt;bapie1marart-fiber_code_5,&lt;/P&gt;&lt;P&gt;bapie1marart-fiber_part_1,&lt;/P&gt;&lt;P&gt;bapie1marart-fiber_part_2,&lt;/P&gt;&lt;P&gt;bapie1marart-fiber_part_3,&lt;/P&gt;&lt;P&gt;bapie1marart-fiber_part_4,&lt;/P&gt;&lt;P&gt;bapie1marart-fiber_part_5,&lt;/P&gt;&lt;P&gt;bapie1marart-free_char_value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question whether all of them are necessary ? Where can I take a look for them ?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 11:21:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794919#M1466501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-19T11:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_MAINTAINDATA_RT problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794920#M1466502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, It is not mandatory to pass all the values during any change in material no.&lt;/P&gt;&lt;P&gt;Just check that MC Reference article should maintained all mandatory values. You don't need to put all values in program&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 11:36:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794920#M1466502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-19T11:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_MAINTAINDATA_RT problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794921#M1466503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you please describe me when can I check it ? (t.code OMSR ? I am not sure)&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 11:43:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794921#M1466503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-19T11:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_MAINTAINDATA_RT problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794922#M1466504</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;It is not Transaction code. Go to SE37 Transaction -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt; Give the FM name----&amp;gt; Say display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There you can have the Function Module documentation. It will show you what are all the mandatory parameters to pass the BAPI &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 11:51:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794922#M1466504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-19T11:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_MAINTAINDATA_RT problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794923#M1466505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First you check the merchandise categaory of the given article no. in MARA table.&lt;/P&gt;&lt;P&gt;Go to t-code WG22&lt;/P&gt;&lt;P&gt;Enter MC No. Then Click on MC Ref. Article&lt;/P&gt;&lt;P&gt;In this article no. you have to maintain all mandatory fields. It may be possible that on devlopment server all variables are not maintained in MC Ref. Article. But on production server you will not face such type of issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope, this will help you a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 12:06:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794923#M1466505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-19T12:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_MAINTAINDATA_RT problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794924#M1466506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for fast reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In WG22 I saw, that I have got reference article for all of the merchandise categories. Furthemore we've got two developing systems (4.6C and 6.0) and WG22 shows that they are same configuration data. On productive system WG22 seems to have the same config data.&lt;/P&gt;&lt;P&gt;Problem is only on 6.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT. I've also have a look in "Propose Field Content from the Reference'  in OMSR. They are checked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Daniel Duras on Apr 19, 2010 2:30 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 12:29:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794924#M1466506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-19T12:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_MAINTAINDATA_RT problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794925#M1466507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you just maintain all required fields of MC Ref. Article using tcode MM42&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then run your code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 12:44:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794925#M1466507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-19T12:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_MAINTAINDATA_RT problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794926#M1466508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your issue has been resolved. Kindly close the thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Narendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 14:10:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794926#M1466508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-19T14:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_MAINTAINDATA_RT problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794927#M1466509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Of course, when I solv this problem I give the points.&lt;/P&gt;&lt;P&gt;Unfortunatelly I can't find those fields in MM42. Still working on it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 14:37:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794927#M1466509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-19T14:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_MAINTAINDATA_RT problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794928#M1466510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ask the mandatory fields from the functional consultant.&lt;/P&gt;&lt;P&gt;These mandatory fields will copy automatically, when you change any article no. or creating new article no. of that particular MC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Apr 2010 04:51:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794928#M1466510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-20T04:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_MAINTAINDATA_RT problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794929#M1466511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks  Narendra GSTIT. &lt;/P&gt;&lt;P&gt;Problem solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Apr 2010 07:51:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794929#M1466511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-26T07:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_MAINTAINDATA_RT problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794930#M1466512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing the same problem can you elaborate how did u resolved this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Dhirendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jun 2010 07:17:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794930#M1466512</guid>
      <dc:creator>dhirendra_pandit</dc:creator>
      <dc:date>2010-06-18T07:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_MAINTAINDATA_RT problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794931#M1466513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am also facing the same problem while upgrading to ECC6.0.&lt;/P&gt;&lt;P&gt;It seems that this is a common issue.&lt;/P&gt;&lt;P&gt;Would you like to share on how did you overcome this issues?&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, 09 Dec 2010 01:43:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-maintaindata-rt-problem/m-p/6794931#M1466513</guid>
      <dc:creator>colin_cheong</dc:creator>
      <dc:date>2010-12-09T01:43:43Z</dc:date>
    </item>
  </channel>
</rss>

