IS-Retail -Problem in Conversion of Generic Articles

Despite mapping correctly all the segments in I-Doc creation and also in using the appropriate BAPI for conversion of generic article creation using t-code MM41, we get the message "The Generic Article could not be created as a class". After refinement with accurate data in all the relevant segments, we still get the message "No value assignment transferred for the variant creating characteristic". Could someone please throw light on where we may be going wrong or give us a new direction to resolve this issue? We have to convert about 10,000 generic articles in the first run for the current Project.

Hi
Has anyone found a solution to this problem?  I am experiencing the same error on ERP6:
''No value assignment transferred for the variant-creating characteristic''  for idoc basic type ARTMAS03.
Thanks
Kind Regards
Nazira

Similar Messages

  • Analysis Report for generic articles based on different characteristics

    Dear all ,
    We are running SAP Retail solution ,and we use generic articles for the management of cloth and shoes articles.
    So far ,we didn't find any standard t-code in sap GUI for the slaes analysis of generic articles base on their characteristics ,for example ,we use color and size to form the characteristic profile and assign it to some generic articles ,after a period of sales ,we want to analysis which size is more  favarable as to the same color or to the contrary.
    Except for BW , Is there some info-structure or t-code in GUI for this analysis ?

    Hai deyi chen,
    If you know the table were data stored.
    Create your own report formats using SQVI
    T CODE SQVI
    Table Join
    Add Tables and system will show the join automatic in case if u know u can also change.
    Now You select which fields to be in the selection screen and select fields to be listed inside the report.
    Regards,
    Mani

  • SAP IS Retail: Transferring Generic article from one SAP system to another

    Hi,
    I want to transfer generic article from one SAP IS Retail system to another SAP IS Retail system using ARTMAS idoc using BD10 in sending system. But I could not get article in receiving system in BD11. ARTMAS is not available in BD11.
    How can I process this ARTMAS idoc in receiving system?
    Thanks and Regards
    Richard

    How about using RFC with BAPI to pass the info out?
    It's easier this way.

  • System is not allowing GR through MIGO for generic article in SAP Is-Retail

    Hi,
    I am trying to do a GR into DC through MIGO for a generic article and its variants but system is not allowing it saying " The generic article is not maintained in DC". System by design doesn't allow to maintain generic article for specific site but it does for reference site. It did not say anything at the time of PO creation but throwing error during GR. Looking for help!
    Thanks in advance!
    Subhankar

    awaiting response.

  • Merchandise Category creation for Generic Article in SAP IS-Retail

    Hi,
    Can anyone help me out to with clear and complete process and settings i have to maintain for merchandise category for generic article for shoes of our client. I created merchandise category with the below transaction codes
    ct04,clwe,clwe,clw1 and wg21 but when i used to create generic article i have to find characteristics in variants tab in basic data view in mm41 but i didn't find it.
    HELP ME with SCREENSHOTS which will HELP ME in FUTURE of our CLIENT
    Thanks & Regards
    Gopi Krishna
    Mobile:+91 9741042296

    Hi Manish,
    Thank you for your reply which is the procedure for relevance of variants in creation of generic article.My concern is to know complete merchandise category creation with screenshots which i can create by own merchandise category.
    Thanks & Regards
    Gopi Krishna Potteti

  • Free Goods Promotion for Generic Article

    Hi
    In IS-Retail can we create free good prmotion for generic article & it will automatically be applicable for varients of that generic article. or we need to create on individual varient free good condition record
    Pl advise
    Regards
    Sandip

    Hi selva
    1)Check in Change Promotion T.code - WAK2
    in the item level   Promotion announcement category(Ann column) - set indicator as F     Promotion announcement
    2)Check sales periods dates - Sales order from to TO it should be valid date
    if not works, reply me i will give some more solutions
    regards
    Satish

  • BAPI_MATERIAL_MAINTAINDATA_RT update gross weight for generic article

    Hi, I want to update the gross weight (MARM-BRGEW) for a generic article and it's variants. Sometimes, the new gross weight is not propagate to all the article related variants when I'm using BAPI BAPI_MATERIAL_MAINTAINDATA_RT ??
    In the structure headdata, I just pass the article number and flag the basic_view. I used 2 internal table for the unit of measures (bapie1marmrt, bapie1marmrtx).
    Example of my source code:
      st_headdata-material   = st_marm-matnr.
      st_headdata-matl_cat   = st_marm-attyp. (01 for generic)
      st_headdata-ref_matl   = st_marm-matnr.
      st_headdata-basic_view = 'X'.
      st_bapimarm-material   = st_marm-matnr.
      st_bapimarm-alt_unit   = st_marm-meinh.
      st_bapimarm-numerator  = st_marm-umrez.
      st_bapimarm-denominatr = st_marm-umren.
      st_bapimarm-gross_wt   = pa_brgew.
      st_bapimarm-unit_of_wt = st_marm-gewei.
      st_bapimarmx-material   = st_marm-matnr.
      st_bapimarmx-alt_unit   = st_marm-meinh.
      st_bapimarmx-numerator  = 'X'.
      st_bapimarmx-denominatr = 'X'.
      st_bapimarmx-gross_wt   = 'X'.
      st_bapimarmx-unit_of_wt = 'X'.
      APPEND: st_bapimarm   TO tp_bapimarm,
              st_bapimarmx  TO tp_bapimarmx.
      CALL FUNCTION 'BAPI_MATERIAL_MAINTAINDATA_RT'
        EXPORTING
          headdata        = st_headdata
        IMPORTING
          return          = st_return
        TABLES
          unitsofmeasure  = tp_bapimarm
          unitsofmeasurex = tp_bapimarmx.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    Let's say my article has 3 unit of mesasure which are EA, PAK, CAR. The base unit of measure of the articles (generic + variants) are EA.
    MARM example BEFORE calling the bapi
    MATNR           MEINH   UMREZ   UMREN  BRGEW
    A011125             KAR     48     1      33
    A011125A10090     KAR     48     1      33
    A011125A10091     KAR     48     1      33
    A011125A10092     KAR     48     1      33
    A011125A10093     KAR     48     1      33
    A011125B10590     KAR     48     1      33
    A011125B10591     KAR     48     1      33
    A011125B10592     KAR     48     1      33
    A011125B10593     KAR     48     1      33
    A011125W10090     KAR     48     1      33
    A011125W10091     KAR     48     1      33
    A011125W10092     KAR     48     1      33
    A011125W10093     KAR     48     1      33
    MARM after calling the BAPI with a new BRGEW of 34
    MATNR           MEINH   UMREZ   UMREN  BRGEW
    A011125             KAR     48     1      34
    A011125A10090     KAR     48     1      34
    A011125A10091     KAR     48     1      34
    A011125A10092     KAR     48     1      34
    A011125A10093     KAR     48     1      33
    A011125B10590     KAR     48     1      34
    A011125B10591     KAR     48     1      33
    A011125B10592     KAR     48     1      33
    A011125B10593     KAR     48     1      34
    A011125W10090     KAR     48     1      34
    A011125W10091     KAR     48     1      33
    A011125W10092     KAR     48     1      34
    A011125W10093     KAR     48     1      34
    I don't think that a locking problem....

    Please open a customer message with the detail data, so I will have a look at your system.
    But I remember that there should be a note for that
    Regards
    B

  • How to create the new varients for existing generic article.

    Hi all,
          Can any body tell how can i create new varients for existing generic article
        T-Code - MM41 ( IS-Retail).
       Plz help, helpful answers will be rewarded.
    Regards,
    Sai

    Hi
    If you have access to the program of the tcode, then go to that tcode click on system->status, to get the program name, go to se38 give that program name and select variants radiobutton, create the variant.
    Regards
    Haritha.

  • Generic Article purchase pricing issue

    Hi Gurus,
    For SAP Retail, when I create PO with generic articles, the pricing for generic article is always at variants level. Is it possible to change it to generic article level? or when I change the price of generic article, it can automatically apply to all its variants?
    For my business scenario, there will be no difference for price between variants of one generic article. So we want to adjust price on generic article level. Otherwise I need to adjust price for each variant. It is time-consuming and cannot garantee updating same price for each variant.
    Thanks,
    Donald

    Hello,
    You should be able to make use of Pricing Reference Article field (MARA-PMATA)  for this. You may maintain condition records for Generic articles and maintain Generic articles as the Pricing Reference Articles for the variants.
    This is just a suggestion. I have not tested it to see whether it works.
    Thanks,
    Venu

  • Rack jobber module with generic article

    Dear gurus,
    I would like to check with you regarding generic article listing with rack jobber assortment module. I have a client implementing rack jobber assortment module, so they created rack jobber assortment module via WSO1 and assign this assortment module to an assortment via WSO5.
    They assign only the generic article to the assortment module instead of assigning all the variants. Everything is working fine at the first time, problems come when they would like to create a new variant of the generic article, the new variant is not automatically listed to the rack jobber module.
    I tried to execute the listing via MM42 listing tab, but it will generate incorrect WLK1 entries as the rack jobber / vendor is missing in WLK1.
    Have you ever had any experience about this and how is the correct step to list the new variant to the rack jobber module.
    Thank you for your help.

    Rack Jobber module is managed like consignment, this means articles which are part of a rack jobber module are listed, can be downloaded to the POS (that you have EAN, sales price, etc. ot the POS) but they are not used for replenishment (taken out of a MRP run) due to vendor replenishment. The evndor is responsible for replenishment. (maybe due to weekly visual inspection at the shelf)

  • Delivery completed indicator is not tick on generic article

    Hello Expert,
    I create a normal purchase order with  generic article and variants.
    Then, I do goods receipt with full quantity.
    Delivery completed indicator is automatic set 'X' on variant items.
    But with generic article, Delivery completed indicator is not set 'X'.
    Do I miss any configuration ?
    Please help me !
    Regards,
    Minh

    Hi Minh,
    as far as I know, this is a normal system behaviour and not an error or missing configuration.
    The generic article in the goods receipt has a statistical character. No goods receipt can take place for the generic article. The goods receipt only takes place for the variants of the generic article and so the delivery completed indicator only gets set for the variants and not for the generic article.
    Hope it helps.
    Regards
    Tobias

  • Problem with conversion of strings like THISStr - this_str capitalization

    Problem with conversion of strings like. THISStr -> this_str
    Can anybody pass on the reverse code. I have one, but its faulty.
    public static String convertFromPolycaps(String str) {
              Pattern pattern = Pattern.compile("\\p{Upper}+");
              Matcher matcher = pattern.matcher(str);
              StringBuffer result = new StringBuffer();
              // We do manual replacement so we can change case
              boolean notFirst = false;
              int grpP = 0, grpA = 0;
              String last = "";
              String now = "";
              while (matcher.find()) {
                   grpA = matcher.end();
                   if (notFirst) {
                        now = matcher.group().substring(0).toLowerCase();
                        if (grpA - grpP > 1) {
                             matcher.appendReplacement(result, now);
                             result =
                                  new StringBuffer(
                                       result.substring(0, (result.length() - 1))
                                            + "_"
                                            + result.substring(result.length() - 1));
                        } else {
                             matcher.appendReplacement(result, "_" + now);
                   } else {
                        matcher.appendReplacement(result, matcher.group().substring(0).toLowerCase());
                        notFirst = true;
                   grpP = matcher.end();
                   ////index++;
                   last = now;
              matcher.appendTail(result);
              System.err.println(str + " : " + result.toString());
              return result.toString();
         }succesfully converts :
    AccountNmnc : account_nmnc
    CustNameJ : cust_name_j
    Resume : resume
    BeneBrCode : bene_br_code
    ApprovedPerson : approved_person
    but fails for:
    GLCode : glcode
    VISHALErrCode : vishalerr_code
    GHASUNNAcNo : ghasunnac_no

    Can anybody pass on the reverse code. I have one, but
    its faulty.Post it, I'm sure we can fix it...

  • Skype - Problem with conversations (group)

    Hello i have problem :
    I call to friend - work
    i call to friend and add 2 friend = It does not work
    why?
    I add 2 friend to conversation and 1 friend add 2 friend no (After addition of 2 people can not write in a conversation (connection problem))
    Leave Conversations = It does not work
    Everything related to the conversation group does not work
    i : 10xReinstall skype, install IE 11, Clean Regedit, use Ccleaner, Update drivers, use ADWCleaner, update version, uninstall anti-virus, Disable Firewall, disable firewall system, router. download latest skype versions, update windows, update drivers.
    Skype Version bugged : 7.0.102
    Available commands:
    /me [text]
    /topic [text]
    /add [skypename+]
    /alertson [text]
    /alertsoff
    /leave
    /setrole [skypename] MASTER|USER
    /kick [skypename]
    /get blob
    /get uri
    /get options
    /set options [[+|-]flag] ..
    /golive [token]
    /invite [skypename]
    /showmembers
    /help
    For more help please see http://www.skype.com/go/help.chathelp
    [10:50:29] System: MSNP: Connection Data (MSNP24):
    * Status: NetStateConnected
    * Server Current: BAYMSG1020424.gateway.messenger.live.com
    * Server Saved: s.gateway.messenger.live.com
    * Login: (UIC)
    * Skypename: [Removed for privacy]
    * EPID: 800da14d-01bf-f1d1-d0e6-2b670390ef97
    * ClientVersion: 0/7.0.80.102//
    * OSVersion: Windows 6.1 Service
    * B: 0 IF: 0
    * Time: TZ: UTC+1, Server: 1422093024, Local: 1422093029
    * Recent connect: BAYMSG1020424.gateway.messenger.live.com @ 2015-01-24T09:03:12Z
    * Recent connect: BAYMSG1020424.gateway.messenger.live.com @ 2015-01-24T08:41:41Z
    * Recent connect: BAYMSG1020424.gateway.messenger.live.com @ 2015-01-24T08:19:35Z
    * Recent connect: BAYMSG1020424.gateway.messenger.live.com @ 2015-01-23T12:46:14Z
    * Recent connect: BAYMSG1020424.gateway.messenger.live.com @ 2015-01-22T19:46:56Z
    * Push: None (Unregistered)
    [10:50:40] System: name=#[Removed for privacy]/$*T;65570

    So here is how I got it fixed for my Mac OS X 10.9.5 and skype 6.19. I think Windows folks can follow a similar approach. 
    option 1 - Contact a live support agent via this link -
    https://support.skype.com/en/faq/FA10656/what-is-live-chat-support and have him/her remote login to your machine and fix it. 
    option 2 - Do-it-yourself 
    1) Try installing skype ver 6.15 (you need to find the executable over the internet or from skype-support) .. the usual steps to uninstall your current version and re-install the new version. 
    After installing ver 6.15, make sure in Skype -> Preferences, you don't check the "Always keep skype up to date" option.. or else it will go and install the latest version 6.19.  
    2) If it still doesn't work, 
    (i) Go to Finder window -> select 'Go' tab on top -> select 'Go to Folder' -> type '~/Library/Application Support/Skype/' 
    there you will find a file called "shared.xml". DELETE IT.
    (ii) Go to Finder window -> select 'Go' tab on top -> select 'Go to Folder' -> type '/private/var/db'. There may be a file called "config.xml" or something similar. DELETE IT.   
    3) Even then it doesnt work, go back to Option 1 (contacting skype-support)

  • I cant export my pdf to excel - Problem with conversion

    I cant export my pdf to excel - Problem with conversion
    Somebody is having this problem?

    Hi,
    May i know what is the challenge you are facing?
    Check with another file.
    You can try with different browser as well.
    Regards,
    Florence

  • Translation problem , While conversion from English to Poland

    Hello Gurus
    Pl suggest  Translation problem , While conversion from English to Poland  getting message
    "Code page not found for Poland "
    Code page 1401 exits in system
    SAP version 4.6C
    Best regards
    Krish

    Dear Vamsi,
    Please check the below lonk may be it heps.
    Translation to different languages. How??????
    Regards
    Pranay

Maybe you are looking for

  • Questions on cache and general RSRT settings for plancube

    Hi, we would like to: 1) set request status 1 in RSRT for our planqueries, in order to automatically refresh the query after executing a planfunction (problem we have now is that the results of a planfunction are not automatically updated in the quer

  • LaserJet Pro MFP M176n ePrint is not working

    I have problem with my printer. I cannot connect it to the ePrint service. The ePrint functions is turning on and off without my knowlegde. After enabling ePrint in web interface of the printer, printer does not printing information sheet. When I ent

  • Bootcamp - the disk cannot be partition because some files cannot be moved

    Hi, I have been using boot camp for a while and everything was working fine but over time, windows were picking up some virus so I did a stupid thing of removing the whole partition thinking that I can re-partition again and install a clean windows s

  • Can you share books with friends

    can you share books with friends like on kindle?

  • Oracle licensing in Solaris zones

    Hi all, I've read a few documents about Oracle licensing : http://www.sun.com/third-party/global/oracle/consolidation/Containers_Oracle_041305.pdf http://www.oracle.com/corporate/pricing/partitioning.pdf However, there's one thing not clear to me. In