<?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: Problem with MATERIAL_MAINTAIN_DARK in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157589#M751127</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frank,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your answer, I have already tried this!&lt;/P&gt;&lt;P&gt;But I get the same error!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Werner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Werner Köß&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Dec 2007 12:28:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-11T12:28:08Z</dc:date>
    <item>
      <title>Problem with MATERIAL_MAINTAIN_DARK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157587#M751125</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 want to create a material master with MATERIAL_MAINTAIN_DARK.&lt;/P&gt;&lt;P&gt;But I always get error MG - 159 (type Error):&lt;/P&gt;&lt;P&gt;"The material cannot be created since no maintainable data exists"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's the coding:&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_MATERIAL_GETINTNUMBER'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;material_type = wa_matyp&lt;/P&gt;&lt;P&gt;industry_sector = wa_branch&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;material_number = it_bapimatinr.&lt;/P&gt;&lt;P&gt;READ TABLE it_bapimatinr INDEX 1 INTO wa_bapimatinr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_mara-mandt = sy-mandt. wa_mara-matnr = wa_bapimatinr-material.&lt;/P&gt;&lt;P&gt;wa_mara-mtart = wa_matyp. wa_mara-mbrsh = wa_branch.&lt;/P&gt;&lt;P&gt;wa_mara-matkl = wa_wagru. wa_mara-prdha = wa_hierar.&lt;/P&gt;&lt;P&gt;wa_mara-vpsta = 'KVDPBEALGQ'.&lt;/P&gt;&lt;P&gt;wa_mara-pstat = 'KVDPBELGQ'.&lt;/P&gt;&lt;P&gt;wa_mara-tcode = 'MM01'.&lt;/P&gt;&lt;P&gt;wa_mara-tranc = 1. wa_mara-d_ind = 1.&lt;/P&gt;&lt;P&gt;wa_mara-kz_mat_res = 'X'.&lt;/P&gt;&lt;P&gt;APPEND wa_mara TO it_mara.&lt;/P&gt;&lt;P&gt;wa_makt-mandt = sy-mandt. wa_makt-matnr = wa_bapimatinr-material.&lt;/P&gt;&lt;P&gt;wa_makt-spras = 'D'. wa_makt-maktx = wa_txtde.&lt;/P&gt;&lt;P&gt;wa_makt-tranc = 1. wa_makt-d_ind = 2.&lt;/P&gt;&lt;P&gt;APPEND wa_makt TO it_makt.&lt;/P&gt;&lt;P&gt;wa_marc-mandt = sy-mandt. wa_marc-matnr = wa_bapimatinr-material.&lt;/P&gt;&lt;P&gt;wa_marc-werks = wa_werk.&lt;/P&gt;&lt;P&gt;wa_marc-tranc = 1. wa_marc-d_ind = 3.&lt;/P&gt;&lt;P&gt;APPEND wa_marc TO it_marc.&lt;/P&gt;&lt;P&gt;wa_mard-mandt = sy-mandt. wa_mard-matnr = wa_bapimatinr-material.&lt;/P&gt;&lt;P&gt;wa_mard-werks = wa_werk. wa_mard-lgort = wa_lgort.&lt;/P&gt;&lt;P&gt;wa_mard-tranc = 1. wa_mard-d_ind = 4.&lt;/P&gt;&lt;P&gt;APPEND wa_mard TO it_mard.&lt;/P&gt;&lt;P&gt;wa_mvke-mandt = sy-mandt. wa_mvke-matnr = wa_bapimatinr-material.&lt;/P&gt;&lt;P&gt;wa_mvke-vkorg = wa_vkorg. wa_mvke-vtweg = wa_vtweg.&lt;/P&gt;&lt;P&gt;wa_mvke-prodh = wa_hierar.&lt;/P&gt;&lt;P&gt;wa_mvke-tranc = 1. wa_mvke-d_ind = 5.&lt;/P&gt;&lt;P&gt;APPEND wa_mvke TO it_mvke.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'MATERIAL_MAINTAIN_DARK'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;flag_muss_pruefen = ' '&lt;/P&gt;&lt;P&gt;sperrmodus = ' '&lt;/P&gt;&lt;P&gt;p_kz_no_warn = 'N'&lt;/P&gt;&lt;P&gt;kz_prf = 'I'&lt;/P&gt;&lt;P&gt;user = sy-uname&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;amara_ueb = it_mara&lt;/P&gt;&lt;P&gt;amakt_ueb = it_makt&lt;/P&gt;&lt;P&gt;amarc_ueb = it_marc&lt;/P&gt;&lt;P&gt;amard_ueb = it_mard&lt;/P&gt;&lt;P&gt;amvke_ueb = it_mvke&lt;/P&gt;&lt;P&gt;amerrdat = it_error "Fehlerliste&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;kstatus_empty = 1&lt;/P&gt;&lt;P&gt;tkstatus_empty = 2&lt;/P&gt;&lt;P&gt;t130m_error = 3&lt;/P&gt;&lt;P&gt;internal_error = 4&lt;/P&gt;&lt;P&gt;too_many_errors = 5&lt;/P&gt;&lt;P&gt;update_error = 6&lt;/P&gt;&lt;P&gt;error_propagate_header = 7&lt;/P&gt;&lt;P&gt;OTHERS = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0. COMMIT WORK. ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Werner.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 12:09:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157587#M751125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T12:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with MATERIAL_MAINTAIN_DARK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157588#M751126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Werner,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You don't need to give the MANDT field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Most likely the issue is in the views you are passing with the vpsta and pstat. Each view requires it's own minimum set up data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try simply to start with the K view (header view). See if the material gets created and then extend the views if this works.&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;Frank Umans&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 12:23:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157588#M751126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T12:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with MATERIAL_MAINTAIN_DARK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157589#M751127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frank,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your answer, I have already tried this!&lt;/P&gt;&lt;P&gt;But I get the same error!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Werner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Werner Köß&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 12:28:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157589#M751127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T12:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with MATERIAL_MAINTAIN_DARK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157590#M751128</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 suppose the problem lies within the function module "Material_maintain_dark". In this, &lt;STRONG&gt;amfieldres&lt;/STRONG&gt; is the key structure which is used for updating/creation of materials. I observe that this field is missing in ur program.&lt;/P&gt;&lt;P&gt;The assignment of the values to the fields in this also should be done through field-symbols. For eg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data :         v_tcnt like sy-tabix.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;--&lt;/STRONG&gt;&lt;DEL&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/DEL&gt;&lt;/P&gt;&lt;HR originaltext="-------" /&gt;for basic view of material--&lt;HR originaltext="---------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"transaction counter for data transfer&lt;/P&gt;&lt;P&gt;v_tcnt = v_tcnt + 1.&lt;/P&gt;&lt;P&gt;    move-corresponding wa_mara to mara_ueb.&lt;/P&gt;&lt;P&gt;    mara_ueb-tcode = 'MM01'.&lt;/P&gt;&lt;P&gt;    mara_ueb-tranc = v_tcnt.&lt;/P&gt;&lt;P&gt;    append mara_ueb to amara_ueb.&lt;/P&gt;&lt;P&gt;    clear v_tcnt.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;--&lt;/STRONG&gt;&lt;DEL&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/DEL&gt;&lt;/P&gt;&lt;HR originaltext="------" /&gt;for plant view--&lt;HR originaltext="----------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move-corresponding wa_marc to marc_ueb.&lt;/P&gt;&lt;P&gt;v_tcnt = v_tcnt + 1.&lt;/P&gt;&lt;P&gt;marc_ueb-tranc = v_tcnt.&lt;/P&gt;&lt;P&gt;concatenate 'MARC_UEB-' 'MTVFP' into v_field1.&lt;/P&gt;&lt;P&gt;concatenate 'MARC-' 'MTVFP' into v_field2.&lt;/P&gt;&lt;P&gt;assign (v_field1) to &amp;lt;f1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mfieldres-fname = name. "v_field2&lt;/P&gt;&lt;P&gt;mfieldres-tranc = v_tcnt.&lt;/P&gt;&lt;P&gt;append mfieldres to amfieldres.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now use the mfieldres in the function module 'material_maintain_dark'... and execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One way of checking if the material has been created or not is:&lt;/P&gt;&lt;P&gt;while debugging, all the materials and the corresponding fields to be created will be lined up in "amfieldres" before reaching the func. module. after execution of the function module, the list of materials which would &lt;U&gt;*remain&lt;/U&gt;* in the "amfieldres" internal table are the ones which would not have been created.The rest which are not seen in the internal table would be created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Archana&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Feb 11, 2008 5:59 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 08:30:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157590#M751128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T08:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with MATERIAL_MAINTAIN_DARK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157591#M751129</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 don't use this f.m. anymore because it didn't work.&lt;/P&gt;&lt;P&gt;We solved it with another f.m. so I don't try this f.m.&lt;/P&gt;&lt;P&gt;But thank you anyways!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 08:38:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157591#M751129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T08:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with MATERIAL_MAINTAIN_DARK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157592#M751130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Archana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I too have problem using this FM - Material_maintain_dark.&lt;/P&gt;&lt;P&gt;Even after appending the req. entries in amfieldres, am not able to create a material.&lt;/P&gt;&lt;P&gt;Do we need to use/run any other function modules before or after executing this FM? I mean can we create a material using this FM alone? My req. is to create a material and extend it to multiple plants, sales views, etc. in 4.6B system and I dont find any other BAPI or FM which will meet my req. other than this FM.&lt;/P&gt;&lt;P&gt;I think I wld be missing some flags or initial values.&lt;/P&gt;&lt;P&gt;So I request you to send me the complete code demonstrating this FM to create and extend a material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try to provide your suggestions/feedback asap as am running out of time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 19:10:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157592#M751130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T19:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with MATERIAL_MAINTAIN_DARK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157593#M751131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Werner,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am also working on the same req. to create and extend a material to multiple plants,sales views etc in the older system 4.6B. I saw your reply that you are not using Material_maintain_dark for this purpose. &lt;/P&gt;&lt;P&gt;I request you to let me know, how did you achieve this and could you please send me the complete code/Info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 19:15:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157593#M751131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T19:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with MATERIAL_MAINTAIN_DARK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157594#M751132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is the code of the function module,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SORT AMARA_UEB BY TRANC.&lt;/P&gt;&lt;P&gt;SORT AMFIELDRES BY TRANC D_IND FNAME.&lt;/P&gt;&lt;P&gt;  DELETE ADJACENT DUPLICATES FROM AMARA_UEB COMPARING TRANC.&lt;/P&gt;&lt;P&gt;DELETE ADJACENT DUPLICATES FROM AMFIELDRES COMPARING TRANC D_IND FNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'MATERIAL_MAINTAIN_DARK'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;          KZ_ACTIV_CAD              = SPACE&lt;/P&gt;&lt;P&gt;          FLAG_MUSS_PRUEFEN         = SPACE&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        SPERRMODUS                = 'E'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;         MAX_ERRORS                = 0&lt;/P&gt;&lt;P&gt;           P_KZ_NO_WARN              = 'E'&lt;/P&gt;&lt;P&gt;           KZ_PRF                    = SPACE&lt;/P&gt;&lt;P&gt;         KZ_VERW                   = 'X'&lt;/P&gt;&lt;P&gt;         KZ_AEND                   = 'X'&lt;/P&gt;&lt;P&gt;         KZ_DISPO                  = 'X'&lt;/P&gt;&lt;P&gt;         KZ_TEST                   = ' '&lt;/P&gt;&lt;P&gt;         KZ_MDIP                   = ' '&lt;/P&gt;&lt;P&gt;         KZ_MPRP                   = ' '&lt;/P&gt;&lt;P&gt;         KZ_ALE                    = ' '&lt;/P&gt;&lt;P&gt;         KZ_ACTV                   = ' '&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        MATNR_LAST                =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        NUMBER_ERRORS_TRANSACTION =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;           AMARA_UEB                 = AMARA_UEB&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        AMAKT_UEB                 =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          AMARC_UEB                 = AMARC_UEB&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        AMARD_UEB                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        AMFHM_UEB                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       amarm_ueb                 = amarm_ueb&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        AMEA1_UEB                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       ambew_ueb                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        ASTEU_UEB                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        ASTMM_UEB                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        AMLGN_UEB                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        AMLGT_UEB                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        AMPGD_UEB                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        AMPOP_UEB                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        AMVEG_UEB                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        AMVEU_UEB                 =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          AMVKE_UEB                 = AMVKE_UEB&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        ALTX1_UEB                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        AMPRW_UEB                 =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        AMFIELDRES                = AMFIELDRES&lt;/P&gt;&lt;P&gt;          AMERRDAT                  = AMERRDAT&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;           KSTATUS_EMPTY             = 1&lt;/P&gt;&lt;P&gt;           TKSTATUS_EMPTY            = 2&lt;/P&gt;&lt;P&gt;           T130M_ERROR               = 3&lt;/P&gt;&lt;P&gt;           INTERNAL_ERROR            = 4&lt;/P&gt;&lt;P&gt;           TOO_MANY_ERRORS           = 5&lt;/P&gt;&lt;P&gt;           UPDATE_ERROR              = 6&lt;/P&gt;&lt;P&gt;           OTHERS                    = 7.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------------------------------" /&gt;&lt;P&gt;Make sure that the structures AMARA_UEB, AMARC_UEB, AMVKE_UEB (whichever is required)are all properly appended by the proper values.&lt;/P&gt;&lt;P&gt;AMFIELDRES is an important structure here, which is solely responsible for updating all the values.Do get back, in case of any issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Archana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 12:35:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-maintain-dark/m-p/3157594#M751132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T12:35:45Z</dc:date>
    </item>
  </channel>
</rss>

