ASSERTION_FAILED when Activate a DTP

I got an error message when trying to activate a DTP. Does anyone know how to fix it? Thanks!
Runtime Errors         ASSERTION_FAILED
Date and Time          03/27/2007 14:29:57
Short dump has not been completely stored (too big)
Short text
     The ASSERT condition was violated.
What happened?
     In the running application program, the ASSERT statement recognized a
     situation that should not have occurred.
     The runtime error was triggered for one of these reasons:
     - For the checkpoint group specified with the ASSERT statement, the
       activation mode is set to "abort".
     - Via a system variant, the activation mode is globally set to "abort"
       for checkpoint groups in this system.
     - The activation mode is set to "abort" on program level.
     - The ASSERT statement is not assigned to any checkpoint group.
Error analysis
     The following checkpoint group was used: "No checkpoint group specified"
     If in the ASSERT statement the addition FIELDS was used, you can find
     the content of the first 8 specified fields in the following overview:
     " (not used) "
     " (not used) "
     " (not used) "
     " (not used) "
     " (not used) "
     " (not used) "
     " (not used) "
     " (not used) "
Trigger Location of Runtime Error
     Program                                 CL_RSAR_PSA===================CP
     Include                                 CL_RSAR_PSA===================CM006
     Row                                     152
     Module type                             (METHOD)
     Module Name                             UPDATEDIRECTORY_TABLES
Source Code Extract
Line  SourceCde
122               i_uni_idc25       = l_codeid
123               i_program_class   = 'RSAR_ODS_MAINTAIN'
124             EXCEPTIONS
125               deletion_rejected = 2
126               OTHERS            = 3.
127         ENDIF.
128       ENDIF.
129       UPDATE rstsods SET tstpnm   = sy-uname
130                 timestmp  = l_s_ods-timestmp
131                 userapp   = p_userapp
132                 userobj   = p_userobj
133                 maintprog = ''
134            WHERE odsname = l_s_odsfield-odsname
135            AND   version = l_s_odsfield-version.
136       IF sy-subrc = 0.
137         IF i_partitioned = rs_c_true.
138 *--   Entry could exist but includes no partition number,
139 *     because the PSA was not partitioned before
140           l_tablnm = p_psa_techname.
141
142           CALL FUNCTION 'RSDU_PARTITIONS_INFO_GET'
143             EXPORTING
144               i_tablnm              = l_tablnm
145             IMPORTING
146               e_ts_part_info        = l_ts_part_info
147             EXCEPTIONS
148               table_not_exists      = 1
149               table_not_partitioned = 2
150               OTHERS                = 3.
151
>>>           ASSERT sy-subrc = 0.
153
154           DESCRIBE TABLE l_ts_part_info LINES l_num_partitions.
155           READ TABLE l_ts_part_info INDEX l_num_partitions INTO l_s_part_info.
156           l_highest_partvalue = l_s_part_info-high_value.
157
158           UPDATE rstsods SET partno  = l_highest_partvalue
159             WHERE odsname = l_s_odsfield-odsname
160             AND   version = l_s_odsfield-version.
161
162         ENDIF.
163       ELSE.
164 *       create new version
165         l_s_ods-odsname       = l_s_odsfield-odsname.
166         l_s_ods-version       = i_next_version.
167         l_s_ods-dateto        = rsods_c_dateto_01019999.
168         l_s_ods-datefrom      = rsods_c_datefrom_01011998.
169         l_s_ods-objstat       = rs_c_objstat-active.
170         l_s_ods-odsname_tech  = p_psa_techname.
171         l_s_ods-progname      = i_progname.

