<?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: User Exit for batch classification in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750931#M1303240</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Yes I only did changes in UE "EXIT_SAPMM07M_004" . Make sure in that OMCV transaction your enabling checkbox for you required movement type. If in transaction Migo you are using movement type for which flag is not enabled it will not go to this user exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhijeet more&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Jun 2009 05:08:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-08T05:08:09Z</dc:date>
    <item>
      <title>User Exit for batch classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750925#M1303234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to assign values to user-defined characteristics of a batch when posting goods issue against respective material. I found enhancement MBCFC004 which contains CFC which as given in documentation get called at time of a goods movement for a batch to be specified.&lt;/P&gt;&lt;P&gt;But when I tried posting Goods Receipt through MIGO it wont get called at all. Any body could tell me is this valid User Exit ? which other exit can be used for same purpose??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 10:17:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750925#M1303234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T10:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit for batch classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750926#M1303235</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;MBCFC004&lt;DEL&gt;&amp;gt;EXIT_SAPMM07M_004&lt;/DEL&gt;&amp;gt; ZXMBCU04.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF i_mseg-bwart = '101'.
*-- Data Declarations
  DATA : t_characters LIKE characters OCCURS 0 WITH HEADER LINE.
  DATA : t_attributes LIKE api_ch_att OCCURS 0 WITH HEADER LINE.
  DATA : t_values LIKE api_val_i OCCURS 0 WITH HEADER LINE.
**-------------------GOODS MOVEMENT DETAILS FOR THE ORDER ENTERED----------
  t_characters[] = characters[].
  t_attributes[] = attributes[].
  t_values[] = values[].


  IF  w_afpo-pwerk = 'PS01'.
*-- Raw Seed for order types PHYD , PKNL
    IF ( w_aufk-auart = 'PHYD' OR
         w_aufk-auart = 'PKNL' OR
         w_aufk-auart = 'POHD' OR
         w_aufk-auart = 'POKL') .
      IF ( w_mara-mtart = 'ZRSD' OR w_mara-mtart = 'ZWCB' ).
        CLEAR: v_season, v_year, v_season_year.
        CONCATENATE w_aufk-zzsaiso w_aufk-zzsaisj INTO v_season_year SEPARATED BY space.

        LOOP AT t_characters.
          CASE t_characters-atnam.
            WHEN 'PRODUCTION_YEAR'.
              v_year = w_aufk-zzsaisj.
              t_values-atinn = t_characters-atinn.
              t_values-atnam = t_characters-atnam.
              t_values-atwtb = w_aufk-zzsaisj.
              APPEND t_values TO values.
              CLEAR t_values.

            WHEN 'SEASON'.
              v_season = w_aufk-zzsaiso.
              t_values-atinn = t_characters-atinn.
              t_values-atnam = t_characters-atnam.
              t_values-atwtb = w_aufk-zzsaiso.
              APPEND t_values TO values.
              CLEAR t_values.

            WHEN 'GROWER_CODE'.
              t_values-atinn = t_characters-atinn.
              t_values-atnam = t_characters-atnam.
              t_values-atwtb = w_aufk-zzgrower.
              APPEND t_values TO values.
              CLEAR t_values.

            WHEN 'SEASON_YEAR'.
*              CONCATENATE V_SEASON V_YEAR INTO V_SEASON_YEAR SEPARATED BY SPACE.
              t_values-atinn = t_characters-atinn.
              t_values-atnam = t_characters-atnam.
              t_values-atwtb = v_season_year.
              APPEND t_values TO values.
              CLEAR t_values.
          ENDCASE.
        ENDLOOP.
      ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is the code which we did for userdefined characteristics....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shailaja Ainala.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 10:35:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750926#M1303235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T10:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit for batch classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750927#M1303236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shailaja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried using same enhancement but not working. Control is not going to that FM. I am using MIGO transaction for doing Goods Receit against PO. When click on Batch &amp;amp; click on classification button control wont go to this FM (EXIT_SAPMM07M_004).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For which transaction u used this enhancement??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 12:47:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750927#M1303236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T12:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit for batch classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750928#M1303237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhijeet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am also facing same problem.&lt;/P&gt;&lt;P&gt;Did you get correct user exit or badi ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Satendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jun 2009 09:01:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750928#M1303237</guid>
      <dc:creator>former_member1282761</dc:creator>
      <dc:date>2009-06-05T09:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit for batch classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750929#M1303238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I forgot to update the thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, I solved the issue. Go to transaction 'OMCV',thr u will find in table third row checkbox for user ext. Enable it for your req movment type and ur problem would get solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enjoy,&lt;/P&gt;&lt;P&gt;Abhijeet More.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jun 2009 10:22:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750929#M1303238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-05T10:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit for batch classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750930#M1303239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhijeet,&lt;/P&gt;&lt;P&gt;First of all thanku very much for promtly response.&lt;/P&gt;&lt;P&gt;I flaged the check box as you told.&lt;/P&gt;&lt;P&gt;Still control is not stopping at break point in user exit EXIT_SAPMM07M_004  .&lt;/P&gt;&lt;P&gt;Just wanted to double check you did the change in this user exit only to meet ur req?&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;satendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Jun 2009 14:20:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750930#M1303239</guid>
      <dc:creator>former_member1282761</dc:creator>
      <dc:date>2009-06-06T14:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit for batch classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750931#M1303240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Yes I only did changes in UE "EXIT_SAPMM07M_004" . Make sure in that OMCV transaction your enabling checkbox for you required movement type. If in transaction Migo you are using movement type for which flag is not enabled it will not go to this user exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhijeet more&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2009 05:08:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750931#M1303240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-08T05:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit for batch classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750932#M1303241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are actually 2 different exits. &lt;/P&gt;&lt;P&gt;You may try to use EXIT_SAPLV01Z_014 instead.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Jun 2009 13:28:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750932#M1303241</guid>
      <dc:creator>stefan_weisenberger</dc:creator>
      <dc:date>2009-06-13T13:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit for batch classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750933#M1303242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes this exit is getting triggered when i click on classification button.&lt;/P&gt;&lt;P&gt;Before assigning dynamic value for a char I have to do one more validation and it should be happened when user gives Batch number. i mean before pressing classification button. &lt;/P&gt;&lt;P&gt;The existing batch classification setup of country A system enforces the user to complete certain batch characteristic values at the time of goods receipt. These characteristic values are specific to country A and are not required during goods receipt of these materials outside the country A. The  requirement is to ensure these characteristic values are not mandatory during the goods receipt process outside the country A, and also to ensure they remain mandatory within country A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreicate your inputs .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;satendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2009 03:56:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750933#M1303242</guid>
      <dc:creator>former_member1282761</dc:creator>
      <dc:date>2009-06-23T03:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit for batch classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750934#M1303243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello A,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   If you're using MB1A / MB1C / MB31 you can use EXIT_SAPMM07M_004.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   If you're using MIGO you have to create an implementation for BADI MB_DOCUMENT_BADI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;JC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2009 14:15:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750934#M1303243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-10T14:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit for batch classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750935#M1303244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhijit, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iam facing the problem to trigger EXIT_SAPMM07M_004 could you please elaborate on transaction OMCV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Jagadeesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 12:33:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750935#M1303244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T12:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit for batch classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750936#M1303245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satendra, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have problem in  EXIT_SAPLV01Z_014 in  triggering  through MIGO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please tell me whether we can use  EXIT_SAPMM07M_004 or EXIT_SAPLV01Z_014 in  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jagadeeshwar B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 12:41:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-batch-classification/m-p/5750936#M1303245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T12:41:05Z</dc:date>
    </item>
  </channel>
</rss>

