Have to maintain a specific number apart from material number in MMR

HI All,
We have a specific number(X) for some materials that we want to enter in a material master, and when we create a sales order that number(X) along with material number should populate in sales order.
is there any field provided by sap to fulfill this requirement.

There is no standard SAP fields provided to handle your requirements in the material master.
You may need to use any of the unused fields in the material master. Following options I could think of;
1) Use of Old material number field (MARA-BISMT). But this field will not flow into sales order. You may go with an enhancement to add this field in the sales order -> item level.
2) Use of basic text or sales text from the material master. You need to add addtiional text type in sales order -> item text level in t.code VOTXN. By this way, when a number is maintained in the material master text field, this will automatically gets copied into sales orders.
3) Use of EAN/UPC field (MEAN-EAN11) field. I am not in favor of using this field as this may be needed in other purposes like electronic transmission of data with government entites. If this field is not used in your business, you can think of this also.
Using any of the above may eventually need development of customized report for your final reporting requirement. I am not sure whether any standard report will provide the details on what you are looking for.
Regards,

Similar Messages

  • Since "upgrading" to OS X Lion Outlook 2011 sync services appear not to work and I have no contacts in Address Book apart from me!  Any ideas please?

    Sync Services in Outlook 2011 appear not to work in OS X Lion as I have no contacts in Address Book apart from me!  Any ideas please?

    I had all my contacts deleted one day from muy address book.   The Apple folks said that at times when MS Office sends an update it moves all your contacts from the address book to Outlook contacts.  I had to get into Time Machine to restore my contacts in the address book. 
    If you do this, be sure to update each group, not just the all contacts group because pulling up all contacts will not restore the contacts to the groups you had.
    If you sync with Moble Me, be careful to replace what is on Mobile Me with what is on your comptuer after you are finished restoring the contacts to your satisfaction.
    I haven't switched to iCloud yet so I can't talk about syncing to it.
    Jay

  • How to remove leading zero from Material Number

    Hello Everyone,
    I need to figure it out how to remove leading zero from material number. Cureently extractor is sending material number as 100663. But when comes into BI i am getting as "000000000000100663" and similariy in report it is appearing as "000000000000100663". Now my client wants me to exclude preceeding zero for a material in all the reports.
    Is there any setting in query desinger to handle this issure or in the backend.
    Need your inputs.
    Thanks,
    Lasya.

    Hi
    you can use the function Module
    CONVERSION_EXIT_ALPHA_OUTPUT in the start routine
    to test this go to SE37  --- give the CONVERSION_EXIT_ALPHA_OUTPUT -
    >display -
    > F8
    in the input give 000000456
    and execute
    the out put will be 456
    for getting Zeros you can use
    CONVERSION_EXIT_ALPHA_INPUT--- to remove leading zeros
    Santosh
    Edited by: Santhosh Nagaraj on Oct 29, 2009 10:52 PM
    Edited by: Santhosh Nagaraj on Oct 29, 2009 10:54 PM

  • Report to find a material by a mfr part number and old material number

    Hi,
    Is there any standard report to find a material by a mfr part number and old material number ?
    For the moment, we are using MM03 to search articles by these selection criterion.
    Thanks,
    Julien Girard

    Hi
    As there is no stsndard report use the SQVI to find out the details, It is very simple , please follwo the below steps.
    Use Txn SQVI, enter the Quick view field say- ZMNFR and click the  create button, Enter the title in the next screen i.e Report name- Say - Manufacturer's Part No. Details, in the same screen you need to enter  MARA  for the data from table/database view, please leave the 1. data source as Table only and the radio button as Basis mode only.  Click the tick mark , you will go to the next screen,
    You will notice Quick viewer Intial screen
    Open the node general material data
    Select the Buttons besides the fields MARA-MATNR for material number, MARA-MFRPN for manufacturers part number, and MARA-BISMT for old material number. You can include any other field if you wish to have in your output. You will notice two check boxes against each field, one is for input screen field and the other is for outputf field. But currently you do not bother about and select both the check boxes or any other field you wish to have as input and output as well. Once selected all the fields afer clicking the check boxes save the total arrangement. and then in the same screen use the execute button or use F8 to find out your report input screen.
    Now enter the Material number for which you wish to know other two details in the report and execute again you will find the report output.
    Please ensure that you are maintaining both the details in material master basic data1 and purchasing  view if you wish to get  out output
    Best regards
    SAM
    Edited by: samuel mendis on Apr 8, 2009 6:52 AM

  • Need additional Description of Material apart from Material Master

    Dear All,
    One of our customer wants to maintain an additional Material Description, apart from the description maintained in the Material Master.
    In the material Master, they are maintaining "Manufacturer Part Number" as a description.
    In the Customer-Material Info record, they are maintaining "Customer's Part No".
    Both are getting printing in the Invoice output.
    Apart from these they need to maintain some other decription of material. Where we can maintain this?
    For example, in the Material Master, they are maintaining "Manufacturer Part Number", something like "RM20010V". The same is not acceptable for Excise clearace officers. They asked them to maintain the clear description of the material.
    Please suggest.
    Regards,
    Mullairaja

    they need to maintain some other decription of material
    Go to MM01 / MM02 and click "Select views" so that you can see a field SALES TEXT.  You can maintain here and fetch the same to your sale order / billing.
    thanks
    G. Lakshmipathi

  • 0 to be terminated from Material Number

    The 0MATERIAL is diaplyed in most of our Purchase report which displays the material number preceeding with zero's. eg. 0000000026 and 0000001235 etc.
    Please guide us in eliminating these zeros. It should display like 26 and 1235.
    This should be done in Bex.
    Thanks and Regards,
    Hariprasad V

    Hi Hariprasad,
             Goto 0MATERIAL info object in the change mode. In General tab, there'll be a drop down for conversion routine. There, you have to use the conversion Routine 'Alpha'.
             It will help you to prefix the values for 0MATERIAL with zero's during the processing and in the output it will automatically remove all the prefixed zero's from the 0MATERIAL.
             Hope it helps you. Assign points if it helps you.
    Regards,
    Yokesh.

  • How to get material description from material number.

    Hello ABAP Pundits,
    I have got the material number MATNR.
    I need to get Material Description MAKTX using this material number.
    Now MAKTX is not a table that I can go and fetch it.
    What function module do I require to fetch that material description field ?
    Points will be surely awarded..
    Tushar.

    Do a select against <b>MAKT</b>.
    parmaters: p_matnr type mara-matnr.
    data: xmaktx type makt-maktx.
    Select maktx into xmaktx from makt
              where matnr = p_matnr
                and spras = sy-langu.
    Regards,
    Rich HEilman

  • How to maintain vendor specific prices for a material in SRM

    Hi,
    We are running extended classic scenario (SRM5.0). We want to register vendor-specific prices for materials that have been replicated from R/3.In SAP help, the following statement is made:
    Vendor-specific prices:
    For this, you have created Product Linkages in the SRM System with vendor-specific prices via the SAP Menu Master Data --> Products -->Process Products.
    However, I can not find the place to do this. Via relationships, I can make the link to the vendor and vendor-product-code, but I can not fill in a price.
    Is anyone familiar with this?
    Thanks,
    Ed

    Hi
    Go to the Conditions tab in the General Data section of a particular Product in the COMMPR01 transaction.
    Processing conditions in product master data depends on the application you wish to use; Purchasing (BBP Scenario) or Sales (CRM Scenario). This decides which condition types should be accessed, for example, to assign a price, discount or surcharge to a material, service or product category.
    First choose the required application; Purchasing or Sales and use the input help to enter a condition type in the field for input (in the item area). A line then appears where you enter the price-related data.
    <u>Dependencies</u>
    <b>To assign a price, for example, to a condition type, you must first make the following settings in Customizing for the condition technique:</b>
    Condition tables must exist and be generated with the necessary fields for product processing (for example, product or business partner and product).
    A condition type must exist (for example, a copy of an existing condition type such as 0PR0). The above-mentioned tables must be assigned to this condition type in an access sequence (in Customizing under CRM -> Master Data ->
    Condition Technique -> Access Sequence)
    Then you must assign the condition types required for product processing to a new condition maintenance group (in Customizing under -> CRM -> Master Data -> Condition Technique -> Condition Group), as the condition group PRODUCTCRM delivered by SAP should not be modified.
    You must ensure that the condition groups are assigned to the sales and purchasing applications so that the settings of the condition maintenance group apply to the product master data (in Customizing under CRM -> Master Data -> Product -> Special Settings for Sales Transactions and under Enterprise Buyer professional edition -> Master Data -> Products -> Special Settings for Purchasing Transactions).
    Example
    Condition table SAP004 contains amongst other things the fields 'business partner' and 'product'. A copy of the R/3 condition type PR00 with the name ZPR0 is created. When assigning the condition type to the new condition group ZPRODUCTCRM, condition type ZPR0 is assigned to condition table SAP004. You must then assign the new condition group ZPRODUCTCRM to the sales application.
    Hope this will help.
    Regards
    - Atul

  • MIN number different from phone number/Why

    Does anyone understand as to why my phone number is different for a a telephone number assigned to the MIN under phone settings? GO to settings/Status/ then look at MIN. The number assigned to the MIN is a local number but not assigned to me. I called the number and it is a local hospital. I got this phone last week as a CPO Droid X. This was not the case on my original Droid X. They Telephone number and MIN both matched under my prior assigned handset. Any thoughts?

    MIN stands for Mobile Identifilcation Number and this identifies your device to the network, it kind of like a up address on a PC. This number wont be the same as your cell number, all devices will have a unique number like this to identify the device to the network.
    Hope that cleat things for you..

  • How to get RFQ number based from PO number...

    Hello Experts,
    How do I get the RFQ(request for quotation) based on a given PO(purchase order) number?
    Thank you guys and take care!

    EKKO-EBELN = EKPO-EBELN
                             EKPO-ANFNR = RFQ Number.
    Hope this helps.
    Regards
    Vinayak

  • Stock analysis based on vendor material number

    Hi
    Is there any report which can show the total stock of a material with split on vendor material number (I am entering different vendor material numbers upon goods receipt) or any query I can write to get the above result?
    The requirement is as follows: I will order an item with name say X and vendor supplies the item with different name say Y. So I am maintaining vendor specific name in vendor material number. Now I want to see the stock X with what quantity of it is Y.
    Thanks

    Dear Praveen
    You could use the following;
    Input and Output Conversion of Material Numbers  
    Use
    Like every other part in the SAP system, an inventory-managed manufacturer part has an SAP-specific material number that uniquely identifies it. If this material number is uncommon or unknown to the vendor, you should consider the following (especially in the purchasing process):
    ·        You can enter a part with its Manufacturer Part Number (MPN) and its External Manufacturer, and not just with its material number. This is possible because of the input conversion of material numbers.
    ·        The system displays this part with its Manufacturer Part Number and the External Manufacturer in lists and screens. This is possible because of the output conversion of material numbers.
    You have to increase the maximum field length for input and output values in the Output Length for Material Numbers field to enter and display the MPN and the manufacturer code in one field
    Prerequisites
    You have made the following settings in Customizing:
    ·        You have activated the conversion exit for material numbers.
    ·        You have maintained a delimiter. The delimiter separates the MPN and the external manufacturer when they are entered or displayed in one field.
    ·        You have specified a maximum output length for material numbers. This means that the fields for the long material number are scrollable, and the output columns for lists are wider.
    You configure and activate the conversion exit for material numbers in Customizing by choosing Logistics - General ® Interchangeability of Parts ® Set Up Conversion Exit for Material Numbers.
    Features
    Input Conversion
    If you have activated the conversion exit, you can enter the relevant MPN instead of the material number in the relevant input fields.
    If the MPN is not unique, you enter the external manufacturer in the same field, separating the MPN and the external manufacturer by the delimiter defined in Customizing.
    You have defined: as the delimiter.
    Enter 45L700W:36121 (Manufacturer Part Number, Delimiter,and External Manufacturer) for the part, instead of material number 1011. If the MPN is unique, you only have to enter 45L700W (the Manufacturer Part Number).
    You can now scroll the input field for the material number. This allows you to enter the maximum output length for material numbers, which has also been defined in Customizing.
    Input conversion gives you an alternate and additional input option. You can still enter the ERP material number to identify a part.
    The system determines the correct material number from your input, and passes it to the program logic. The system handles your input as follows:
    ·        If your entry contains the delimiter, the system splits the entry at the delimiter, interprets both parts of the entry as the Manufacturer Part Number and the External Manufacturer respectively, and searches for a part corresponding to these entries
    ·        If your entry does not contain a delimiter, the system interprets your entry as an (ERP) material number, and searches for the corresponding part in the material master. If this is unsuccessful, the system interprets your entry as an MPN, and searches for the corresponding part.
    If the system cannot determine a part clearly, or the search is unsuccessful, it issues an error message.
    Value Range for MPN on the Selection Screen
    The system converts the MPN into a material number internally.
    To ensure that the system correctly interprets the value range for an MPN that is entered as selection criteria, when the conversion exit is activated, the system provides both the material number and the MPN as selection criteria in the selection screen.
    Output Conversion
    If the conversion exit is activated, the output conversion ensures that the system displays the MPN and the external manufacturer on screens and in lists, separated by the delimiter in the field or column that usually displays the ERP material number.
    If the Output Length for Material Numbers field in Customizing is not long enough to display both the MPN and the external manufacturer, the system displays the MPN, if it is unique.
    If the MPN is not unique or the output length too short, the system displays the ERP material number.
    The system displays parts with the output length defined in Customizing. In addition:
    ·        You can scroll the output field for the material number on screens.
    ·        The system adjusts the layout of lists to the output length.
    List Formatting
    If you use the inventory-managed MPN, you have to change the list formatting as follows:
    ·        Variable length of the material number in reports
    In cases of the automatic conversion of the material number into an MPN and external manufacturer, the system takes account of the Output Length for Material Numbers field (defined in Customizing) when it structures the lists for selected reports. This ensures that columns are aligned, line breaks are correct, and the lists can be read.
    ·        Adding a field for the external manufacturer
    The external manufacturer should also be displayed in lists because the MPN, into which the material number is automatically converted, is not always unique.
    In Customizing, you have defined whether the external manufacturer should be displayed with the MPN. The system adds the field for the external manufacturer immediately after the field for the MPN in lists and on the screen.
    You can display the external manufacturer with or without an active conversion exit.
    ·        Sorting by MPN, not by material number
    You can sort some lists by material number.
    You can sort by MPN in cases where the MPN is displayed instead of the material number.
    with kind regards
    Sundar

  • I have lost all text messages from one number, is there a way I can retrieve.  I have an iphone4

    I have lost all of my text messages from one number, is there a way to retrieve?

    Possibly.  See the Manually Migrating section of  Switch 101: Migrate your Windows files or system to your Mac.
    The files already transferred are in a new user account created by Migration Asisstant.  Log off;  when you go to log back on, you should be prompted to enter a password for the new account.  Then you should be able to manually move whatever didn't get copied.

  • Getting Batch from Packaging material Number (Batch characteristics)

    Hi Gurus,
    I've a requirement.
    i want to know the batches where the packaging material is used.
    Packaging material is one of the batch characteristics, if i assign the same packaging material number in one batch, that should not be assigned to another batch.
    I want to know in which batches the same packaging material is assigned.
    Please guide me?? which table has the links for batch, packaging material number and main material number???
    How can i find this???
    Thanks in advance.
    Adi.

    we can use the MMCL transaction/BMBC to see this.
    In MMCL we have a FM to get the Data.

  • Upload additional data into existing material number.

    Hi Experts,
    I want to upload an additional info about Material (valuation category and valuation type), where the material ids are already exists.
    There are 87 data which i have to upload to their corresponding material numbers from notepad.
    So please suggest what should i follow to upload BDC or LSMW and also suggest how to do ...
    Thanks,
    Deepanshu Mathur
    Moderator message: please do more research before asking, show what you have done yourself when asking.
    Edited by: Thomas Zloch on Jun 24, 2011 10:07 AM

    Hi,
    MANDT is always added as one of the fields to make the table client specific and it has to be a primary key.
    As rest of your fields are non-primary key fields, your table will have duplicate records for all the fields. You shall not get any error even if you enter duplicate entries.
    As a general practice, it is always good to have at least one primary key on a a table apart from MANDT. This ensures faster data access and provides uniqueness for each record.
    Also, if your table does not have at least one primary key apart from MANDT, you shall not be able to maintain the table via SM30 even if you create a Table Maintanence.
    Regards,
    Danish.

  • How to change internal number range into external number range

    Hi All,
    There is a number range in the system which was assigned internally by mistake earlier. Now, I want to change the internally assigned number range to external number range.
    Can anyone please let me know, the procedure to change used number range from internal number range to external number range and from external number range to internal number range.
    Quick reply will be appreciated & points will be assigned.
    Thanks & Regards,

    hi Mehak,
    you can try to simply change the range from ext to int (and vica versa). If that does not wrok, than you can delete the range and recreate it with proper settings. But you have to take into account that if you have a range as external from 1 to 10 and for example numbers 2 and 5 are taken already than you recreate the range 1..10 as internal, than you could have some problems. Probably best is in this case to recreate with other interval.
    hope this helps
    ec

Maybe you are looking for

  • Help required: Splitting up complex script logic via *LOGIC_BY

    Hello experts, I have a very long and complex logic which I am trying to split up into different sections. I am using *LOGIC_BY within the default logic whereas the ACCOUNT dimension is my trigger. Hence I have created a new property called "LOGIC" f

  • Why is the headphones output jack so loud?

    The output from the headphone jack on the left of my MacBook Pro 15" (base model, latest as of 16/07/11) is incredibly loud. Even when my Mac has the volume on one 'bar' or 'block' when using the volume buttons, it's still extremely loud and almost d

  • How can I formate my boot camp in NTFS ?

    I wanted to install Windows 7 on my Bootcamp Hard Disk....but the Windows System have to be installed on a NTFS Hard Disk, and my BootCamp in on a FAT....What can i do to change my Boot Camp HardDisks configuration ? Please, I'm french, so if you cou

  • Long Running Utility

    What is the best way to analye a long running utility to see what changes I shuild make to improve efficiency?

  • Si blocca

    su internet explorer, windows vista business ho qual che problema per che quando vado a condividere la web cam mi fa sempre impostazione adobe e se blocca e non mi per mete di consentire ho di negare e recordare se blocca semprela dopo la aggiornamen