Classification error

Hello Gurus,
I have configured the PO release strategy classification and transported it to the Dev client. When i click on the classification tab in PO release strategy, I get the following error.
Error in Classification(class MM_PUR_RELEASE class type 032)
Message # ME179
Need help on this
Thanks in advance
MV

This is probably because the classification data are not in your system.
Transporting release strategy customizing does not include classification data (class, characteristic and valuation).
You either need to re-create the classification data in the target system/client or distribute it by ALE (see SAP note <a href="https://service.sap.com/sap/support/notes/45951">45951</a>)

Similar Messages

  • Batch Classification error - re Customer name change

    Dear all,
    We have a problem with Batch classification for one customer who has had a name change.
    Name of customer changed and search term changed in customer master.
    The NEW search term then added as a 'customer suitability Value'  into the Batch classification for material, plant and batches.
    However when entering these batches onto the delivery note, SAP comes up with BATCH CLASSIFICATION ERROR.
    IN order to resolve this, we have had to add the OLD customer suitability/Search term value into the Batch classification
    This does not seem to be correct, is there some other change that we need to do ???
    Please advise
    Thanks
    Tony

    Hi
    We put this to SAP via Service marketplace
    and they kindly told us where our error was
    We needed to update the new searchterm in transaction VCH3 - Batch search strategy
    this involves SHip to, materials
    when you hi-lite the grade and click on the selection criteria
    The customer suitability in here , which is the search term in customer masterdata, had never ever been updated
    problem resolved now
    Tony

  • Batch Classification error

    Hi,
    I have got an error that while user is trying to change batch 180208 for the product no 17962  , they are getting the error message, " Inconsistency in classification data, transaction terminated".
    iam not aware how to change batches .How to resolve the above and thru which T-codes.
    regards
    sachin

    Hi, I checked in batch master Msc3n, there is no classification data maitained for the batch number i have   specified for the material. However in the material master classifcation data is maitained.
    One thing, I have seen in the batch master , MSC3n that the batch no is selected as non-classified (and no classifcation data maintained) whereas in material master, the classification data is there.
    Is non maintienance of classifcation data in batch master, the reason for error even if the batch in selected as non -classified in batch master.
    aslo the class type in material master is taken as 001 instead of 023.
    regards
    sachin

  • Rule based classification  errors in creating CLASSIFIER.THIS

    package body "STARDOC".classifier as
    procedure this
    is
    v_document     blob;
    v_item          number;
    v_doc           number;
    begin
    for doc in (select document_id, content from documents)
         loop
              v_document :=doc.content;
              v_item:=0;
              v_doc:=doc.document_id;
         for c in (select category_id, category_name from doc_cats_rule_based_class
                   where MATCHES (doc_cats_rule_based_class.QUERY, v_document)>0)
              loop
                   v_item:=v_item +1;
                   insert into doc_cat_rule_based_class values (c.document_id, c.category_id);
              end loop;
         end loop;
    end this;
    end;
    Errors:
    Error     1     PLS-00306: wrong number or types of arguments in call to 'MATCHES'     ORACLE://stardoc.(Local Database)/Package Body/STARDOC/CLASSIFIER*     17     10     
    Error     2     PL/SQL: ORA-00904: "MATCHES": invalid identifier     ORACLE://stardoc.(Local Database)/Package Body/STARDOC/CLASSIFIER*     17     10     
    Error     3     PL/SQL: SQL Statement ignored     ORACLE://stardoc.(Local Database)/Package Body/STARDOC/CLASSIFIER*     16     11     
    Error     4     PLS-00364: loop index variable 'C' use is invalid     ORACLE://stardoc.(Local Database)/Package Body/STARDOC/CLASSIFIER*     20     64     
    Error     5     PL/SQL: ORA-00984: column not allowed here     ORACLE://stardoc.(Local Database)/Package Body/STARDOC/CLASSIFIER*     20     66     
    Error     6     PL/SQL: SQL Statement ignored     ORACLE://stardoc.(Local Database)/Package Body/STARDOC/CLASSIFIER*     20     4     
    i store the documents in Documents(document_id,content) table, rules in
    doc_cats_rule_based_class(CATEGORY_ID,CATEGORY_NAME,QUERY)
    and store the assigned document-category in doc_cat_rule_based_class(DOCUMENT_ID,CATEGORY_ID).
    Please Help

    I believe the problem is with trying to pass a value of blob datatype as a parameter to matches. Try using utl_cast_to_varchar2 as demonstrated below.
    SCOTT@10gXE> CREATE TABLE Documents
      2    (document_id    NUMBER,
      3       content        BLOB)
      4  /
    Table created.
    SCOTT@10gXE> INSERT INTO documents VALUES (1, UTL_RAW.CAST_TO_RAW ('contents of document'))
      2  /
    1 row created.
    SCOTT@10gXE> CREATE TABLE doc_cats_rule_based_class
      2    (CATEGORY_ID    NUMBER,
      3       CATEGORY_NAME  VARCHAR2 (15),
      4       QUERY            VARCHAR2 (30))
      5  /
    Table created.
    SCOTT@10gXE> INSERT INTO doc_cats_rule_based_class VALUES (1, 'test_cat', 'contents OR document')
      2  /
    1 row created.
    SCOTT@10gXE> CREATE INDEX your_index ON doc_cats_rule_based_class (query)
      2  INDEXTYPE IS CTXSYS.CTXRULE
      3  /
    Index created.
    SCOTT@10gXE> CREATE TABLE doc_cat_rule_based_class
      2    (DOCUMENT_ID    NUMBER,
      3       CATEGORY_ID    NUMBER)
      4  /
    Table created.
    SCOTT@10gXE> CREATE OR REPLACE package classifier as
      2    procedure this;
      3  end classifier;
      4  /
    Package created.
    SCOTT@10gXE> SHOW ERRORS
    No errors.
    SCOTT@10gXE> CREATE OR REPLACE package body classifier as
      2    procedure this
      3    is
      4    v_document blob;
      5    v_item number;
      6    v_doc number;
      7    begin
      8        for doc in (select document_id, content from documents)
      9        loop
    10          v_document :=doc.content;
    11          v_item:=0;
    12          v_doc:=doc.document_id;
    13          for c in (select category_id, category_name from doc_cats_rule_based_class
    14                 where MATCHES (doc_cats_rule_based_class.QUERY, UTL_RAW.CAST_TO_VARCHAR2 (v_document))>0)
    15          loop
    16            v_item:=v_item +1;
    17            insert into doc_cat_rule_based_class values (doc.document_id, c.category_id);
    18          end loop;
    19        end loop;
    20    end this;
    21  end classifier;
    22  /
    Package body created.
    SCOTT@10gXE> SHOW ERRORS
    No errors.
    SCOTT@10gXE> EXECUTE classifier.this
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> SELECT * FROM doc_cat_rule_based_class
      2  /
    DOCUMENT_ID CATEGORY_ID
              1           1
    SCOTT@10gXE>

  • Rule based classification errors in creating CLASSIFIER.THIS help required

    package body "STARDOC".classifier as
    procedure this
    is
    v_document blob;
    v_item number;
    v_doc number;
    begin
    for doc in (select document_id, content from documents)
    loop
    v_document :=doc.content;
    v_item:=0;
    v_doc:=doc.document_id;
    for c in (select category_id, category_name from doc_cats_rule_based_class
    where MATCHES (doc_cats_rule_based_class.QUERY, v_document)>0)
    loop
    v_item:=v_item +1;
    insert into doc_cat_rule_based_class values (c.document_id, c.category_id);
    end loop;
    end loop;
    end this;
    end;
    Errors:
    Error 1 PLS-00306: wrong number or types of arguments in call to 'MATCHES' ORACLE://stardoc.(Local Database)/Package Body/STARDOC/CLASSIFIER* 17 10
    Error 2 PL/SQL: ORA-00904: "MATCHES": invalid identifier ORACLE://stardoc.(Local Database)/Package Body/STARDOC/CLASSIFIER* 17 10
    Error 3 PL/SQL: SQL Statement ignored ORACLE://stardoc.(Local Database)/Package Body/STARDOC/CLASSIFIER* 16 11
    Error 4 PLS-00364: loop index variable 'C' use is invalid ORACLE://stardoc.(Local Database)/Package Body/STARDOC/CLASSIFIER* 20 64
    Error 5 PL/SQL: ORA-00984: column not allowed here ORACLE://stardoc.(Local Database)/Package Body/STARDOC/CLASSIFIER* 20 66
    Error 6 PL/SQL: SQL Statement ignored ORACLE://stardoc.(Local Database)/Package Body/STARDOC/CLASSIFIER* 20 4
    i store the documents in Documents(document_id,content) table, rules in
    doc_cats_rule_based_class(CATEGORY_ID,CATEGORY_NAME,QUERY)
    and store the assigned document-category in doc_cat_rule_based_class(DOCUMENT_ID,CATEGORY_ID).
    Please Help why errors are occurring.

    Have you created an index on your query column?
    create index doc_cats_rule_based_class_idx on doc_cats_rule_based_class(query)
    indextype is ctxsys.ctxrule;

  • Classification error of Class Type 017

    Hi,
    We are facing a problem in Document Management classification data...we have a class (of type ‘017’) with characteristics and this class name is configured in Document Type definition. When we change the documents via transaction CV02N, we are able to enter the values to the characteristics or able to select from the values list. But when the document is saved, the characteristics values are not updated in table AUSP and not displayed in the document.
    Please let me know what to do, if any one faced this kind of situation.
    Thanks,
    Sadhish

    If you have created a characterstic with entry required tick mark in CT04, attached it to doc with class type 017.
    If you do not assign value to this characterstic , you will get message like below.
    so please check your characterstic and its assignment in doc once again and come back.
    Thanks
    Ritesh
    Status changed: missing values for required chars in
    XX1000000000000001000000052600000
    Message no. CL500
    Diagnosis
    You want to save an allocation to a class with released status.
    However, the class contains characteristics for which an entry is required.
    System Response
    The system changes the status of the allocation to incomplete.
    Procedure
    If you want to save the allocation with released status, first you
    must assign values to all the required characteristics. Then you can set the
    status you require.
    Note
    The classification status affects functions such as the find objects
    function. You can define whether objects with incomplete classification
    status are included in the search result.
    If the classification status of a configurable material is incomplete
    for an allocation to a class, this does not affect configuration.

  • Two Level PR Strategy Classification Error

    Hi Gurus ,
    I am creating a PR Strategy with Following Scenario.
    Two Level of Approvals : Plant manager & Plant Head.
    Created a Release Strategy with Classifications for Plant manager.
    In this i have activated a characteristic stating Total Amount of PR <10,000
    Now i want to create same Strategy for Plant Head who can release PR >=10000 , with a Pre Requistie Approval of plant Manager.
    I have maintained a Characterstic in the same Class which i am using but at the time of Releasing Strategies under classification i is not showing the Characterstic "PR>=10000" created earlier.
    kindly guide me further.
    Also is it possible to set a two level Release Strategy at the time of PR Creation in SAP.
    Regards
    Honey
    Edited by: Honey.Sachin on Apr 30, 2011 11:32 AM

    Hi,
    To activate for two level of release strategy for PR,please check the necessary steps to follow:
    1-Create Characteristics:
      Description- Manager and check Checkbox with "Intervals Vals allowed"
      No. of Chars-5 and in Value field put <=10000 and make it default
    For another Chars:
      Description- Plant Head
      No. of Chars-5 and in Value field put >10000 and make it default.
    Now create Class by taking class type 032 and assign the chars to this class.
    Now go for creating the rel. group(one for manager and another for Plant head) then codes and then indicator.
    After this assign the corresponding Release group to the strategy for the required release codes.and then go to the classification to assign the corresponding class.
    Note the combination should be unique for Manager Release strategy and Plant Head Release strategy.
    Thanks & regards,
    Bijay Pradhan

  • TREX Classification error

    Hi
    I am getting a lot of error while classifying certain docs in an index.
    The index has already succesfully indexed and classified more than 7000 docs out of total 8000.
    But some ~100 are having these particular errors
    An error occurred during classificationError while classifying resource
    /documents/Public Documents/.~..~..Report_2007_d.pdf for taxonomy
    Metadata_Statistics.com.sapportals.wcm.WcmException:
    Filter: The result output exceeded the configured max. size
    (Errorcode 14047)Error while classifying resource
    /documents/Public Documents/.~..~..Report_2007_d.pdf for taxonomy Library.com.sapportals.wcm.WcmException: Filter:
    The result output exceeded the configured max. size
    (Errorcode 14047)
    An error occurred during classificationError while classifying resource /documents/Public
    Documents/..~...Annual_Report_2007_e.pdf for taxonomy
    Metadata_Statistics.com.sapportals.wcm.WcmException: message not found (Errorcode 14036)Error
    while classifying resource /documents/Public
    Documents/..~...Annual_Report_2007_e.pdf for taxonomy
    Library.com.sapportals.wcm.WcmException: message not found (Errorcode 14036)
    What is this max.size?
    Wer can this be configured?
    Regards
    BP

    Hi Bobu
    Are the pdf-files larger than 15MB? If yes, then I believe they will be filtered out in the standard configuration:
    +The TREX preprocessor is responsible for preprocessing documentsand search queries so that the index server can index the documents or respond to search queries
    During this process the various document formats are converted into a single format that recognizes document languages and can be analyzed linguistically
    Recommendations:
    Set max file sizeto exclude very large files, for example, system log
    files that contain little retrievable data
    Set specific limits for specific file types, namely .PDF or .XLS
    files. For PDF, not larger than 15 MB. For XLS, not larger than
    10,000 lines.
    Relevant .inifiles: TREXPreprocessor.iniand TREXfilter.ini+
    The snippet is taken from:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/bef71357-0601-0010-e5b6-83137bcc064c
    There is a related webinar on SDN also.
    I don't have access to a TREX server at the moment, so I hope you can find your way to which of "the relevant .inifiles" you should be editing.
    Best regards,
    Martin Søgaard

  • Error in classification (class CLASS-PLANT class type 032)

    Dear,
    I am testing Release procedure in Quality client.....There my colleague  have created one class in quality manually name as CLASS-PLANT  , but when i am clicking in  release strategy "Classification" button ..i am getting this error "Error in classification (class CLASS-PLANT class type 032)
    Message no. ME179
    Procedure
    Please check the specified class or class type in Customizing for the release procedure."
    i have created class CLASS-PLANT class type 032..
    what can be the problem?
    Utsav

    Hi
    Check the following threads it may help you
    Re: error in release config
    PR Release : Error in Classification
    Classification error
    Thanks/Karthik

  • Errors during VM migration

    Hi,
    I have an SCVMM 2012 R2 instance (with CU1), and when I perform a VM migration I get a status of Completed w/ Info
    In the details pane of the Jobs window I have 9 errors and a warning every time
    Error 23801 - No available connection to selected VM Network can be found
    Error 23810 - There is no host NIC with required classification
    Error 23806 - All available ports on switch extenstion has been used
    Error 23808 - All available ports on port profile has been used
    Error 23807 - The switch extension has reached maximum supoprted ports on this host
    Error 23809 - The port profile has reached maximum support ports on this host
    Error 23811 - Ports are not available for VM Subnet
    Error 23825 - The virtual machine requires a logical switch connection and the host network adapter is not attached to a logical switch or operating sytem doesn't support logical switch
    Error 23753 - The virtual machine or tier load balancer configuration requires an IP pool and there are no appropraite IP pools accessible from the host
    Warning 23830 - Unable to find compliant logical switch
    Even with all of these warnings the migrated VM works just fine.
    In our environment we are using a layer 3 switch with VLANs, so I have a logical network using the 'VLAN-based independent networks' option, with two sites
    Each site has an assoicated VLAN ID, and IP subnet
    I've created a logical switch (without SR-IOV), using only the Microsoft Windows Filtering platform extension
    The uplink on the logical switch is not a team, and has a port profile associated with the host group including all my Hyper-V hosts, and including all sites from the logical network
    The virtual port on the logical switch has High bandwidth and medium bandwidth port classifications associated
    I have VM Networks created for each of the sites on my logical network
    The network configuration on my VM is as follows:
     Connected to a VM network, enable VLAN
      IP address is greyed out as Static IP (from a static IP pool) - This was configured as Dynamic at creation time as I do not use IP pools
      MAC address is dynamic
      Virtual switch - using the logical switch mentioned above and High Bandwidth classification
    The hosts have a dedicated interface on a trunked network port for VM data. Available for placement is checked, used by management is not (as i have a dedicated interface for that)
    It has the logical network mentioned above assigned, and all IP sites are shown with their VLAN IDs
    I believe I have everything configured correctly (after all the VM works correctly regardless of which host is running it), but i still see these errors during a VM migration
    Has anybody seen this before, or have any pointers to resolving them?
    The hosts are Server 2012 R2 Datacenter and the VM is Server 2012 R2 Standard
    Thanks,
    Phil

    I am also getting these errors when manually migrating machines between hosts. And indeed, the VM is moved and keeps working.
    But when I try to put an host in maintenance, it instantly fails with:
    Error (10434)
    No suitable host is available for migrating the existing highly available virtual machines.
    Not quite the same network setup, but running all Server 2012R2 and VMM2012R2.
    In my production environment I do not have these issues, which is running Server 2012 and VMM2012SP1.
    Regards,
    Ramon

  • Workflow error in Oracle Credit management

    Hi,
    I got the following error in the credit management workflow(ARCMGTAP).
    The following details I got from wfstatus.sql file.
    Can you please any one help on this.
    Enter value for 1: ARCMGTAP
    Enter value for 2: 1177582
    **** WorkFlow Item
    Item Type Item Key Begin Date End Date Activity
    ARCMGTAP 1177582 10-SEP-09 08:02:12 AR_CMGT_APPLICATION_PROCESS
    **** Activity Statuses
    Begin Date Activity Status Result User
    10-SEP-09 08:02:12 ROOT/Credit Management Application Process ACTIVE #NULL
    10-SEP-09 08:04:25 Credit Management Application Process/Start COMPLETE #NULL
    10-SEP-09 08:04:25 Credit Management Application Process/Create COMPLETE
    Party Profile
    10-SEP-09 08:04:26 Credit Management Application Process/Generat COMPLETE #FORCE
    e Credit Classification
    15-SEP-09 13:15:37 Credit Management Application Process/Generat ERROR #EXCEPTION
    e Credit Classification
    **** Errored Activities
    Activity Result Error Name
    Error Message
    Error Stack
    Generate Credit Classification #EXCEPTION -29280
    ORA-29280: invalid directory path
    AR_CMGT_WF_ENGINE.GENERATE_CREDIT_CLASSIFICATION(ARCMGTAP, 1177582, ORA-29280: invalid directory pat
    Wf_Engine_Util.Function_Call(ar_cmgt_wf_engine.generate_credit_classification, ARCMGTAP, 1177582, 16
    *** Error Process Activity Statuses
    Begin Date Activity Status Result User
    10-SEP-09 08:04:26 ROOT/Default Error Process ACTIVE #NULL
    10-SEP-09 08:04:26 Default Error Process/Start COMPLETE #NULL
    10-SEP-09 08:04:26 Default Error Process/Initialize Error COMPLETE COMPLETE
    10-SEP-09 08:04:26 Default Error Process/Notify Administrator NOTIFIED SYSADMIN
    15-SEP-09 13:15:37 ROOT/Default Error Process ACTIVE #NULL
    15-SEP-09 13:15:37 Default Error Process/Start COMPLETE #NULL
    15-SEP-09 13:15:37 Default Error Process/Initialize Error COMPLETE COMPLETE
    15-SEP-09 13:15:37 Default Error Process/Notify Administrator NOTIFIED SYSADMIN
    8 rows selected.
    **** Error Process Errored Activities
    Thanks in advance.
    Regards,
    Raghavendra K

    Hi,
    In the AR_TOP there is no file with this name .
    Please let me know is there any other top related to CreditManagement.
    I used this command in unix server to find this file.But there is no results.
    find . -name ARCMGTAP.wft -exec ls {} \;
    Thanks,
    Raghav

  • PR release strategy-ERROR

    Gurus,
    I am trying to assign for PR rel strategy,i am getting this error.
    Error in classification (class RP_XX class type 032)
    Message no. ME179
    Procedure
    Please check the specified class or class type in Customizing for the release procedure.
    What should be done

    Seems like you are applying classification view to a system which is not customizable.
    You need to use tcode: CL20n/Cl24n to populate the classification view  in case of system uncustomizable.
    PR Release : Error in Classification
    Classification error
    Error in classification (class CLASS-PLANT class type 032)
    Edited by: Afshad Irani on Jul 6, 2010 1:07 PM

  • Error when building dimension or deleting workspace

    I am just starting to work with AW and trying to get past some initial bumps. I initially created 2 AWs but did all of my work in just one of them, using a small, 20 row dataset that I created. But soon I was getting too many errors in that AW and figured something was corrupted so I deleted it.
    But now, when I try to create a simple dimension (with 2 levels) in the remaining AW, I get the error:
    Errors have occurred during xml parse
    <Line 3, Column 15>: <Line 3, Column 15>: XML-20210: (Fatal Error) Unexpected EOF.
    Also the error:
    The transaction is not committable: "An error has occurred on the server
    Error class: Express Failure
    Server error descriptions:
    DPR: Unable to create server cursor, Generic at TxsOqDefinitionManager::generic<CommitRoot>
    INI: Unable to parse XML string sent from the client to the server, Generic at XML Parser Errors:
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    Then when I try to DELETE this second AW and start completely afresh I get the error:
    An error has occurred on the server
    Error class: Express Failure
    Server error descriptions:
    DPR: Unable to create server cursor, Generic at TxsOqDefinitionManager::generic<CommitRoot>
    INI: Unable to parse XML string sent from the client to the server, Generic at XML Parser Errors:
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    Does anyone have any ideas what is causing this? Thanks. John

    David. Thanks very much. The patch would not take to the database (just hung) so I was given a brand new box and fully upgraded DB. Works fine so far. A bit of a silver lining I guess. {:>) -John                                                                                                                                                                                                                                                                                                                                                                                                       

  • Error when building dimension using AWM

    Hi Gurus,
    I am trying to build a dimension using AWM 11.1.0.7.0B Standalone. My Database version is _11.1.0.6.0._
    The moment i start to create a New Dimension, i get the below error.
    The transaction is not committable: "An error has occurred on the server
    Error class: Express Failure
    Server error descriptions:
    DPR: Unable to create server cursor, Generic at TxsOqDefinitionManager::g
    The transaction is not committable: "An error has occurred on the server
    Error class: Express Failure
    Server error descriptions:
    DPR: Unable to create server cursor, Generic at TxsOqDefinitionManager::generic<CommitRoot>
    INI: Unable to parse XML string sent from the client to the server, Generic at XML Parser Errors:
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    +"+
    +at oracle.olap.awm.dataobject.dialog.PropertyViewer.doCreateAction(Unknown Source)+
    +at oracle.olap.awm.dataobject.dialog.CreateDialogHostActionThread.doAction(Unknown Source)+
    +at oracle.olap.awm.ui.dialog.ThreadedDialogActionThread.run(Unknown Source)+
    Please help!!!!!
    +*Regards,*+
    +*Ravi R*+

    The initial release of OLAP in 11.1.0.6 was not stable. Please upgrade to at least database 11.1.0.7, and preferably 11.2.0.3. If you move to 11.1.0.7, then you should apply the "OLAP D Patch", #9147749. See the OLAP certification page for more details.
    http://www.oracle.com/technetwork/database/options/olap/olap-certification-092987.html

  • Error when I try to create dimension with AWM 11g

    hello, I have installed Analytic workspace manager 11g, and I have created a connection to an oracle database, but when I try to create a dimension 2 errors appears by alternate :
    1/
    La transaction ne peut pas être validée : "Erreur sur le serveur
    Classe d'erreurs : Echec dExpress
    Descriptions des erreurs du serveur :
    DPR : Création impossible du curseur de serveur, Générique à TxsOqDefinitionManager::generic<CommitRoot>
    INI : Impossible d'analyser la chaîne XML envoyée par le client au serveur, Générique à XML Parser Errors:
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    2/
    Des erreurs se sont produites lors de lanalyse XML
    <Ligne 3, Colonne 15> : <Line 3, Column 15>: XML-20210: (Fatal Error) Unexpected EOF.
    help me stp.

    Hi,
    This question is missplaced in this forum.
    Please ask this question again, the appropriate forum is found here:
    OLAP
    (OLAP forum)
    thanks
    Jorge

Maybe you are looking for

  • How to enable http trace for a mobile application??

    Hi , SSO(single Sign On) is failing in my client's application.And it is an android application.So,we are not able to enable the http trace and see where its failing/where the cookie is getting wiped out. Please let me know if there is any alternativ

  • Can I use intelligent quotation marks on my iPhone?

    On my Mac I use "intelligent" punctuation, for example intelligent quotation marks. Can I do this on the iPhone too? Thanks :)

  • Any problem with AMD Radeon or FirePro graphic cards?

    Hi. I know that Adobe recommend Nvidia cards for SpeedGrade, but I ask to owners of AMD cards if they have found any problems with AMD cards: bad performance, not realtime with relatively few layers, etc, etc Which is your experience? Thanks.

  • Idoc in 53 status but not processed completely.

    Hi , Some of the ORDER Idocs are in 53 status, but the orders are not processed successfully and no PO created for these Idocs. They got below warning message when I checked in WPER transaction code. " Missing authorization: Purchase Order Create Pur

  • Automatic STO-Delivery & PGI

    Hi Guys, The material have been extended to both the receiving and supplying company code(Plant). Supplying company is created as vendor in receiving company(Plant). Receiving company is created as customer in receiving company(Plant). All inter comp