I guess it is Notes 1012607.
Summary
Symptom
Note: This note is relevant only for 'ORACLE' and 'MSSQL' database systems. After you implement this note, you must also carry out some manual corrections (see 'Solution', below).
If you are working with database system DB2 or MSSQL, also implement Note 1022026.
When data is written or activated or when a DataStore object is activated, the following errors occur:
Similar errors may also occur for the DataSource and data transfer process (DTP).
ORA-01502: index 'SAPDAT./BIC/A*KE' or partition of such index is in unusable state
Column 'PARTNO' is partitioning column of the index '/BIC/A*KE'. Partition columns for a unique index must be a subset of the index key.
error #RSDU_TABLE_TRUNC_PARTITION_MSS: Error While Calling Module MSS_TRUNC_PARTITION_FROM_TABLE Message no. 0U534#.
<b>ASSERTION_FAILED in class 'CL_RSAR_PSA'.</b>
Error message D0 313 in the activation log. The message does not contain any text. In the activation log it is displayed as an empty line with a red traffic light.
Other terms
DBIF_RSQL_SQL_ERROR, D0 313, D0313
Reason and Prerequisites
Reason:
The partitioning logic of the persistent staging area (PSA) service does not recognize that the PARTNO field must not be deleted.
For write-optimized DataStore objects, the active table is created as a partitioned table, even though a global index is used to ensure uniqueness of data. This is not compatible with the 'drop of a partition'.
In the DataSource maintenance, you have the option to define key fields. For the first 16 key fields of the DataSource field list, a global index is also created.
If 'semantic groups' are used in the DTP, the error stack is created with a global index.
Solution
Implement the corrections by importing the Support Package or by implementing the advance correction. As a result, the 'range' partitioning is deactivated in the PSA service as soon as a global index is requested.
The error can occur for the objects: DataStore (only the write-optimized type), DataSource, and error stack of the DTP.
This note contains the 'RSAR_PSA_PARTITION_CHECK' program, which you can use to analyze the objects. Execute the program. Use the search strings listed in section 5), depending on whether you want to analyze individual objects or object types. If you do not make an entry in the PODSTECH field (technical name of the PSA), the system checks all existing PSA tables, which may take some time.
You can use transaction SLG1 to display the log for 'RSAR_PSA_PARTITION_CHECK'. Select the following:
           Object        = 'RSAR'
Subobject   = 'METADATA'
Ext. Identif. = 'RSAR_PSA_PARTITION_CHECK'
You must make different manual changes to repair each of the different object classes.
1) DataStore (write-optimized)
Incorrect DataStores are identified in the log of the check program with the PSA type 'FASTSTORE'. The name after 'Obj:' is the technical name of the corresponding DataStore object.
For a DataStore object of the 'write-optimized' type, a global index with relation to the semantic key is created if the 'Do Not Check Uniqueness of Data' indicator is not set.
Check if you need to ensure that data is unique in your scenario.
1. If you do not need the data to be unique:
                    Set the flag: 'Do Not Check Uniqueness of Data', and activate the DataStore object. The DataStore object is now consistent again.
2. If you need unique data:
In this case, you must departition and convert the table.
If the error occurred when you activate the DataStore itself or when you activate the data, you must activate the DataStore object after converting the active table. You need the technical name of the active table for the conversion. You can get this directly from the log of 'RSAR_PSA_PARTITION_CHECK'. If you know which DataStore contains errors, find the technical name of the active table in the Maintain DataStore screen by choosing:
           <Extras> ->
          'Information (logs/status)
