Creation of FG material based on country & language

Dear,
My client wants FG materials to be created w.r.t Country & Language, b'coz one material is sold in different countries with different languages. Can it be possible. If possible hw to do in SAP. Please advice how to map this issue.
Thanks & regards,
Ramesh Guthula

different languages are not a problem, you can maintain the material description and the long texts of a material master in all available languages.
But if you sell this material in different countries  in the same language but with with different names, then you may not succeed with material master maintenance.
The material master is not country specific, certainly not ship-to country specific. Via the plant setup it is country specific for the ship from country.

Similar Messages

  • Sales order item level deliveryblock based on the material's destin country

    Hi Experts
    I have a requirement to set delivery block to an order at the item level based on of country of destination and material.
    -Requirement is to block automatically order line when a material is not authorized (Regulatory affair) to be shipped to the country.
    -We need to allow only authorized person to have ability to remove the block-How can this be set up?
    - Delivery block like these are usually set up for sales org & material (and not country level), the issue here is different countries in same sales org.
    Awaiting for earliest comments
    Thanks
    Banu

    Hi,
    In standard SAP you can not have delivery block at the item level based on the country of destination. Because contry of destination comes from Ship to party master data and material master is not based on the country.
    You need to have development or Exit and Z table. You need to maintain the list of materials allowed to various countries in the Ztable. Exit/development needs to check the table at the time of saving the sales order, 'If there is no table entry, delevery block needs to be maintained on the particular item shipping tab.
    Further you can discuss with your technical consultant about the logic and the possibilities.
    Regards,
    Ravi Duggirala

  • Need FM to read classification deatils of a material based on classtype

    Hi All,
    i need FM to read classification deatils of a material based on classtype.
    ex: in mm02 if u enter any material number and enter, we ll see the material and below that class type (description as material class).Based on this class type i need fetch the classification data of a perticular material.
    kindly let me knoa ASAP.
    Thaks
    Sri

    Hello,
    Use the BAPI:
        CALL FUNCTION 'BAPI_OBJCL_GETCLASSES'
             EXPORTING
                  OBJECTKEY_IMP   = L_OBJECT " Material Number
                  OBJECTTABLE_IMP = L_OBJECTTABLE " MARA
                  CLASSTYPE_IMP   = L_CLASSTYPE
                  READ_VALUATIONS = 'X'
                  KEYDATE         = SY-DATUM
                  LANGUAGE        = SY-LANGU
             TABLES
                  ALLOCLIST       = L_ALLOC
                  ALLOCVALUESCHAR = L_VALUES_CHAR
                  ALLOCVALUESCURR = L_VALUES_CURR
                  ALLOCVALUESNUM  = L_VALUES_NUM
                  RETURN          = L_RETURN.
    Regards,
    Vasanth

  • Different material description in one language for single material

    Hi folks,
        Is it possible to maintain different material descriptions (In one language-english) for a single material.
    if it so how can u provide me steps.
    Thx in advance,
    Neelima.N

    Hi,
    For a single material code maintaining multiple text in the same language is not possible,
    this contradicts the basic principle of consistancy.
    Howevery you are free to do R&D, if sucessful please let me know.
    Regards
    Bikas

  • Display the data based on country currency

    Hello All,
        I was created one alv report in that i have display currency field based on country currency.means if if company code is india it is display 44.44 and if it is viyatnam 4444 with no decimals both will display in same report .I tried lot but i was getting please any one have solution give me reply fast.
    Thanks & Regards,
    Venkatesh

    Hi,
    While poplulating the feild catelogue internal table. Pass the currency field  in the internal table.
    then pass the paramter cfieldname for the amount field with the name if the field of internal table which contains the currency unit. and also create the seperate entry in the feild catellouge for the currecy unit as well.
    for more detalis see the REUSE_ALV_GRID function module documentation.

  • Material descriptions in chinese language is not transferred to SRM

    Hi All,
    We have an issue in transfering material description in chinese language from ECC to SRM.
    We are on SRM 5.5 and ECC 6.0
    I've set filter in R3AC1 with Table name "matk" anf field "SPRAS" to take care of language.
    This works fine for all language except chinese both for initial and delta down load.
    Any help is greatly appreciated

    Hi, 
    Which your support package? 
    Did you already seek OSS? 
    Rgs, 
    Pedro Marques

  • Material Description in Chineese language

    Dear All,
    I am trying to upload language key ZH - Chineese and material description in chineese language by bdc and Lsmw from text file. But after uploading, text is showing in some other format which is not chineese. Please give me some suggestion to overcome this problem.
    Regards,
    Mohit.

    Hallo.
    Do I need to logon in ZH language to do this?
    My system is Unicode, so I would like to connect in english (or italian) language, and after enter material description in chineese language without logon in chinese language.
    After I will nedd to enter in arabic language, so I suppose that it is equal.
    Thanks.
    Mario

  • How to create a Platinum,Gold and Silver Customer and how to set different price for a single material based on customer?

    Hi All,
    How to create a Platinum,Gold and Silver Customer and how to set different price for a single material based on customer?
    Assume Material is Pen.
    While creating Sales Order in VA01 how to bring different price for the same material for Platinum,Gold and Silver Customers.
    Kindly help me out.
    Thanks,
    Renjith Jose

    A good place to start is http://www.javaworld.com/javaworld/javatips/jw-javatip34.html
    Also, do a search in this forum on HttpURLConnection. That class allows you to use POST method to send form data to a web server.
    "Hidden" variables are only hidden in HTML. The HTTP that gets POSTed to the web server doesn't distinguish between hidden and not hidden. That is, the content you would write to the HttpURLConnection.getOutputStream() would be something like:
    hidden=1&submit=ok(Of course, the variable names would depend on what the web server was expecting from the form.)
    Also, be sure to set the Content-Type request parameter to "application/x-www-form-urlencoded"

  • Switch JSON data file based on selected language

    I would like to switch my json file that contains the data for my app based on the language selected.
    Basically that would mean changing the data uri to point to the new uri when the language is changed:
    Uri dataUri = new Uri("ms-appx:///DataModel/SampleData.json");
    I am using the below switch for this purpose:
    System.Globalization.CultureInfo ci = System.Globalization.CultureInfo.CurrentUICulture;       
    string locale = ci.ToString();       
    switch (locale)       
    case "fr":               
    { Uri dataUri = new Uri("ms-appx:///DataModel/SampleDataFrench.json");
    break;
    case "en":               
    { Uri dataUri = new Uri("ms-appx:///DataModel/SampleDataEnglish.json");
    break;
    I get the error: "The name 'dataUri'does not exist in the current context. What am I doing wrong and how to fix this?

    Using 'dataUri' variable outside switch case would raise this error. Try declaring Uri type variable outside the switch case & use it then all over.
    http://developer.nokia.com/community/wiki/Using_Crypto%2B%2B_library_with_Windows_Phone_8

  • Auto Creation of new requisitions based on a list of items

    Auto Creation of new requisitions based on a list of items
    We are starting discussions to determine how we could auto-create requisitions based on a list of servers in order to perform periodic health checks. 
    One approach we thought about was creating one service request that could spawn multiple requests, again based on a list and using a set schedule (weekly, monthly, quarterly, yearly, etc.)
    Has anyone implemented this and can provide some guidance/tips?

    You can check this article for more references on how to use sp_helptext object_name stored procedure:
    http://blog.sqlauthority.com/2007/05/25/sql-server-stored-procedure-to-display-code-text-of-stored-procedure-trigger-view-or-object/
    I also suggest trying commercial tools to sync and compare the stored procedures between two databases. We used
    ApexSQL Diff, but I've also heard some good things about
    Devart's tools.

  • Prevent creation of duplicate material master record

    Hi Experts
    1)  Is there any control or validation to prevent creation of duplicate material? I mean, if the description of new material is 100% or 95% matching with an existing material, there should be a validation.
    2) Is there any feature of usage of catelogs for creation of material master description?
    warm regards
    ramSiva

    Hi,
    Have a try to use Enhancement: MGA00001, user exit: EXIT_SAPLMGMU_001 for control you need.
    You can also use BAdI for this:
    BADI_MATERIAL_CHECK -> method CHECK.
    In both enhacements there is a structure STEXT - here short text(s) of new created material should be found for validation.
    Here you can make some ABAP works necessary.
    Hope it helps,
    regards,
    w.
    Edited by: Wojciech Zalech on May 19, 2010 9:43 AM

  • Throw error during PO creation if a material is not extended to storage loc

    Hi,
    Users require for SAP to throw an error during PO creation if a material is not extended to the storage location that is entered on the PO.
    Presently it neither gives warning or error message.
    Please advise.
    Regards,
    Pratap

    SAP does not validate that, if you want it, then you have to do such check in a user exit.
    SAP can be customized to create the material master storage location segment itself when posting the goods receipt, so it is not necessary to check this in the PO.
    Further this design  speeds up the process, you can already order before others have finished the material master maintenance.

  • Pricing of material based on batch

    hello gurus,
    i have a question,here i have scenario in which i want to differentiate the price of the material based on batches.
    pls correct me if i have made some wrong,
    now v/05 i have created a table in which i have taken batch and material as my field
    and now in v/07 i have assigned to access sequence ahd this acess sequence i have added to PR00 condition type.
    now when i go to VK11 i tried to use the acess sequence and give price i get an error.
    pls if u give me some suggestions it will be a great help to me.

    what error do you get...?
    If you are pricing with regards to batch everytime a batch is over the PR00 record will expire. so every time you have a new batch you will have to have a new record. Sound very tedious.
    Let us know when and how exactly do you wish to achieve this..
    Regards

  • PO Release Strategy - Only for non material based

    Experts,
    I have a requirement to implement a release strategy for a single plant for POs for NON material based purchases ( only for using account assignments, cost centers etc).
    The release strategy I configured is working only for the specific plant I want... However, it works whether its a material based PO or a non material based PO.
    How do i get the strategy to work for only the service based purchases, and not the material ones?

    Thanks for the replies but I'm not sure if they are applicable...
    I did create a characterstic for item categories and added the one's I wanted to have... I did NOT include a blank because i thought that would make the difference between the material based PO and non PO. When we I create Po with material (even with no account assignment) it still goes through release.
    Any reason why that is?
    I dont believe the material group solution will not work either because we require material group for material and non material based POs..
    Side note - when i try to use CEKKO with KTTNP, i get a "KTTNP does not exist error." So i used EKPO - KTTNP... hopefully thats ok, but please let me know if its not.
    Edited by: farmerj3 on Jan 30, 2012 3:36 PM
    Edited by: farmerj3 on Jan 30, 2012 3:39 PM
    Edited by: farmerj3 on Jan 30, 2012 3:48 PM

  • How to create configuration of a variant material based on funciton module

    Hello, ABAP experts,
    I want to create configuration of a variant material based on FM ( MRP3 view, set configurable material and configure the variant ).
    I use fuction modules:
        CUXM_SET_CONFIGURATION
        CUCB_CONFIGURATION_TO_DB
    and subsequently commit work.
    But the data table was not updated, that is, MRP3 view is still empty.
    Can you give me a sample, tell me how to used these FMs.
    Thanks and BR.

    When I call FM , CUXM_GET_CONFIGURATION, the SUBRC = 0, but ET_RETURN get two messages: CUXM1-001 , Overwriting existing configuration, and CUXM1-007, Configuration in target system is consistent and complete.
    Can you give me a sample ?

