Slow seller analysis for generic / variant articles

Hi all,
We are having issues getting slow seller analysis to work for generic variant articles.
We have created a generic with variants of a certain colour and size.  We have attached a markdown profile to one of the variants and transferred this to BI (the profile in BI is assigned to the generic at for a specific colour and size).  We have then loaded sales and goods receipt data for the variant article into the relevant cube in BI.
When we execute the slow seller query directly in BI (trans RSRT1) it is correctly retrieving the sales and GR data at the generic / size / colour level, however when we execute the slow seller analysis using transaction /n/MAP/SSM2 we get no markdown proposals generate the the log returns a message that no data could be found.
We have implementation the best practice building block however can't identify why no data is found for our selection criteria.
Does anyone have any documentation (apart from the best practices documentation) on how this needs to be set up?
Many thanks,
Steve

The problem is also described and answered within OSS Note Nr. 0000561477 for Year: 2009. Name: Slow seller analysis not picking up variant articles
Bottom line of this problem is:
I analyzed the data in cube  
0RMP_MC21. The movement data of seasonal merchandise (generic articles)
is expected to be stored in this cube on the level generic/color/size.
This is controlled via MAP foundation. In this case, the slow seller  
report can evaluate the data and propose markdowns. Unfortunately, the
data in your cube 0RMP_MC21 is stored on variant level (material      
number). You can verify this by running the query 0RMP_MC21/          
0RMP_MC21_Q0020. In contrast to the screenshot you provided as an     
attachment, this query doesn't give you values for article 400018 on  
the level color/size, but only for the variants. Therfore, the slow   
seller report won't find the data.                                    
If you ensure the update of the cube according to the MAP foundation  
(0material is filled with generic article), then the slow seller      
analysis will pick up the variants as expected. 
Post is answered!
Regards,
Markus
Edited by: Markus Semar on Jun 18, 2009 6:00 PM
Edited by: Markus Semar on Jun 18, 2009 6:03 PM

