<?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: MARA_EAN11 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965322#M68412</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mandalika!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I forgot to specify what fields I would like to use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Input-Fields: - NUMTP (Ean-Type = 'HE')&lt;/P&gt;&lt;P&gt;              - EAN11 (EAN-Number)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output: - A Boolean -&amp;gt; Correct, not Correct&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Jul 2005 14:45:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-07-12T14:45:21Z</dc:date>
    <item>
      <title>MARA_EAN11</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965314#M68404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello SAPPERS!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to check EAN-nrs (that I get from our client).&lt;/P&gt;&lt;P&gt;The numbers have to be checked in combination with their EAN Category.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I´ve debugged MM02, and I´m pretty sure I have to use the function Module 'MARA_EAN11'.&lt;/P&gt;&lt;P&gt;Unfortunately there is no documentation to this FM... &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can´t get the FM to run because (whilst debugging) I came across some very weird entries in the tables-section of the FM. I have no idea why the entries are what they are, and not something else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anybody used this FM yet?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some explanation on the inport/exportand tables -section would be very appreciated!!!!  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: To Debug MM02, you can just enter a material in Basic Data 1, start the debugger (/H) and enter a different EAN-Number than the one that was there before...  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx!!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pieter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2005 13:17:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965314#M68404</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-11T13:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: MARA_EAN11</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965315#M68405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; Try the following: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'MARA_EAN11'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      p_matnr               = /eur/xreqmath_s-matnr&lt;/P&gt;&lt;P&gt;      p_numtp               = &amp;lt;fs_numtp&amp;gt;&lt;/P&gt;&lt;P&gt;      p_ean11               = &amp;lt;fs_ean11&amp;gt;&lt;/P&gt;&lt;P&gt;      p_meinh               = &amp;lt;fs_meins&amp;gt;&lt;/P&gt;&lt;P&gt;      ret_ean11             = i_ean11&lt;/P&gt;&lt;P&gt;      ret_numtp             = i_numtp&lt;/P&gt;&lt;P&gt;      binpt_in              = sy-binpt&lt;/P&gt;&lt;P&gt;      p_message             = 'N'&lt;/P&gt;&lt;P&gt;      sperrmodus            = ' '&lt;/P&gt;&lt;P&gt;   importing&lt;/P&gt;&lt;P&gt;     p_numtp               = i_numtp&lt;/P&gt;&lt;P&gt;     p_ean11               = i_ean11&lt;/P&gt;&lt;P&gt;     msgid                 = i_msgid&lt;/P&gt;&lt;P&gt;     msgty                 = i_msgty&lt;/P&gt;&lt;P&gt;     msgno                 = i_msgno&lt;/P&gt;&lt;P&gt;     msgv1                 = i_msgv1&lt;/P&gt;&lt;P&gt;     msgv2                 = i_msgv2&lt;/P&gt;&lt;P&gt;     msgv3                 = i_msgv3&lt;/P&gt;&lt;P&gt;     msgv4                 = i_msgv4&lt;/P&gt;&lt;P&gt; tables&lt;/P&gt;&lt;P&gt;   marm_ean              = lt_marm_ean&lt;/P&gt;&lt;P&gt;   exceptions&lt;/P&gt;&lt;P&gt;     ean_error             = 1&lt;/P&gt;&lt;P&gt;     others                = 2&lt;/P&gt;&lt;P&gt;&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;Aveek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2005 14:35:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965315#M68405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-11T14:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: MARA_EAN11</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965316#M68406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Pieter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have not mentioned what exactly you want to do with the EANs and MATNRs. What will be the data that you can provide as Input and what is the data you need as output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are a lot of other function modules for EAN which might just suit your purpose (i.e., the crux of the logic may be the same for a lot of these function modules), even if they are not used in the MM02 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2005 14:56:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965316#M68406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-11T14:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: MARA_EAN11</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965317#M68407</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 know which exactly information ypu need but EAN numbers for materials are stored in MEAN table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krzys&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2005 15:02:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965317#M68407</guid>
      <dc:creator>krzysztof_konitz4</dc:creator>
      <dc:date>2005-07-11T15:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: MARA_EAN11</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965318#M68408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Mandalika!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a MATNR, an EAN-Type (MARA-NUMTP = 'HE') and I have a EAN11-number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Normally the EAN-Type and EAN-Number are enough to check if the EAN11-Number given to me is correct or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the number is incorrect for a certain EAN-Category (in my case 'HE') the FM MARA_EAN11 will give out a message that the check digit for this EAN-Number is incorrect...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I actually don´t care what function I use, I just need a FM that can check if an EAN11-number is correct for a certain EAN-Type (HE), or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pieter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2005 07:47:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965318#M68408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-12T07:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: MARA_EAN11</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965319#M68409</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;Check this function module MARA_SPECIAL_CHECK_GEN.In that they are using MARA_ENA1.Use where used list to get more programs using MARA_ENA1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2005 08:01:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965319#M68409</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-07-12T08:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: MARA_EAN11</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965320#M68410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pieter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The master table for the EAN categories is TNTP. The EAN numbers assignment to the EAN Category (via a material) can be obtained from the table MEAN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can actually use a select statement directly in this case. All function modules that you seek will do this same thing. But they also do a lot of other things for which they were designed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I recommend that you simply query on this table. You do not have to worry about accidentally getting incorrect information in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2005 09:28:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965320#M68410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-12T09:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: MARA_EAN11</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965321#M68411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Mandalika!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx for the reply!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, I don´t think a simple select will do.. &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I´m not checking if these EAN11-numbers already exist, I´m trying to check if they are correct... &lt;/P&gt;&lt;P&gt;This means that the Check-digit algorithm for the EAN category (in my case 'HE') should 'run' over the EAN-number to check if it is correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And that is, only possible with a Function Module in which this process is integrated, such as MARA_EAN11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So we´re back at where we started...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really appreciate all the help though!  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pieter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2005 14:42:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965321#M68411</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-12T14:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: MARA_EAN11</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965322#M68412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mandalika!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I forgot to specify what fields I would like to use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Input-Fields: - NUMTP (Ean-Type = 'HE')&lt;/P&gt;&lt;P&gt;              - EAN11 (EAN-Number)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output: - A Boolean -&amp;gt; Correct, not Correct&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2005 14:45:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965322#M68412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-12T14:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: MARA_EAN11</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965323#M68413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Huy Guys!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I finally worked out how to fill the FM!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the code... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    select * from marm&lt;/P&gt;&lt;P&gt;              into corresponding fields of table i_MARM_EAN&lt;/P&gt;&lt;P&gt;              where MATNR = WA_ZORDERDIORPOS-ZARTIKEL2 and&lt;/P&gt;&lt;P&gt;                    EAN11 = WA_ZORDERDIORPOS-ZME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    select * from mean into corresponding fields of table i_mean&lt;/P&gt;&lt;P&gt;              where MEINH = WA_ZORDERDIORPOS-ZME and&lt;/P&gt;&lt;P&gt;                    EAN11 = WA_ZORDERDIORPOS-ZEAN and&lt;/P&gt;&lt;P&gt;                    EANTP = h_numtp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    i_ME_tab-MEINH = WA_ZORDERDIORPOS-ZME.&lt;/P&gt;&lt;P&gt;    append i_ME_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    h_ean11 = WA_ZORDERDIORPOS-ZEAN.&lt;/P&gt;&lt;P&gt;    h_matnr2 = WA_ZORDERDIORPOS-ZARTIKEL2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'MARA_EAN11'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        P_MATNR               = h_matnr2&lt;/P&gt;&lt;P&gt;        P_NUMTP               = h_numtp&lt;/P&gt;&lt;P&gt;        P_EAN11               = h_ean11&lt;/P&gt;&lt;P&gt;        P_MEINH               = WA_ZORDERDIORPOS-ZME&lt;/P&gt;&lt;P&gt;        RET_EAN11             = h_RET_EAN11&lt;/P&gt;&lt;P&gt;        RET_NUMTP             = h_RET_NUMTP&lt;/P&gt;&lt;P&gt;        BINPT_IN              = SY-BINPT&lt;/P&gt;&lt;P&gt;        P_MESSAGE             = 'N'&lt;/P&gt;&lt;P&gt;        SPERRMODUS            = ''&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       KZ_MEAN_TAB_UPD       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       KZ_TEST               = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       ERROR_FLAG            = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       P_HERKUNFT            = 'A'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      VB_FLAG_MEAN          =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        P_NUMTP               = h_numtp&lt;/P&gt;&lt;P&gt;        P_EAN11               = h_ean11&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       MSGID                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       MSGTY                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       MSGNO                 = &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       MSGV1                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       MSGV2                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       MSGV3                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       MSGV4                 =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        MARM_EAN              = i_MARM_EAN&lt;/P&gt;&lt;P&gt;        MEAN_ME_TAB           = i_mean&lt;/P&gt;&lt;P&gt;        ME_TAB                = i_ME_tab&lt;/P&gt;&lt;P&gt;        YDMEAN                = i_YDMEAN&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       MEINH                 =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        EAN_ERROR             = 1&lt;/P&gt;&lt;P&gt;        OTHERS                = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enjoy!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx to evrybody that tried to help!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greeeeeetz!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2005 07:48:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965323#M68413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-13T07:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: MARA_EAN11</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965324#M68414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Pieter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a problem using about Function Mara_Ean11. Maybe you can help me.&lt;/P&gt;&lt;P&gt;I have a screen about material create. I want to create EAN number with MARA_EAN11 Function. In your program, you are creating &lt;/P&gt;&lt;P&gt;"TABLES&lt;/P&gt;&lt;P&gt;MARM_EAN = i_MARM_EAN&lt;/P&gt;&lt;P&gt;MEAN_ME_TAB = i_mean&lt;/P&gt;&lt;P&gt;ME_TAB = i_ME_tab&lt;/P&gt;&lt;P&gt;YDMEAN = i_YDMEAN"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would you please a give me a example about this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In fact, I understood i_marm_ean and i_mean. But I did not understand i_ydmean.&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;Tanju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Dec 2005 13:00:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mara-ean11/m-p/965324#M68414</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-10T13:00:09Z</dc:date>
    </item>
  </channel>
</rss>