Maybe you are looking for

  • Transfer Interest Rate instrument

    Hi - changes in underlying contracts require us to transfer certain Interest rate instruments (Prod Category 550) to a new company code. Other than changing the end date on the old transaction and creating a new transaction on the new company code  i

  • How to change a status profile from existing in CRM 7.0?

    Hi, This is the scenario for which I need to change the existing status profile : We are using categories such as Maintenance , Approvals etc. There is a huge list of options which comes when we choose the category. We have assigned a status profile

  • Sql tuning set explain plan

    A hypothetical question came up between dbas in the office.   We regularly take tuning sets before making significant changes on the DB.  Populate from cache.  Great little way of checking to see if anything changed.  Someone asked if a table T1 was

  • Can not generate output via R/3 in extended classic scenarion

    Hi, We are running extended classic scenario, but we want to keep printing, faxing orders via R/3. When an order is replicated from SRM to R/3, the output determination is not working. The messages screen remains empty although the output conditions

  • PO Header Text Replication from SRM 4.0 to ECC 5.0

    Hi All, I am trying to replicate PO Header Text from SRM 4.0 to ECC 5.0 with Extended Classic Scenario. Process of PO Header Text Entering in SRM PO: 1. We create PO from Sourcing. 2. We go to Processing POs and then we enter under Header Data -> Doc