Choose 'Dictionary DB status' to access the status POPUP. You can find the technical name in the 'Active table' field.
If the table does not contain any data according to the 'RSAR_PSA_PARTITION_CHECK' log, the table is automatically departitioned when you activate the DataStore.
If the table contains data, you must departition and convert the table as described in section 4.
After that, use the AdminWorkBench (transaction RSA1) to activate the DataStore object.
2) DataSource:
Incorrect DataSources are identified in the log of the check program with the PSA type 'NEW_DS'. The 'Obj:' indicator  is followed by two additional character strings. The first is the technical name of the relevant DataSource. The second is the technical name of the source system.
PSA tables for DataSources with a key definition must be departitioned.
The name of the PSA table for the DataSource is contained directly in the 'RSAR_PSA_PARTITION_CHECK' log.
If the table does not contain any data according to the 'RSAR_PSA_PARTITION_CHECK' log, the table is automatically departitioned when you activate the DataStore.
If the table contains data, you must departition and convert the table as described in section 4.
Call transaction 'RSDS' and enter the technical name of the DataSource and the source system and activate the DataSource.
3) Error stacks for the DTP:
Incorrect Error Stacks are identified in the log of the check program with the PSA type 'ERRORSTACK'. The 'Obj:' indicator  is  followed by the technical name of the relevant DTP. There may be more than one error stack table for each DTP.
PSA tables for ErrorStack with a key definition must be departitioned.
The name(s) of the PSA Error Stack table(s) for the DTP is/are contained directly in the 'RSAR_PSA_PARTITION_CHECK' log.
If the table does not contain any data according to the 'RSAR_PSA_PARTITION_CHECK' log, the table is automatically departitioned when you activate the DTP.
If the table contains data, you must departition and convert the table as described in section 4.
Now call transaction RSDTP, enter the technical name of the DTP and activate the DTP.
4) Departitioning and converting
The following manual conversion using transaction SE14 is supported only for ORACLE database systems. Open a problem message under component BW-SYS-DB-MSS if you need to convert tables on a MSSQL database system.
Call transaction SE14 (Database Utility) for the tables you need to convert. Select 'Table', enter the technical name of the table and choose 'Edit'.
On the next screen, choose 'Storage Parameters' (Shift+F6).
On the next screen (Storage Parameters), choose 'For new creation' (F8).
In the dialog box that then appears, select 'Current database parameters' and copy it by choosing 'Enter'.
You now get an overview of the storage parameters <Tables>, <Indexes> and existing <Partitions>.
Under the 'Table' node, if the content of the 'TABLESPACE' field is initial, enter the value from the 'TABLESPACE' field of the first partition.
For the field 'PARTITIONED BY', choose the option 'No partitioning' and save your changes.
Exit the screen with the storage parameters.
On the next screen, ensure that the 'Save data' radio button after 'Activate and adjust database' is selected, then execute the conversion. You execute the conversion by choosing 'Force Conversion' in the <Extras> menu.
Next, you must correct the PARTNO indicator in table RSTSODS. To do this, call transaction RSRV and execute the test 'Consistency Between PSA Partitions and SAP Administration Information'. You can find this test in transaction RSRV under
<All Elementary Tests>
             -> <PSA Tables>
You can execute the RSRV test and repair for all converted tables at once. For further information about how to use transaction RSRV in this case, see the online documentation. You can call the online documentation by choosing the 'Info' icon.
5) Search strings:
a) Use the search string '/BI+/B*' to find the relevant entries for the DataSource, the change logs and the error stack.
b) Use the search string '/BI+/A*00' to find the relevant entries in the active tables for the DataSource objects.
SAP NetWeaver 2004s BI
           Import Support Package 13 for SAP NetWeaver 2004s BI (BI Patch 13 or SAPKW70013) into your BI system. The Support Package is available once Note 991093 "SAPBINews BI 7.0 Support Package 13", which describes this Support Package in more detail, has been released for customers.
In urgent cases, you can implement the correction instructions as an advance correction.
You must first implement Notes 932065, 935140, 948389, 964580, 969846, 975510, 983212 and 1000448, which provide information about transaction SNOTE. Otherwise, problems and syntax errors may occur when you deimplement certain notes.
To provide information in advance, the notes mentioned above may already be available before the Support Package is released. In this case, the short text of the note still contains the words "Preliminary version".
Before you implement an advance correction (if one exists and you want to implement it), see Note 875986. This contains notes regarding the SAP Note Assistant and these notes prevent problems during the implementation.