Similar Messages

  • Stock aging + Slow Seller Management

    Hi,
    could anyone give me a tip on how to reproduce Stock Aging ( inside Merchandise & Assortment Planning  ) in order to combine it with Slow Seller Management?
    Thanks in advance
    Fabricio Granja

    Hi Fabrizio,
    What are you trying to achieve with this?
    Reason I ask is that the slow seller analysis transaction in slow seller management checks the sell-throughs of the relevant articles and, based on planed vs. actual sell-through, proposed markdowns (ie. I don't think you need to worry about getting stock aging details into slow seller management - the process is self-contained).
    Thanks,
    Steve

  • BAPI to Create Generic/Variants

    Hi All,
    Is there anyone who worked with BAPI_MATERIAL_MAINTAINDATA_RT to create Generic & Variants Articles?
    We are not able to use this BAPI. Pls Share the same.
    Thanks,
    AK

    Hello,
    Yes it is possible to create variants using the bapi you mention BAPI_MATERIAL_MAINTAINDATA_RT .
    Ensure that in the  VARIANTSKEYS fields the name of the variant is populated which could be the cause of your issue.
    Regards
    Olivia

  • 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

  • Generic and Variant Article in IDOC for EDI810

    Friends,
    i have an issue with processing the EDI810 with both generic and variant articles in the IDOC.
    i am testing the Idoc, but it fails. when i delete the generic article from the EDi810 and process the IDoc, the invoice is getting posted.
    is it that the vendor has to send otr EDI team has to suppress the generic articles and send only Variant areticle to SAP?
    how does it work
    Please help
    Regards

    In MM43 under Basic Data (uppermost portion), if you input a generic article, only the article will be displayed. but if you input a variant article, its generic article will be displayed on top of it...
    Its field name is RMMW1-VARNR. The generic article is RMMW1-MATNR.
    Message was edited by: Winnie Chan

  • 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

  • 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

  • Create Pricing Profile for Generic Articles

    Hi
    How to create pricing profile for generic articles, this need to be assign in article master basic data view.
    also is it possible to give price for generic article using sales price calculation (VKP1 and VKP5)
    regards
    satish

    satish c wrote:>
    > Hi
    >
    > How to create pricing profile for generic articles, this need to be assign in article master basic data view.
    Pricing Profile can not be created, It is default in SAP...this can be assigned in Basic view of Article master data
    This profile is useful for fixing price for variant article...three way you can define variant price
    If you select
                    0. Variants will have different price
         1. Variants can maintain different price
         2. Variants have same price as Generic material
    > also is it possible to give price for generic article using sales price calculation (VKP1 and VKP5)
    It is same like single article...you can maintain price in VKP1, VKP5
    Regards
    Vijai Jain

  • 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

  • In Analysis for Excel, is there a way to see another user's variants?

    As an admin, I want to change them from User variants to Global, without giving them access to create Global variants.
    Analysis for Excel version 1.3.6.2342, BI 4.0.

    Are you using this will an LMS?  Captivate does this by default for me using SUM TOTAL, and SCORM reporting.  I know that threre are options both in captivate and the LMS to not capture resume data, but barring setting those it happens automatically with Scorm 1.2

  • Generic and variant article

    Hi,
    What table and in which field could i get the generic/parent article of a variant article?
    Thanks.

    In MM43 under Basic Data (uppermost portion), if you input a generic article, only the article will be displayed. but if you input a variant article, its generic article will be displayed on top of it...
    Its field name is RMMW1-VARNR. The generic article is RMMW1-MATNR.
    Message was edited by: Winnie Chan

  • Free goods determination in variant article

    Hi ALL!!!!
    The issue is regarding IS-Retail. In case of order processing with variant article free goods is not getting active. The item category of the parent article is TAG and for the variants is TAN. When I am maintaining freegoods for the variant then also its not getting picked up nor when I am maintaining free goods for the parent article.
    Please suggest
    regards

    Hi
    1) In IS-Retail Variant article as called Generic Articles (retail terminalogy).
    2) Come to freegoods, In retail you can use promotion concept to maintain the freegoods determination for generic artilces and it should test with POS system.
    regards
    satish

  • BW- CRM MSA: Job is cancelled when Generic variant is used

    Hi Gurus,
    We are trying to download BW Reports on Mobile Sales App. The implementation is working perfect when we create variants in BW and then fetch data in CRM.
    But now we want to restrict data according to territory of the Mobile User. This is to be done with the help of "By Terr. ID" subscription, but when we use a generic variant and request data, the job is cancelled in BW system saying "Logon for BW user failed when starting a step."
    Pls help as it very very very very very very urgent!!!

    Sim, segue o dump.
    Runtime Errors         MESSAGE_TYPE_X
    Date and Time          07.02.2011 09:20:01
    Error analysis
        Short text of error message:
        Process PSAPROCESS, variant ZBRPCHAIN_LEVEL1_2LIS_11_VASTI is not schedu
        led waiting for event RSPROCESS D6OVUGNYV55HIR2Y3JEML7XT6
        Long text of error message:
         Diagnosis
             Process PSAPROCESS (variant ZBRPCHAIN_LEVEL1_2LIS_11_VASTI) needs
             to be started. According to the process chain maintenance, it needs
             to be scheduled while waiting for event
             ZBRPCHAIN_LEVEL1_2LIS_11_VASTI D6OVUGNYV55HIR2Y3JEML7XT6. However,
             this is not the case.
         System Response
             The chain is cancelled.
         Procedure
             In order to complete the chain run, follow these steps:
             1.  Ensure that Start Using Metachain or API is selected in the
                 variant maintenance for the start process. By doing so, you
                 ensure that the chain is not restarted.
             2.  Schedule the process chain.
             3.  In the log view for the process chain maintenance, choose View
                 -> Merge Active Version, and end the incorrect process using
                 the respective context menu entry.
         Procedure for System Administration
        Technical information about the message:
        Message class....... "RSPC"
        Number.............. 006
        Variable 1.......... "PSAPROCESS"
        Variable 2.......... "ZBRPCHAIN_LEVEL1_2LIS_11_VASTI"
        Variable 3.......... "RSPROCESS"
        Variable 4.......... "D6OVUGNYV55HIR2Y3JEML7XT6"

  • How to change the description of variant article

    Hi All,
    I need to append some value( size or country) to the variant article description.
    suppose if the generic article no is 123456 (football shoe)then the variant article numbers will be
    123456001 , 123456002 etc...which is done by default by SAP. and the description also is taken from geenric article football shoe, same like generic article, this we need to change.
    now the description of the variant article also will be taken from Generic article.
    but here the description is to be chagned(appened) with some value.
    ex. football shoe IN 9 (indicating the India and size 9)...
    iam looking at some enhancement MGW00002 and user exit:EXIT_SAPLMGNK_003, but this is useful only to change the variant article number not description.
    Any hints will be great help.

    Hi,
       I know I am a little to late to the party! But for all those who are going to search for this in the future there is a very good blog...i am posting the link below...
    Basically run the program RDDIT076...
    http://scn.sap.com/community/abap/blog/2015/03/12/program-to-change-transport-request-description-after-release
    Regards,
    Divaker

  • S_ALR_87012168 - Due Date Analysis for Open Items - Add Characteristics?

    Hello,
    I am trying to add a characteristic to the output of this report. I am trying to add the Reference field from BKPF to the list of available characteristics to choose from. It is available in the dynamic selections list so the field should be available in the program, I am just not sure how to get it onto the char. list.
    S_ALR_87012168 - Due Date Analysis for Open Items - SAP delivered Report Painter report.
    Any help would be greatly appreciated!

    Try:
    Go to -> Line items
    You can change the display variant there to include the reference.
    Rob

Maybe you are looking for

  • Why is mouton lions wifi so slow

    Why is mouton lions wifi so slow

  • Selection Screen Data Validation

    Hi All. I have made a program with vendor and purchase order inputs. If I give the correct vendor and PO it works fine. I want to implement validation. For that I have an internal table with vendor and all the PO's raised on him. Now I have to valida

  • Extract data from SAP using SAP NCO 3.0?

    Hi, Now that the new SAP NCO 3.0 connector is out and can be installed on 64bit servers we were wondering if it could be used to perform data extractions from SAP. So does anyone have any experience of hooking up SAP NCO 3.0 to a SAP system (backend

  • Effects Scroll motion

    Hi all; I am missing the Scroll Motion tab under the Effecrs button. I have installed Muse CC, no upgrades available, so its not that. Any ideas? Thanks Maarten

  • PDFMaker plug ins

    Hello I was studing the possibility of developing plugins for PDF Maker, according to what I learned Acrobat SDK can only be used to develop plugins for Adobe and Adobe Reader, is this correct ?. I can I develop a plugin for PDF Maker ? Must I use th