<?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: Batch Input MM02 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026300#M82549</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can't you use BAPI_MATERIAL_SAVEDATA for this purpose?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Oct 2005 14:42:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-10-18T14:42:45Z</dc:date>
    <item>
      <title>Batch Input MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026294#M82543</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;I am trying to update material master data with  transaction MM02. With MM02 I want to go into the Classification view for this material and change the value of a previously entered class. &lt;/P&gt;&lt;P&gt;At first I tried to record doing this in Batch Input Mode which did not succeed in doing it. &lt;/P&gt;&lt;P&gt;Then I tried to record without batch input mode and now everything seemed to work fine, I finished the recording and prepared to work. The problem I have now is that when I run the bdc session, it does not scrool down the screen and I haven´t been able to update all the values I need, any ideas how to scroll it down?,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel P.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 14:28:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026294#M82543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T14:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026295#M82544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might consider using the function module instead of BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

 call function 'MATERIAL_MAINTAIN_DARK'
         exporting
              sperrmodus                = ' '
              kz_prf                    = 'W'
              max_errors                = ' '
              p_kz_no_warn              = 'X'
              kz_verw                   = 'X'
              kz_aend                   = 'X'
              kz_dispo                  = 'X'
              kz_test                   = ' '
              flag_muss_pruefen         = ' '
              call_mode                 = 'ACT'
         importing
              number_errors_transaction = numerror
              matnr_last     = last_matnr
         tables
             amara_ueb      = i_mara    "Basic Data
             amakt_ueb      = i_makt    "Descriptions
             amarc_ueb      = i_marc    "Plant
             amard_ueb      = i_mard    "Storage Location
*            AMFHM_UEB      = I_MFHM    "Production Tools
             amarm_ueb      = i_marm    "Units of Measure
*            AMEA1_UEB      = I_MEA1    "Internal Mangagement -  EANs
             ambew_ueb      = i_mbew    "Accounting/Costing
             asteu_ueb      = i_steu    "Tax Data
             astmm_ueb      = i_steumm  "Tax Data
*            AMLGN_UEB      = I_MLGN    "Warehouse Data
*            AMLGT_UEB      = I_MLGT    "Storage Type Data
*            AMPGD_UEB      = I_MPGD    "Change Documents
*            AMPOP_UEB      = I_MPOP    "Forcast Parameters
*            AMVEG_UEB      = I_MVEG    "Total Consumption Data
*            AMVEU_UEB      = I_MVEU    "Unplanned Consumption Data
             amvke_ueb      = i_mvke    "Sales Data
             altx1_ueb      = i_ltx1    "Sales Text
*            AMPRW_UEB      = I_MPRW    "Forcast Values
             amfieldres     = i_delfields
             amerrdat       = i_errors
         exceptions
              kstatus_empty             = 01
              tkstatus_empty            = 02
              t130m_error               = 03
              internal_error            = 04
              update_error              = 05
              too_many_errors           = 06.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 14:33:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026295#M82544</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-18T14:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026296#M82545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might be able to use the position function. Does RMCLF-PAGPOS exist on the screen? Is the screen SAPLCLFM 1101?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 14:34:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026296#M82545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T14:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026297#M82546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, you might consider using transaction CU42 to change the class assignment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 14:38:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026297#M82546</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-18T14:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026298#M82547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes RMCLF-PAGPOS does exist, and It also is on the screen SAPLCLFM 1101, why?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 14:39:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026298#M82547</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T14:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026299#M82548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use this field to "position to" the correct line that you want up update.  This will put that line at the top of the table control, so all you need to do is update the first visible line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course, you will have to know the index of the line that you need to update before calling the BDC transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rich Heilman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 14:42:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026299#M82548</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-18T14:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026300#M82549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can't you use BAPI_MATERIAL_SAVEDATA for this purpose?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 14:42:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026300#M82549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T14:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026301#M82550</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;You can use standard program RCCLBI03 also. You will have to write a file with correct format and data and pass it to this program. Check program documentation for more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 14:44:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026301#M82550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T14:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026302#M82551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a sort position for the classification. You can use that as a starting point to determine the position on the page; however, if you have run some of the upgrade conversion programs for classifications, you may find that some classifications for a single material have the same sort sequence. You'll have to debug the classification code to determine how the program sorts the classifications in that case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 14:48:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026302#M82551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T14:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026303#M82552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Best way to update Classification assignment is to use the function module 'BAPI_OBJCL_CHANGE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may first want to use the FM 'BAPI_OBJCL_GETDETAIL' so that you have all the information and then change what you have to in the Internal tables and call the CHANGE FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The parameters are as shown below,&lt;/P&gt;&lt;P&gt;objectkey = Material number or Vendor number etc..&lt;/P&gt;&lt;P&gt;objecttable = The check table for the above key, so it's MARA for Materials LFA1 for Vendors&lt;/P&gt;&lt;P&gt;classnum = Name of the class&lt;/P&gt;&lt;P&gt;classtype = Type of class '001' for Materials&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you have three internal tables, one for passing Numeric values (including ranges), another for Character values, and another for Currency values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 14:56:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026303#M82552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T14:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026304#M82553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do not forget to call 'BAPI_TRANSACTION_COMMIT' after calling the BAPI Function module that changes or creates data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 14:58:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026304#M82553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T14:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026305#M82554</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;Thanks for your answers, but what doesn`t scrool down are the class`s values, and not the classes itself.  I recorded with the SM35, but the recoding seems to not work in the bdc session. Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for your help!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 16:14:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026305#M82554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T16:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026306#M82555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can add classification using the program RCCLBI03. It has good documentation associated with it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srinivas Adavi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, Sanjay already posted it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 21:19:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026306#M82555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T21:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026307#M82556</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;Try with  CLVF_VB_INSERT_CLASSIFICATION, that´s the function used by MM02 for maintain the classification values for Materials.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Frank&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2005 01:27:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-mm02/m-p/1026307#M82556</guid>
      <dc:creator>former_member425121</dc:creator>
      <dc:date>2005-10-19T01:27:14Z</dc:date>
    </item>
  </channel>
</rss>

