<?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 Material Master Mandatory Fields (by type) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-master-mandatory-fields-by-type/m-p/7056657#M1502760</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;&lt;/P&gt;&lt;P&gt;We have  been asked If we can extract from ERP a u201Cbaseu201D definition of Material Master. That is the customer  would like to have an overview of standard the SAP material types and the mandatory fields that need to be populated (by type). &lt;/P&gt;&lt;P&gt;Is there anyone out there aware of how we could extract this information from ERP or if this information already exists somewhere?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions would be greatly appreciated (but probably not rewarded) &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Jul 21, 2010 9:56 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Jul 2010 13:06:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-07-21T13:06:08Z</dc:date>
    <item>
      <title>Material Master Mandatory Fields (by type)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-master-mandatory-fields-by-type/m-p/7056657#M1502760</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;&lt;/P&gt;&lt;P&gt;We have  been asked If we can extract from ERP a u201Cbaseu201D definition of Material Master. That is the customer  would like to have an overview of standard the SAP material types and the mandatory fields that need to be populated (by type). &lt;/P&gt;&lt;P&gt;Is there anyone out there aware of how we could extract this information from ERP or if this information already exists somewhere?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions would be greatly appreciated (but probably not rewarded) &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Jul 21, 2010 9:56 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 13:06:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-master-mandatory-fields-by-type/m-p/7056657#M1502760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-21T13:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: Material Master Mandatory Fields (by type)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-master-mandatory-fields-by-type/m-p/7056658#M1502761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this to get material master data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA clientdata     TYPE  bapi_mara_ga. " master data
DATA mat_descr      TYPE TABLE OF bapi_makt_ga. " texts
DATA materialtext   TYPE TABLE OF bapi_mltx_ga. " long texts

FORM read_material  USING    material
                    CHANGING message.
  " get bapi result
  DATA wa_return LIKE LINE OF return.
  " division for logging
  DATA div_src TYPE string.

  " bapi for read material generic data
  CALL FUNCTION 'BAPI_MATERIAL_GETALL'
    EXPORTING
      material            = material
    IMPORTING
      clientdata          = clientdata
    TABLES
      materialdescription = mat_descr
      materialtext        = materialtext
      return              = return.
ENDFORM.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 13:26:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-master-mandatory-fields-by-type/m-p/7056658#M1502761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-21T13:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: Material Master Mandatory Fields (by type)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-master-mandatory-fields-by-type/m-p/7056659#M1502762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Study the function above to get also plant dependent data and so on .. &lt;/P&gt;&lt;P&gt;If you want to extract all materials, you have to get all material code from MARA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT matnr
 FROM mara.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gabriele&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 13:27:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-master-mandatory-fields-by-type/m-p/7056659#M1502762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-21T13:27:55Z</dc:date>
    </item>
  </channel>
</rss>