Similar Messages

  • Error when activate analytic view (join tables)-Exception during activation

    Dear guru,
    I suffered an error showed "Exception during activation" when activate a newly created analytic view.
    I used two tables, one is NASDAQDAILY, one is NYSEDAILY.
    Private attribute are "DATE, STOCK(NYSE.STOCK), STOCK_1(NASDAQ.STOCK"
    Measure are "PRICEOPEN(NYSE), PRICEOPEN_1(NASDAQ)"
    JOINS are: Left Table-NASDAQ, Left Column-DATE
    Right Table-NYSE, Right Column-DATE
    Validate is sucessfully.
    But when "Save and Activate", it gave below error.
    Kindly help me on this. Thank you so much.
    com.sap.ndb.studio.sdk.resource.deployment.bi.DeploymentException: Error during deployment
    _     at com.sap.ndb.studio.sdk.resource.deployment.bi.cv.CubeElement.processMeasures(CubeElement.java:591)_
    _     at com.sap.ndb.studio.sdk.resource.deployment.bi.cv.CubeElement.initialize(CubeElement.java:170)_
    _     at com.sap.ndb.studio.sdk.resource.deployment.bi.cv.CubeSchemaRoot.initialize(CubeSchemaRoot.java:80)_
    _     at com.sap.ndb.studio.sdk.resource.deployment.bi.DeploymentExecutor.initialize(DeploymentExecutor.java:159)_
    _     at com.sap.ndb.studio.sdk.resource.deployment.bi.CubeDimensionDeploymentExecutor.initialize(CubeDimensionDeploymentExecutor.java:78)_
    _     at com.sap.ndb.studio.sdk.resource.bi.core.impl.BiResourceImpl.activateObjects(BiResourceImpl.java:236)_
    _     at com.sap.ndb.studio.sdk.resource.repository.core.impl.ResourceImpl.activateObjects(ResourceImpl.java:868)_
    _     at com.sap.ndb.studio.sdk.resource.repository.core.impl.ResourceImpl.activate(ResourceImpl.java:727)_
    _     at com.sap.ndb.studio.sdk.resource.repository.core.impl.ResourceManager.activateAll(ResourceManager.java:166)_
    _     at com.sap.ndb.studio.sdk.resource.repository.core.impl.ResourceManager.activateAll(ResourceManager.java:202)_
    _     at com.sap.ndb.studio.modeler.job.type.activate.ActivateJob.activateObjects(ActivateJob.java:92)_
    _     at com.sap.ndb.studio.modeler.job.type.activate.ActivateJob.run(ActivateJob.java:71)_
    _     at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)_

    Hello,
    This issue is resolved now.
    The problem was with the file system space on the Unix server(on which portal is installed).
    The server administrators and the Basis team extended the disk space and issue got resolved.
    Thanks for all your inputs.
    Sonali.

  • Error when activate the Adobe forms

    Hi,
      I am getting the below error message when activate the adobe forms,and the message tells that to install a forms design tool,please tell me which tool in need to install and where i will get this tool.
    Could not start Layout Designer (see long text)
    Message no. FPUIFB086
    Diagnosis
    The forms design tool for developing the form layout could not be started; either it is not installed or there are errors in the installation.
    Procedure
    Make sure that you have the forms design tool installed on your desktop (the tool is part of the SAPGUI installation).
    Also read SAP Note 801524.
    Thanks,
    Deesanth.

    FIrstly, you have posted the question in the wrong forum. There's an entire forum in SCN only for Interactive Forms: .
    Secondly, this is a frequently asked question, especially in the Interactive Forms Forum. There's enough information there to get your query solved by searching.
    pk

  • Problem when i transported  DTP from DEV to QA

    I am facing a problem when i transported  DTP from DEV to QA   It is not in the folder were it have to be,but i can see it in RSBKDTP table of QA

    Hi,
    One info regarding DTP, Technical name will get differ from system to system through out the landscape ( Dev, QA, Prod) . So you have to search with Description of the DTP instead of technical name.
    Regards,
    Sridevi.

  • Invalid serial number when activate Creative Suit 6

    I got error
    Invalid serial number
    when activate Creative Suit 6
    Please help

    You need to contact Adobe Support either by chat or via phone when you have serial number and activation issues.
    Here are some links to help make contact:
    http://www.adobe.com/support/chat/ivrchat.html
    http://www.adobe.com/support/download-install/supportinfo/

  • ASSERTION_FAILED When Activation of Transformation

    Hi All,
    When we are trying to activate the transformation (DSO - Cube) a dump with Runtime  Error "ASSERTION_FAILED" is coming.
    We have used nearly 40 routines and 7 group rules in this Transformation
    I have searched the error and followed the suggestions from other threads, still it has not helped us to resolve problem.
    We have implemented SAP Notes 998730 and 1006658 and followed the instructions like deleting the error records from table RSTRANRULE.
    Still we are facing the problem.
    We are on SP11 (BI NW2004S).
    please help us with a solution.
    thanks in advance,
    Narasimha.

    Hi all thanks for your suggestions. I solved this by step by step reconstruction and found the cause.
    Actually the problem was with one of the mapping in transformation.
    I have done a mapping for a source field using the option Read from Masterdata.
    But the source field is not available as an attribute to the Masterdata field i used.
    Same scenario was working fine in the older 3.5 version not in 7.0.
    Regards,
    Narasimha

  • Unable to Activate a DTP of DSO

    I got this error message in the transport Log. What should I do with this DTP? Thanks!
    Error when resetting Data Transfer Process DTP_D6PGSLOAC243EV7NDXOX8ZOOS to the active version
    Message no. RSO410
    Diagnosis
    Errors arose when activating Data Transfer Process DTP_D6PGSLOAC243EV7NDXOX8ZOOS. An active version already existed before the activation.
    System Response
    Data Transfer Process DTP_D6PGSLOAC243EV7NDXOX8ZOOS could not be reset to the old active version. Since the generated objects no longer correspond to the old active version, they were reset to inactive.
    Procedure
    The old active version of Data Transfer Process DTP_D6PGSLOAC243EV7NDXOX8ZOOS can no longer be used. Remove the cause of the activation error and activate Data Transfer Process DTP_D6PGSLOAC243EV7NDXOX8ZOOS anew.

    I see now. Thanks!
    It is strange that I am still unable to transport the DSO DTP. When I am trying to transport the DSO, it diplays three messages at bottom:
    1. Object '0NL1NKATLOW79YAMAMXTDN7C7H9RVLJA' (TRFN) of type 'Transformation' is not available
    2. Object '0BTQGK5D8JHN77GFGVNHS8YJRAY38J4U' (TRFN) of type 'Transformation' is not available
    3. Object '0MATERIAL_TEXT                MBQ_600' (ISMP) of type 'Transfer Rules' is not available
    Any ideas?

  • Error When Activate Adobe Form?

    hi,
              When i save layout and come out from there and than when i am save adobe form and trying to activate form it ask me in the dialog window,
    Enter your user name and ID
    Resource     AdobeDocumentServices/Con
    User name   
    Password
    if i enter my logon id & pwd it shows me status message,
    SOAP Framework Error ; SOAP Runtime Error : CSoapExceptionTransport : HTTP Send returned with status code (100,101).
    Please try to resolve and get back to me ..
    Thanks,
    Saurin Shah

    Hi,
    Please check below link
    http://help.sap.com/saphelp_nw70/helpdata/EN/4f/a00d41921bf023e10000000a155106/content.htm
    Regards
    Jana

  • Error when activate Transformation to cube 0IC_C03

    Gurus:
    I need to activate the 2lis_03_bf_tr transformation to cube 0IC_C03, when I activate the transformation, the system indicate the next error:
    "E:In PERFORM or CALL FUNCTION "ROUTINE_9998", the actual parameter "SOURCE_PACKAGE" is incompatible with the formal parameter "DATA_PACKAGE"."
    I made changes in the routine, but the error still happens
    Thanks for your help!!!!
    César.

    It seems like you have migrated the 3.x data source to 7.0x version. And I believe you have added new info objects. In the start routine code add the new info objects to the structure "_ty_s_*_" whenever you add new fields.
    In the code in the
    "Rule Specific Types"
    "Types"
    "BEGIN OF tys_*_"
    Add the info objects.
    *Please assign any rating if you find the answer helpful*
    Edited by: ram.pch on Jul 2, 2011 6:02 AM

  • Error when activate Info Object

    Hi everybody.
    Maybeyou can help me.
    I made a transport to the production system.
    The system was disconnected when i made the transfer. The transportation has fail, however, has generated objects in the target system.
    In particular I have a problem with a standard InfoObject (0GN_BWBEOTY).
    This object was transported to Production environment but has been inactive.
    I can not activate it.
    I used the transaction RSRV InfoObjetct, to validate integrity and I get the following errors:
    CL_RSMD_RS_0GN_BWBEOTY Class, Method IF_RSMD_RS_ACCESSS ~ get_text.
    "RSBWBEOTY" is not defined in the ABAP Dictionary as a table.
    I tried to move into a new transport order, the only InfoObject but I get error code 12.
    Someone has happened, can you give me ideas? what can i can do?
    Thank you very much for help me!

    Hi!
    Thank you for your help.
    I still have the problem .
    I can not verify whether the information in master data, since the transported infoObjetct not appear in the RSA1 (production) and can not display the master data RSDMD trx.
    And i can not activate through RSDG_IOBJ_ACTIVATE.  I get the error message detailed in the first post.
    This is the transport log:
           |   Program terminated (job: RDDEXECL, no.: 15123000)                                                                               
    |      See job log                                                                               
    |   Execution of programs after import (XPRA)                                                                               
    |   End date and time : 20110519151246                                                                               
    |   Ended with return code:  ===> 12 <===                                                                               
    |   ######################################
    This is te JOB Log:
    19.05.2011
    15:12:31
    Job started
    00
    516
    S
    19.05.2011
    15:12:31
    Step 001 started (program RDDEXECL, variant , user ID DDIC)
    00
    550
    S
    19.05.2011
    15:12:31
    All DB buffers of application server SFESA-20 were synchronized
    PU
    170
    S
    19.05.2011
    15:12:36
    Internal session terminated with a runtime error (refer to ST22)
    00
    671
    A
    |19.05.2011 |15:12:36 |Job cancelled      
    Any ideas?
    Edited by: Javier Sarrelli on May 20, 2011 8:14 PM

  • Error when activate a SAP source system

    Hello Experts,
    I have an issue when I try to create a new SAP source system but I cannot complete this operation because a Timeout error occurs when the system made the destiny verification, the source system can be created but not activated, I already create the RFC connection and they are OK, I add the new logical system of the source system in the configuration (SBIW) in the general settings,and the data source tree is show succesfully and sems to work OK and the data sources seems to be OK too.
    In the RSA1 transaction, go to source systems tree, choose the SAP source system called: "conexion a dev 200" -> right click and choose activate and the error occurs.
    I have a Myself source system already created and activated, I cannot find the source of the problems thata cause the timeout error in the new source system.
    Thank you vey much in advance,
    Niurka

    Yes, I try ti use the create automatically option first but it doesn't work, because says that we system already exists because here exist a myself source system with an RFC to R/# ( I don't know why), so I must use the manually creation option, I put the logical system, and all the requeriments of the screem. The system create the source system but when I try ti activate it, it is impossible to do it....!
    I hope that you can give some tips or solution for this issue,
    Thanks!

  • Error when Activate an DSO data

    Hi All,
    I can't activate a load of a DSO. When I try to activate it, the following message appears
    Request 101.341 is currently being read from data target ZSR_O_01
    The problem is the DSO doesn't have any Request in the tab Requests with this Number (101.341).
    If I do right click on DSO -> Delete Data, the same message appears.
    If I try to Delete data from DSO by Process Chain, The Process Chain fail. With the following messages:
    - Request 101.341 is currently being read from data target ZSR_O_01 (same before)
    - Lock NOT set for: Deleting Data Completely from an InfoProvider
    So, I can't load that into the DSO or Activate it if I do the load mannually.
    Thanks in advance, Federico

    Once go to SM12 and chk the locks there...
    And also chk in RSRQ and give ur request number and execute there and chk the status of the load...whether someone deleted that request from ur ODS
    we can't activate an ODS when some data is being read from the same...
    so chk whether any load is going on in RSMO for that request..if there u can turn the status to RED and activate the request..
    chk in sm37 is there any active job for that reading load is S u have to kill that and acitvate...
    what is this infoprovider ZSR_O_01?
    is ur ODS data is being updated to this anytime...???
    rgds,

  • Error when Activate an DataStoreObject while transport

    Hi experts:
    I Try to transport an DataStoreObject From QAS to PROD.
    1. I transport all Infoobjects from DEV - QAS . PROD OK.
    2. I transport an ODSO  from DEV - QAS OK.
    3. When y try to transport to PRD y have the folowing error:
    Error / Warning in progr.activación Dict., Detailed log> Detail
    By detail (or the path details -> Log -> Turn Dictionary ABAP) will receive full details of the log module activation.
    I dont know where do this.
    I need activate this details log error.

    Hi,
    Yes of course i see the log in se09 and the first error I found is as follow.
    Error / Warning in progr.activación Dict., Detailed log> Detail
    Failed attempt to execute the SQL statement.
    Table / BIC/B0000314000 (failure to adapt the database).
    Table / BIC/B0000314000 could not be activated.
    Then follow otrers error.

  • Error when activate a new InfoCube

    Hi All,
    I have a big and mysterious error. I made some InfoCubes (more info), but when I transported them into the Q system, the transport has error code 8. After that I deleted those inactive cubes from the Q system and recreated them, but the system could not activate those cubes, the error message is the following:
    "Object ZXXXX could not be activated"
    The long texts are the same of transport's:
    "Error/warning in dict. activator, detailed log  --> Detail"
    "Activate table /BIC/DXXXX1"
    "Enhancement category for table missing"
    "Enhancement category for include or subtype missing"
    "A table called /BIC/DXXXX1 exists in the database"
    "No active nametab exists for /BIC/DXXXX1"
    "Termination due to inconsistencies"
    "Table /BIC/DXXXX1 (Statements could not be generated)"
    "Error number in DD_DECIDE (9)"
    "Flag: 'Incorrect enhancement category' could not be updated"
    "Table /BIC/DXXXX1 was not activated"
    What is the reason of this error? How can I fix them?
    Thanks for your help!
    Tamá

    Hi Ankit,
    Thanks for your reply.
    What do you mean of our BIC table deleted?
    I would like to create a new InfoCube with same name which deleted earlier, but I cannot? Why? What I have to do to before create the cube second time? I just would like to recreate the deleted cube, nothing else...
    Tamá

  • Error when activate standard structure

    Hi guru,
    i've a serious problem about the activation of a standard structure,the check (for error) pass without problem, but when I want to activate it there is this exception :
    CALL SCREEN (not modal) in modal dialog box not allowed
    Anybody can help me ?
    Thanks.
    Angelo.
    Edited by: Angelo Abbasci on Jan 13, 2009 2:52 PM

    HI,
    I try but cant do much as it is a standard structure..
    You could try to change the structure save it. The n execute the transaction again and try to activate..
    You added the field with Access Key or through Append structure..?
    If you get the error again then try and copy paste the error  report important parts..

