We haven't a model ABC classification into Further Analyses

Hello guys,
We have BW 7.0 and we want to use Data Mining. We don't have an ABC model classification in the Further Analyses although we have all models Weighted, Table Scoring, Regression analysis, Prediction with decision tree and Prediction with cluster model.
I don´t understand why we don´t have the ABC model classification.
Can anybody help me?
Thanks

I have also 'upgraded' from a 6110 Navigator to a 6210 Navigator and found the newer model to be considerably harder to use.
In particular, your point #4 about not having a warning beep when issuing a voice command while in bluetooth/car mode is my number 1 gripe as it makes my cars bluetooth and phones voice dialling completely useless.
If you have found a solution to that particular issue please let me know.

Similar Messages

  • ABC classification for material

    Hello
    Does ECC 6.0 offers any kind of standard ABC classification (allocation of materials to groups A, B, C , D, etc based on consumption , stock , turnover , etc ) for material.
    By my opinion, it should be some kind of standard programs that allows to do it.
    Thanks

    HI,
    Check trasacton code MIBC.
    Prerequisites
    Before running the analysis, you must define the valid cycle counting indicators in the Customizing system of Inventory Management and define the percentage allocation of the materials to the individual cycle counting categories.
    You can also directly change the percentage values via the indicator Change CC percentages on the initial screen of the analysis.
    To set the cycle counting indicator for a material, you need authorization to change material master records (authorization object Material Master: Plant, activity 02).
    Features
    The analysis takes into account the consumption (usage) or the requirements values of the selected materials for the desired time period. You can decide whether you want to analyze:
    Only materials that have a cycle counting indicator
    All materials; that is, including materials that have no cycle counting indicator.
    During the analysis, you can have the system automatically update the cycle counting indicator in the material master record for the selected materials
    Regards,
    Shailesh Mackwan

  • Need to transfer field KLABC (ABC Classification) between CRM and R/3

    Hello Group,
    We plan to make the R/3 field KLABC (ABC Classification) of a customer (R/3 Table KNVV, Attribute KLABC) available in SAP CRM under Customer's sales area data. It should also be maintainable in SAP CRM.
    After some analysis we found out, that this field also exists in SAP CRM (Table SMOKNVV, Attribute KLABC) but it is not replicated between CRM and R/3 (and vice versa). Also this field is not displayed in SAP GUI as well as not in the PCUI.
    Now we are analyzing the two options:
    1) Make KLABC from table SMOKNVV available in SAP CRM (and PCUI) for maintenance and extend the Middleware to enable the replication of KLABC between CRM and R/3
    2) Extend the customers sales area data in CRM (PCUI) by a new attribute „ZKLABC“ and extend the Middleware to enable replication between R/3 KLABC and the newly created ABC attribute in CRM
    We have the following questions:
    - What would be the better & easier approach ? Any recommendation or comment is highly appreciated.
    - If we choose option 2, to what extend would the SAP CRM Easy Enhancement Workbench (EEWB) support this development (Is it possible to extend the business partners sales area data with EEWB ? Does the EEWB also extend BDocs if you add new fields to Business Partner tables ?)
    Background Information:
    We have SAP CRM 4.0 SP8, R/3 4.7 and SAP Enterprise Portal 6.0
    Thanks a lot for help,
    Erik

    Hello Frédéric,
    no, I do not have the middleware enhancement guide. Do you have it electronically and could send it to me erikmueller (at) gmx.de ?
    In CRM would make the field KLABC from table SMOKNVV available in PCUI? Or would you use the Easy Enhancement Workbench to introduce a new field?
    Either way I the middleware would need to be enhanced, but I would like to understand what is easier in CRM to have the field available in PCUI.
    Thanks for the info.
    Regards,
    Erik

  • How to integrate a .abc file into swf by using mxmlc?

    Enviroment: CrossBridge1.0.1, Flex SDK 4.6
    I use g++ to compile 2 .cc files (the c2as wrapper) & a .a file (the logic)  into a .swc file; then use this .swc as a library for mxmlc to compile the main .as file.
    The Makefile is as follows:
    "$(FLASCC)/usr/bin/g++" $(BASE_CFLAGS) -O4 -L. main.cc test_as3.cc -lmytest -emit-swc=sample.mytest -o mytest.swc
    "$(FLEX)/bin/mxmlc" -static-link-runtime-shared-libraries -library-path=mytest.swc -debug=false MainView.as -o test.swf
    everything is ok.
    But when I add some function calls in .as file, it uses the CModule package:
    in MainView.as:
    import com.adobe.flascc.CModule;
    CModule.malloc
    CModule.writeBytes
    CModule.free
    the mxmlc complains that
    Access of undefined property, CModule.malloc,
    Access of undefined property, CModule.writeBytes,
    Access of undefined property, CModule.free
    Definition com.adobe.flascc:CModule could not be found.
    I found the CModule.abc in sdk/usr/lib folder, and I explored that it do have those functions. but how to import this .abc package into .swf ?
    the follow command doesn't work:
    "$(FLEX)/bin/mxmlc" -static-link-runtime-shared-libraries -library-path=mytest.swc  -import CModule.abc -debug=false MainView.as -o test.swf

    First, you should check out the new version at CrossBridge — CrossBridge
    1.0.1 is quite old.
    For your problem, you don't need to compile Cmodule.abc into your swf, it is already present into your SWC file. Here is the reason why your import is not working.
    When you compile directly to SWF with crossbridge, the compiler put all the crossbridge stuff (CModule included) into the com.adobe.flascc namespace.
    The problem is that, when you build a SWC, there is no garantee that your end application won't include multiple SWC compiled by crossbridge. To prevent namespace clashing, (having multiple Cmodule under the same namespace), all the stuff in the SWC is namespace with the namespace you gave after the -emit-swc command. In this particular case "-emit-swc=sample.mytest"  your namespace is "sample.mytest".
    So you need yo change the import from :
    import com.adobe.flascc.CModule;
    to
    import sample.mytest.CModule;
    and it should work.
    More detail in the documentation : http://crossbridge.io/docs/Reference.html#section_gcc
    Building SWCs
    A SWC is the Flash Runtime equivalent of a shared library. You can link a SWC into a pure ActionScript project either with an IDE (Flash Builder, for example), or via the command-line ActionScript compiler (named mxmlc). A SWC contains the compiled ActionScript bytecode, along with an API catalog so that Flash Builder can perform code hinting while a developer writes ActionScript that uses the API exposed by a SWC.
    When you generate a SWC you must specify an AS3 package name to contain the generated code, and the internal Crossbridge boilerplate code. This lets you link multiple Crossbridge-generated SWCs into one SWF without any function or class collisions. Anywhere you would have previously seen a name starting with com.adobe.flascc this namespace will be replaced with the string passed in the gcc/g++ -emit-swc=... argument.
    -emit-swc=
    Emits a SWC that can be linked into a Flash Builder project or distributed for others to link into their own projects. You must specify the namespace that you want to use to replace the default com.adobe.flascc namespace, this lets you link multiple Crossbridge-generated SWCs into a single project.

  • ABC classification

    Hi Gurus,
    How can I maintain in ABC clasification by mass upload in MRP
    and how this be automatically calculated as ABC per item. What I know for the Cycle Count is that I will run a report that could identify ABC by using the percentage setting in MIBC Tcode, in MRP Im not sure where to maintain.
    Please advise.
    Regards,
    Virgilio

    you have to give the ABC Classification in general data of MRP-1 view.
    A-Significant material
    B-Medium significant
    C-Lower significant
    based on this system will stratify the material.For Mass upload by LSMW.you have to check same material type and same views have been maintained by all the materials.Please check 1st thread of this forum for LSMW of material master.
    reward if useful.
    regards
    venkadesh

  • Running APD for ABC classification

    Dear Experts,
    I have created a data mining object for calculation of customer clasification. Afterwards an APD object was created, where I use a BEx query to calculate the ABC classification (based on the rules in data mining object). Subsequently the attribute of info object 0CUST_SALES will be updated with ABC calls (name of info object is:0CUST_CLA).
    APD object has been created and activated. Now when I try to run it, I get the error message:
    "Internal error when reading the definition of InfoObject 1CUDIM"
    Message no. RSCRM129
    Any idea how to proceed?
    Thank you
    Aban

    Hi,
    i had the same issue with my APD. The solution here was remove the field 1CUDIM from the query and map all the keyfigures with their own units to the DSO. That means that when you have 6 keyfigures in the query and in the APD you have to create 6 unit info objects in the DSO .
    From the query you get for example the following output:
    D5M88END2WPQ8E1CJHFNNRAW7     
    D5M88END2WPQ8E1CJHFNNRAW7_UNIT     
    I map is to my own fields in DSO:
    ZIC_AMT_1     IM quantity 1
    ZIC_AMT_U1   IM unit 1 (unit belonging to the keyfigure)
    Hope this helps.
    Paul V
    TruEconomy NL

  • How to extract Material Classification into BW ?

    Hi All
    I want to create datasource to extract material classification into BW
    I made research into this forum
    Lot of post speak about Tcode CTBW but I didn't find a method to implement it
    Does somebody can help me with explanations on this Tcode or another method to create the datasource ?
    Thanks a lot in advance for your help
    Sebastien

    Hi Sebastian, 
    Check OSS note 306046 - https://service.sap.com/sap/support/notes/306046
    Regards,
    Sree

  • Weather CDMA/EV-DO model be converted into GSM model?

    Please let me know weather CDMA/EV-DO model be converted into GSM model?

    The iPhone 4 cannot be converted to a GSM model, there is no internal hardware to do so.
    The iPhone 4S is only for international use; not domestic.
    The iPhone 5 is unlocked by default on Verizon, and works with AT&T HSPA+, but I doubt the iPhone 5 is meant for this purpose.

  • ABC Classification and Cycle Cout

    Hi,
    We need to count a specific category of items every week from our sub inventories.
    After reading manual I have done abc classification and created cycle count.
    But problem is I don't know/cant find how to perform cycle count on the category that I want to be counted every week.
    If anyone who does this or the gurus please help I am stuck with this.
    thanks,
    7Z

    Hi
    I was looking for that becuase by using the interface table we can upload adjustments after running cycle count.
    Is there a way to upload adjustments from excel after physical count,
    thanks,
    /Z

  • Log into Activity Analysis (EPO)

    Hello,
    I have a problem since Friday, 31st October and basically I cannot log into Activity Analysis (EPO) but my colleagues can. I have contacted support.BOSAPEMEA_sap.com and they refer me to this Web site.  It was very complicated to log a tickets with EPO Help Desk, sorry to telling that but for 'common' user like there is not an obvious option named "log your query". I still do not know if here is a right place to log a ticket?
    The error message is "An error has occurred. Error code 8088021.General Data base error.Class CUserInfo . GeneralRowSetOpenError."
    Please could you advice what cause the problem and options to resolve it. 
    I would very appreciate if you could answer by tomorrow evening for example....
    Also if you have a guide how to log a query on your WEb please could you sent me?
    Regards,  Valentina

    Hi Valentina
    I'm sorry you have had problems raising an incident through the Service Marketplace - I will send you details on how to request support outside this thread as there is no way to attach a document to a forum thread that I can see.
    One of your colleagues has raised this error as a support request, and to my knowledge the issue has now been resolved following a server reboot. Your error message indicates a there being a problem with your client machine connecting to the database server via the application server, so it is possible that the connection had been dropped and the reboot restored that machine-to-machine communication.
    Kind regards
    Fiona

  • Data minig and ABC classification

    Hy, the classification rules on ABC model consist of any threshold and  corresponding classes. The question is: a final user can modify these threshold without enter on Mantaning Data Mining Models?
    Thank's a lot.
    Sincerely yours,
    Andrea

    Hi Rohit,
    did you check the protocol of the transport? TA: STMS
    click on the 'RC'-Indicator.
    Read the parts of 'import' and 'methods' (expand all level) -> in 98% you will find the solution in the protocol.
    regards
    Ingo

  • Importing PSPICE model of OPA140 into multisim

    I cannot get Multisim to simulated the OPA140 model (attached).
    I have tried to pay careful attention to pin mapping etc. but Multisim complains:
    SPICE Netlist Error in schematic RefDes 'u1', element 'e1': Unexpected ')' found in function ''
    SPICE Netlist Error in schematic RefDes 'u1', element 'vcvs_limit_1': Due to errors, the component 'e1' has been omitted from the simulation
    I looked over the code and could not find an unmatched ")".
    Any help will be greatly appreciated!
    Attachments:
    OPA2140.txt ‏13 KB

    Hello,
    Could you please attached your component to this forum, so I am able to take a better look into what may be causing the error.
    Regards,
    Sharanya Rajaratnam
    Market Development Engineer
    NI, Toronto
    Notes for Branch AE:
    Please reply to This Post within 24 hours
    The US AE is expected to reply to all of your posts within 24 hours. Having this expectation will keep the escalation moving quickly and toward a fast resolution.
    You can also use other communication channels: Phone, Sametime, Lync,etc. to discuss the issue with the US AE. This can help with troubleshooting and quick diagnosis of the issue.
    Click here to provide kudos for a post on this page

  • Inserting model of sculpture into scene

    Hi
    I'm an experienced user of photoshop but need to do something I've not done before.
    I am designing a piece of public sculpture for outdoors.  I have photographs of the location and photographs of my little model.  I now need to insert the photograph of the little model into the location photographs and make it look like it belongs there.  So I need the inserted model to adopt the environmental effects of it's surroundings.
    I can obviously do this the long manual way in photoshop or take the 3D modelling and rendering route, but I just wondered if there is a specific tool/command in photoshop that is designed for such a thing?
    I don't need it to look perfect. I just don't want it to look like its been "imported" in from nowhere.
    Oh and I'm using CS5.5
    Cheers guys

    Also, don't forget the little touches; if the sculpture is on a lawn, clone a little of the grass on a layer in front of the base, so it seems to sit down in the lawn. I have even gone so far as to put some small item (a waste bin, or some such) in the picture on a layer "in front of" the sculpture (not dead center, just on an edge). Again, to set it down in the scene and make it look like it belongs.
    Small things like that may take a little time, but can make all the difference in a presentation.
    --OB

  • "Error occurs when loading transaction data from other model" - BW loading into BPC

    Hi Experts,
    I'm having a problem with my data loading from BW, using the standard Load InfoProvider Selections data manager package.
    If I run for a period without data it succeeds (with warning) but if there is data to be extracted I get the following error:
    Task name CONVERT:
    No 1 Round:
    Error occurs when loading transaction data from other model
    model: AIACONS. Package status: ERROR
    As it runs ok when there isn't data it appears there is something preventing the movements of data out of the cube itself, rather then a validation issue.
    Has anyone encountered similar or have any ideas as to the problem?
    Best,
    Chris

    Hi Vadim,
    It's not specific to the transformation file as I have tried with others for the same BW cube and get the same result.
    We get a warning when we try and validate the transformation file:
    "Error occurs when loading transaction data from other model".
    This only appears in the validation pop up and doesn't throw up any warnings about the transformation file itself.  The validation log says:
    Validate  and Process Transformation File Log
    Log creation time
    3/7/2014 16:09
    The result of validation of the
      conversion file
    SUCCESS
    The result of validation of the
      conversion file with the data file
    FAIL
    Validation Result
    Validation Option
    ValidateRecords = NO
    Message
    Error occurs when loading transaction data from other model
    Reject List
    I can't find any errors anywhere else.
    Best,
    Chris

  • How can I convert a bitmap image into an array in LabVIEW 6.0.2, then to a spreadsheet for further analysis without NI-IMAQ or Vision?

    I do not have NI-IMAQ or NI Vision.
    I acquired the image using a picolo board then just saved it as a bitmap file.

    You want to convert it to an array of what? Of numbers? Of LabVIEW colors?
    The "Read BMP File.vi" VI outputs a 1-D array of the pixels, but I suspect it is not exactly in the format that you need. I am NOT sure, but I think that each group of 3 elements of that 1-D array (which is inside the cluster "image data" that the VI outputs) represents the red, green and blue levels of a single pixel (but it may be hue, saturation and lum.). Also, since it is a 1-D array, you would have to divide it by the width (which is also included in the "image data" cluster) to get some sort of 2-D array of data.
    You can find the "Read BMP File.vi" VI in the functions palete> "Graphics & sound">"Graphics Formats".

Maybe you are looking for

  • What's wrong with the letter "I"?

    All of a sudden i can not type the capital letter i without putting the caps lock on. The shift key works beautifully for all the other letters, but not for i.  When i hold down shift and press i there is but a blank space, not even a small i:(... Wh

  • Cant use by WLAN an USB Printer connected to Router

    Hello, Please help my by solving this Problem. I have connected a USB Printer to a Router. The Router recognizes the Printer an shows a Connection. But I cant use the Printer from my MacBook Pro by IP over WLAN. Can somebody help?

  • Leaky bar chart - bug?

    using javafx 1.2 testing javafx.scene.charts Looks like there is a memory leak Here is a small bar chart app. The bars are animated. They shrink and grow when clicked on. Keep clicking and the app eventually crashes with the following error Unexpecte

  • Win 7, .flv file association to Flash player

    I lost the association for my .flv files, it should be a simple matter to indicate that they should open with adobe flash player, but I can't find the application! I have the pathway "C:\Windows\System32\Macromed\Flash" which contains the following f

  • Accessed

    oracle version 10.2 database running in noarchivelog mode I want to know who are all accessed the database past 1 month (insert,update,delete) whether we can set fine grained auditing