<?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_SAVEDATA in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553592#M250965</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, but it didn't work.  Any other idea? I've spent a lot of time looking for an answer and it has been not succesful...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is very important to find a solution to this.  Thanks for any help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Aug 2006 22:23:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-11T22:23:05Z</dc:date>
    <item>
      <title>BAPI_MATERIAL_SAVEDATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553586#M250959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.  I'm using bapi BAPI_MATERIAL_SAVEDATA to create a material and I have a problem with this.  Although material is created correctly, I need to fill BRGEW (gross weight) field using the bapi, but there's not a structure which contain such field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried filling EXTENSIONIN parameter but not success. Is this way possible for standard fields?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody help me please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Aug 2006 22:25:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553586#M250959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-10T22:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_SAVEDATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553587#M250960</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;  The gross weight GROSS_WT is available in the UNITSOFMEASURE tables parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I updated the gross weight using the UNITOFMEASURE parameter and it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Narendran Muthukumaran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Aug 2006 22:44:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553587#M250960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-10T22:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_SAVEDATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553588#M250961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naren.&lt;/P&gt;&lt;P&gt;I already do this by it didn't work.  Here's a piece of my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:BEGIN OF it_units OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE bapi_marm.&lt;/P&gt;&lt;P&gt;DATA:END OF it_units.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:BEGIN OF it_unitsx OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE bapi_marmx.&lt;/P&gt;&lt;P&gt;DATA:END OF it_unitsx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  it_units-alt_unit = 'ST'.&lt;/P&gt;&lt;P&gt;  it_units-gross_wt = '1'.&lt;/P&gt;&lt;P&gt;  it_units-unit_of_wt = 'KG'.&lt;/P&gt;&lt;P&gt;  APPEND it_units.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  it_unitsx-alt_unit = 'X'.&lt;/P&gt;&lt;P&gt;  it_unitsx-gross_wt = 'X'.&lt;/P&gt;&lt;P&gt;  it_unitsx-unit_of_wt = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND it_unitsx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is also another problem.  Trying the way you say, gross weight GROSS_WT is updated in table MARM, but I need gross weight to use it in transaction MM03 (or MM01) in which this field pertains to MARA table. How can resolve this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 13:30:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553588#M250961</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T13:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_SAVEDATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553589#M250962</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's working for me..Its updating the field MARA-BRGEW. Anyway check the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Make sure in the UNITOFMEASURE parameter given in the ALT_UNIT is the base unit of measure available in the material master (MARA-MEINS).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  In the parameter HEADDATA make sure the BASIC_VIEW is checked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you have problems..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Narendran Muthukumaran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Narendran Muthukumaran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Narendran Muthukumaran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 16:28:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553589#M250962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T16:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_SAVEDATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553590#M250963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;Still it isn't working.  I checked the value given in ALT_UNIT (ST) and it is available in the material master (MARA-MEINS).  I also noted that data is not being inserted (updated) in table MARM; I have checked all parameters and I don`t know what's wrong...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is another piece of my code, I'll be grateful if you can check it and look for any error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Views defined&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  reg_headdata-matl_type = 'ROH'.&lt;/P&gt;&lt;P&gt;  reg_headdata-ind_sector = 'W'.&lt;/P&gt;&lt;P&gt;  reg_headdata-basic_view = 'X'.&lt;/P&gt;&lt;P&gt;  reg_headdata-sales_view = 'X'.&lt;/P&gt;&lt;P&gt;  reg_headdata-purchase_view = 'X'.&lt;/P&gt;&lt;P&gt;  reg_headdata-account_view = 'X'.&lt;/P&gt;&lt;P&gt;  reg_headdata-storage_view = 'X'.&lt;/P&gt;&lt;P&gt;  reg_headdata-warehouse_view = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  it_matdescr-matl_desc = bapimatnr-material_name.&lt;/P&gt;&lt;P&gt;  it_matdescr-langu = 'S'.&lt;/P&gt;&lt;P&gt;  APPEND it_matdescr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CLIENTDATA&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  reg_clientdata-matl_group = '0GEPOECOL'.&lt;/P&gt;&lt;P&gt;  reg_clientdata-division = bapimatnr-sector.&lt;/P&gt;&lt;P&gt;  reg_clientdata-item_cat = 'NORM'.&lt;/P&gt;&lt;P&gt;  reg_clientdata-base_uom = 'ST'.&lt;/P&gt;&lt;P&gt;  reg_clientdata-net_weight = '1'.&lt;/P&gt;&lt;P&gt;  reg_clientdata-mat_grp_sm = 'SUEL'.&lt;/P&gt;&lt;P&gt;  reg_clientdata-trans_grp = '0002'.&lt;/P&gt;&lt;P&gt;  reg_clientdata-unit_of_wt = 'KG'. "new&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF bapimatnr-sales_org EQ '0004'.&lt;/P&gt;&lt;P&gt;    reg_clientdata-stor_conds = '01'.&lt;/P&gt;&lt;P&gt;    reg_clientdatax-stor_conds = 'X'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  reg_clientdatax-base_uom =   'X'.&lt;/P&gt;&lt;P&gt;  reg_clientdatax-matl_group = 'X'.&lt;/P&gt;&lt;P&gt;  reg_clientdatax-division =   'X'.&lt;/P&gt;&lt;P&gt;  reg_clientdatax-item_cat =   'X'.&lt;/P&gt;&lt;P&gt;  reg_clientdatax-base_uom =   'X'.&lt;/P&gt;&lt;P&gt;  reg_clientdatax-net_weight = 'X'.&lt;/P&gt;&lt;P&gt;  reg_clientdatax-mat_grp_sm = 'X'.&lt;/P&gt;&lt;P&gt;  reg_clientdatax-trans_grp  = 'X'.&lt;/P&gt;&lt;P&gt;  reg_clientdatax-matl_group = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  reg_clientdatax-unit_of_wt = 'X'. "new&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF bapimatnr-sales_org EQ '0004'.&lt;/P&gt;&lt;P&gt;    reg_clientdatax-stor_conds = 'X'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;UNITSOFMEASURE&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  it_units-alt_unit = 'ST'.&lt;/P&gt;&lt;P&gt;  it_units-ALT_UNIT_ISO = 'ST'.&lt;/P&gt;&lt;P&gt;  it_units-NUMERATOR = '1'.&lt;/P&gt;&lt;P&gt;  it_units-DENOMINATR = '1'.&lt;/P&gt;&lt;P&gt;  it_units-LENGTH = '2'.&lt;/P&gt;&lt;P&gt;  it_units-WIDTH = '3'.&lt;/P&gt;&lt;P&gt;  it_units-HEIGHT = '4'.&lt;/P&gt;&lt;P&gt;  it_units-UNIT_DIM = 'KGV'.&lt;/P&gt;&lt;P&gt;  it_units-UNIT_DIM_ISO = 'KGV'.&lt;/P&gt;&lt;P&gt;  it_units-VOLUME = '7'.&lt;/P&gt;&lt;P&gt;  it_units-VOLUMEUNIT ='DM3'.&lt;/P&gt;&lt;P&gt;  it_units-VOLUMEUNIT_ISO ='DM3'.&lt;/P&gt;&lt;P&gt;  it_units-gross_wt = '1'.&lt;/P&gt;&lt;P&gt;  it_units-unit_of_wt = 'KG'.&lt;/P&gt;&lt;P&gt;  APPEND it_units.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  it_unitsx-alt_unit = 'X'.&lt;/P&gt;&lt;P&gt;  it_unitsx-gross_wt = 'X'.&lt;/P&gt;&lt;P&gt;  it_unitsx-unit_of_wt = 'X'.&lt;/P&gt;&lt;P&gt;  it_unitsx-ALT_UNIT_ISO = 'X'.&lt;/P&gt;&lt;P&gt;  it_unitsx-NUMERATOR = 'X'.&lt;/P&gt;&lt;P&gt;  it_unitsx-DENOMINATR = 'X'.&lt;/P&gt;&lt;P&gt;  it_unitsx-LENGTH = 'X'.&lt;/P&gt;&lt;P&gt;  it_unitsx-WIDTH = 'X'.&lt;/P&gt;&lt;P&gt;  it_unitsx-HEIGHT = 'X'.&lt;/P&gt;&lt;P&gt;  it_unitsx-UNIT_DIM = 'X'.&lt;/P&gt;&lt;P&gt;  it_unitsx-UNIT_DIM_ISO = 'X'.&lt;/P&gt;&lt;P&gt;  it_unitsx-VOLUME = 'X'.&lt;/P&gt;&lt;P&gt;  it_unitsx-VOLUMEUNIT ='X'.&lt;/P&gt;&lt;P&gt;  it_unitsx-VOLUMEUNIT_ISO ='X'.&lt;/P&gt;&lt;P&gt;  APPEND it_unitsx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SALESDATA&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  reg_ventas-delyg_plnt = 'BGTA'.&lt;/P&gt;&lt;P&gt;  reg_ventas-cash_disc = 'X'.&lt;/P&gt;&lt;P&gt;  reg_ventas-matl_stats =  '1'.&lt;/P&gt;&lt;P&gt;  reg_ventas-mat_pr_grp = 'A6'.&lt;/P&gt;&lt;P&gt;  reg_ventas-acct_assgt = 'AE'.&lt;/P&gt;&lt;P&gt;  reg_ventas-item_cat =  'NORM'.&lt;/P&gt;&lt;P&gt;  reg_ventas-matl_grp_1 = 'REP'.&lt;/P&gt;&lt;P&gt;  reg_ventas-matl_grp_4 = 'IND'.&lt;/P&gt;&lt;P&gt;  reg_ventas-sales_org  = bapimatnr-sales_org.&lt;/P&gt;&lt;P&gt;  reg_ventas-distr_chan = '02'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  reg_ventasx-delyg_plnt = 'BGTA'.&lt;/P&gt;&lt;P&gt;  reg_ventasx-cash_disc =  'X'.&lt;/P&gt;&lt;P&gt;  reg_ventasx-matl_stats = 'X'.&lt;/P&gt;&lt;P&gt;  reg_ventasx-mat_pr_grp = 'X'.&lt;/P&gt;&lt;P&gt;  reg_ventasx-acct_assgt = 'X'.&lt;/P&gt;&lt;P&gt;  reg_ventasx-item_cat =   'X'.&lt;/P&gt;&lt;P&gt;  reg_ventasx-matl_grp_1 = 'X'.&lt;/P&gt;&lt;P&gt;  reg_ventasx-matl_grp_4 = 'X'.&lt;/P&gt;&lt;P&gt;  reg_ventasx-sales_org  = bapimatnr-sales_org.&lt;/P&gt;&lt;P&gt;  reg_ventasx-distr_chan = '02'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;PLANTDATA&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  reg_plantdata-availcheck = 'KP'.&lt;/P&gt;&lt;P&gt;  reg_plantdata-loadinggrp = '0001'.&lt;/P&gt;&lt;P&gt;  reg_plantdata-neg_stocks = 'X'.&lt;/P&gt;&lt;P&gt;  reg_plantdata-plant = 'BGTA'.&lt;/P&gt;&lt;P&gt;  reg_plantdata-profit_ctr = w_prtctr.&lt;/P&gt;&lt;P&gt;  reg_plantdata-countryori = bapimatnr-country.&lt;/P&gt;&lt;P&gt;  reg_plantdata-pur_group  = w_ekgrp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  reg_plantdatax-plant = 'BGTA'.&lt;/P&gt;&lt;P&gt;  reg_plantdatax-availcheck = 'X'.&lt;/P&gt;&lt;P&gt;  reg_plantdatax-loadinggrp = 'X'.&lt;/P&gt;&lt;P&gt;  reg_plantdatax-neg_stocks = 'X'.&lt;/P&gt;&lt;P&gt;  reg_plantdatax-profit_ctr = 'X'.&lt;/P&gt;&lt;P&gt;  reg_plantdatax-countryori = 'X'.&lt;/P&gt;&lt;P&gt;  reg_plantdatax-pur_group  = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;VALUATIONDATA&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  reg_valuationdata-val_class = w_bklas.&lt;/P&gt;&lt;P&gt;  reg_valuationdata-price_ctrl = 'V'.&lt;/P&gt;&lt;P&gt;  reg_valuationdata-price_unit = '1'.&lt;/P&gt;&lt;P&gt;  reg_valuationdata-val_area   = 'BGTA'.&lt;/P&gt;&lt;P&gt;  reg_valuationdatax-val_area   = 'BGTA'.&lt;/P&gt;&lt;P&gt;  reg_valuationdatax-val_class = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF bapimatnr-var_price IS INITIAL.&lt;/P&gt;&lt;P&gt;    reg_valuationdata-moving_pr = '1'.&lt;/P&gt;&lt;P&gt;    reg_valuationdatax-moving_pr = 'X'.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    reg_valuationdata-moving_pr =  bapimatnr-var_price.&lt;/P&gt;&lt;P&gt;    reg_valuationdatax-moving_pr = 'X'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  reg_valuationdatax-price_ctrl = 'X'.&lt;/P&gt;&lt;P&gt;  reg_valuationdatax-price_unit = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;STORAGELOCATIONDATA&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  reg_storagelocationdata-plant = 'BGTA'.&lt;/P&gt;&lt;P&gt;  reg_storagelocationdata-stge_loc = bapimatnr-store.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  reg_storagelocationdatax-plant = 'BGTA'.&lt;/P&gt;&lt;P&gt;  reg_storagelocationdatax-stge_loc = bapimatnr-store.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TAXCLASSIFICATIONS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  it_tax-taxclass_1 = '9'.&lt;/P&gt;&lt;P&gt;  it_tax-tax_type_1 = 'MWST'.&lt;/P&gt;&lt;P&gt;    IF w_herkl EQ 'CO'.  &lt;/P&gt;&lt;P&gt;  it_tax-depcountry = 'CO'.&lt;/P&gt;&lt;P&gt;      it_tax-tax_ind = 'E'.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      it_tax-depcountry = w_herkl.&lt;/P&gt;&lt;P&gt;     it_tax-tax_ind = 'A'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  APPEND it_tax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help, kind regards...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 20:04:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553590#M250963</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T20:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_SAVEDATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553591#M250964</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 found the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  In the unitofmeasureX parameter in the field ALT_UNIT_ISO pass the value 'ST' instead of 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  As this field is not a update field and it actually expects the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Hope this works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Narendran Muthukumaran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 21:25:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553591#M250964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T21:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_SAVEDATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553592#M250965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, but it didn't work.  Any other idea? I've spent a lot of time looking for an answer and it has been not succesful...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is very important to find a solution to this.  Thanks for any help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 22:23:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553592#M250965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T22:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_SAVEDATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553593#M250966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I was checking my code again and I solved the problem.  In the unitofmeasureX parameter in the field ALT_UNIT I  passed the value 'ST' instead of 'X' and it worked!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks very much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 13:08:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1553593#M250966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-14T13:08:11Z</dc:date>
    </item>
  </channel>
</rss>