Maybe you are looking for

  • Windows 7 setup can't create or see partition

    Hi all, I am trying to install Windows 7 x64 SP1 on my late 13 MBP.  I used BC assistant to mount the iso on a 8gb usb.  I have used two different iso files, one from digital river and one from torrents (its not a 'cracked' one or anything, I just co

  • No images in portlets, directly or using PTHTTPRequest

    The basic problem is that I cannot see images in a portlet. Even if I create a simple html page with an image tag! If I create a remote web server with the spec, http://www.google.comand a web service with the spec http://www.google.com/search, I can

  • SQL Developer version 3.2.20.09 and Oracle Diff

        It is my understanding that from this version onwards this functionality would be available without licensing but it is not available for use actually, maybe I am doing something wrong or just "bad info" ? I downloaded jre version 32 bits. Thanks

  • Application 11i will include Financial ( GL, AR, AP, SO, PO, INV)

    Hi, Can I find Financial( GL, AR, AP, SO, PO, INV)After install application 11i? Or I need to install ERP CD?

  • Can I switch back and forth between DSL ethernet modem and AirPort ?

    I use Earthlink DSL connected direct to my iMac by ethernet cable from my modem and the service is very good . . . ever since I installed Leopard I noticed up in the top menu bar that AirPort is ON and usually shows 4 or 5 names listed and only 2 or