ODS activation process random error in process chain

Dear All,
In my process chains, the process of ODS activation is sometimes in error. It is a random error, it is not always the same ODS and process chain.
The message error is DBIF_RSQL_SQL_ERROR.
I noticed that, on right-clic -> Change variant to the process of ODS activation, I have the following message:
"Not all infoobjects can be read".
For information, in the processes of activation of the ODS, the unique parameter is the name of the ODS to be activated.
Thank you very much for your help,
Arnaud

Hi......
Check SAP Note : 631668......
According to this note :
Symptom
This note applies only to BW systems under ORACLE.
Loading data into InfoCubes terminates with an error: ORA 60, "deadlock detected". The monitor log displays the entry "CALLER 70 missing" and the request is flagged as red.
Other terms
Caller 70, DEADLOCK, ora0060, bitmap, indexes, DBIF_RSQL_SQL_ERROR
CX_SY_OPEN_SQL_DB
Reason and Prerequisites
In SAP BW, there are two fact tables for including transaction data for Basis InfoCubes: The F and the E fact table.
Unlike the E fact table, the F fact table contains the information about the request from where the transaction data originates.
Therefore, transaction data is always written to the F fact table and the package dimension contains the request to which the loaded data belongs.
Using 'Request compression', the system reads the data of a request from the F fact table and writes it to the E fact table without request ID and compresses.
For good reporting performance, you must keep only the data of a few requests in the F fact table since the F fact table is partitioned according to the key of the package dimension and the data of all requests is always read. Therefore, you should compress the request if you are sure that the loaded data is correct and that you no longer have to delete the request.
When you install BW on an ORACLE database, BITMAP indexes are created on the fact tables to improve the reporting performance of the system.
These have a negative effect on the performance when loading data and the deadlock mentioned above (ORA 60) may occur as a result. The DEADLOCKs occur during parallel insert operations because ORACLE does not support a blocking concept for BITMAP indexes at data record level.
Solution
Before loading movement data, delete secondary indexes from the F fact table and create them again after the loading process. If the F fact table is small, no performance problems occur.
Alternatively, you can also load requests serially into InfoCubes by first loading the data only into the Persistent Staging Area (PSA) and then serially into the InfoCube. If you use the data transfer process (DTP) for loading in BW 7.0, this option is no longer available.
NOTE
           This avoids the deadlock problem. However, you should note that after some loading processes, it is necessary to reorganize the BITMAP indexes because they degenerate very heavily and, therefore, the read and writing performance deteriorates dramatically.
Hope this helps you.....
Thanks==Points as per SDN.........
Regards,
Debjani..........
Edited by: Debjani  Mukherjee on Sep 29, 2008 3:14 PM

Similar Messages

  • Short dump while activating process chain

    Please let me know the cause of short dump while activating process chain.. when trying to activate local process chains in metachain it is causing dump

    Can you share more details about error.
    Have you done any changes to local chain? or is this is new chain?
    Try to remove meta chain from schedule, later activate your local chain and meta chain.
    schedule your meta chain.

  • Errror when activating process chain

    Hi All,
    Geeting the error while activing process chains in Quality.
    Error is *'Node Characteristic 0classnum is not entered as hierarchy characteristic for 0material*
    can any one help on this.
    Thanks in Advance.
    Srinivas

    Hi
    This is not advisable to activate a process chain in quality directly. You should do it in development and then transport it across.
    This error is realated to hierarchy. Do you have a hierarchy load attached to this chain?
    Check the hierarcy first. Then activate the chain.
    Cheers
    Chanda

  • Activation Process Chain, Info Objects, Transformations

    Hi Experts;
    Is there any function or abap program, activates inactive Process Chains, Info Objects and Transformations.
    Please Advice
    Regards
    Bilal

    Hello,
    Find below some activation programs used in BI.
    RSDG_CUBE_ACTIVATE      Activation of InfoCubes
    RSDG_DODS_REPAIR      Activation of all ODS Objects with Navigation Attributes
    RSDG_ODSO_ACTIVATE      Activation of all ODS Objects
    RSDG_IOBJ_ACTIVATE      Activation of all InfoObjects
    RSDG_IOBJ_REORG      Repair InfoObjects
    RSDG_MPRO_ACTIVATE      Activating Multiproviders
    RS_COMSTRU_ACTIVATE_ALL      Activate all inactive Communication Structures
    RS_TRANSTRU_ACTIVATE_ALL      Activate Transfer Structure
    RSAU_UPDR_REACTIVATE_ALL      Activate Update Rules
    RRHI_HIERARCHY_ACTIVATE      Activate Hierarchies
    SAP_AGGREGATES_ACTIVATE_FILL      Activating and Filling the Aggregates of an InfoCube
    RS_PERS_ACTIVATE      Activating Personalization in Bex(Inactive are highlighted)
    Programs for activating process chains and Transformations have not been delivered by SAP.
    Regards,
    Pratap Sone
    Edited by: Pratap Sone on Jul 19, 2010 8:39 AM

  • ABAP Routine for Deleting and creating index for ODS in Process chains

    Any pointers for the ABAP Routine code for deleting and creating index for ODS in Process chains.

    Hi Sachin,
    find the following ABAP code to delete ODS ondex.
    data : v_ods type RSDODSOBJECT.
    move 'ODSname' to v_ods .
    CALL FUNCTION 'RSSM_PROCESS_ODS_DROP_INDEXES'
      EXPORTING
        I_ODS = v_ods.
    To create index:
    data : v_ods type RSDODSOBJECT.
    move 'ODSname' to v_ods .
    CALL FUNCTION 'RSSM_PROCESS_ODS_CREA_INDEXES'
      EXPORTING
        I_ODS = v_ods.
    hope it helps....
    regards,
    Raju

  • How to automate selective deletion of ods in process chain

    Hi,
    How can we automate selective deletion of ods in Process chain. I tried with the proceedure. Using T-code "delete_fact" I gave selection parameters and Name of the program and saved this as variant and gave the same program and variant in Process cahin. But it is not deleting data. So plz guide me whether I have missed anything in this proceedure.

    Hi purushottam,
                           you have to give to program variants in the process chain for data deletion to take place. in the first program variant include the rsdrd_delete_facts as program name and in the program variant give a variant for your infoprovider selection.
    Now again select another program variant and include the name of the program which you get after selecting the infoprovider name and  the generate selection program  option in the "program for deleting selected entries from the data target" screen " and press execute.
    again give another variant for your field selection.
    now try execute the process chain.

  • Load data from PSA to ODS in Process Chain

    Hi All,
    I want to load the data from PSA to ODS. I am using 3.5 Version. I have created the Info Package to load the data from R/3 to ODS.
    I just want to load data in the following Condition
    1. Need to load data from R/3 to PSA.
    2. Need to load data from PSA to ODS.
    I need to include this two Info Packages in Process Chain.
    I dont find any option to load PSA to ODS through Process Chain..
    Pls Suggest.
    Thanks,
    Ram.

    Hi Ram,
             You can keep the settings in the infopackage to load data from R/3 to PSA (by giving the settings as PSA and then into datatargets). Specify the option Update in all data targets for which the Rule Exist unde rthe Data Targets Tab.
    Then in Process Chian, there is an option by the name REad PSA and Update Datatarget under the node Load Process and Post-Processing in the Process Types.
    In the varaint, specify the infopackage name and save the varinat and uise it in the PC.
    Regards
    Sunil

  • Error while activating Process Chains

    Hi all,
    while activating the Process Chains, i am getting the following error "Job BI_PROCESS_PSAPROCESS could not be scheduled. Termination with returncode 8"
    when i double click on the error msg, i got the following help msg: "
    <i>Message no. RSPC065
    Diagnosis
    Program RSPROCESS is to be scheduled as job BI_PROCESS_PSAPROCESS under user ALEREMOTE.</i>
    Can any one please show some way to solve this problem? please do this favor, i have been suffering with error for a long time.
    Points will be given
    Thanks
    Ganesh

    Hi,
    Just analyze the error message that you get while activating the PC, don't give any server name.If you are trying to run process chain using Flat file, it won't work,
    and you should have source system R/3 or you have own datasources in BW system itself at that toime you can use PC to extract data. If your source system is Flat ile, it won't work. other wise you should place your flat file in application server, using AL11 tcode.
    <b>OSS : 511475</b>
    <b>Symptom</b>
    You cannot schedule or perform any batch jobs with the BW or source system background user.
    The error RSPC 065 occurs in the process chains:"Job could not be scheduled, termination with return code 8"
    <b>Other terms</b>
    RSPC065
    <b>Reason and Prerequisites</b>
    The user type is
    "CPIC" up to 4.6B
    "Communication" as of 4.6C
    This user type may not execute or start any batch jobs, irrespective of the user authorizations.
    <b>Solution</b>
    Set the type of background user to
    "Background" up to 4.6B
    "System" as of 4.6C
    This user type corresponds to the "Communication" type and may also perform background functions.
    Through the Customizing, the BW user is automatically created by mistake as a communication user.Depending on your BW system release, you can solve this problem as follows:
    BW 2.0B
               Import Support Package 24 for 2.0B (BW2.0B patch24 or SAPKW20B24) into your BW system. The Support Package is available once note 456551 with the short text "SAPBWNews BW 2.0B Support Package 24", which describes this Support Package in more detail, has been released for customers.
    BW 2.1C
               Import Support Package 16 for 2.1C (BW2.1C patch16 or SAPKW21C16) into your BW system. The Support Package is available once note 456566 with the short text "SAPBWNews BW 2.1C Support Package 16" has been released for customers.
    BW 3.0A
               Import Support Package 8 for 3.0A (BW3.0A patch08 or SAPKW30A08) into your BW system. The Support Package is available once note 452632 with the short text "SAPBWNews BW 3.0A Support Package 08" has been released for customers.
    <b></b>

  • Error while activating process chains from Business Content

    Hi All,
    I am trying to activate the SAP Business Content Process Chains, which load data to 0PM_DSO2 in Plant Maintenance Area -
    1.Delta Upload : MTTR / MTBR   (0PM_DELTA_P02)
    2.Initialisation  :   MTTR / MTBR  (0PM_INIT_P01 )
    And they are failing with the error
    "Object  0PAK_BZJNGI4SYTTJM5DXY8IPMHB0C could not be found in version
    Message no. RS_EXCEPTION280"
    "Message Text
    Object  0PAK_EYQGZ09K9SFFUMOFRQ0730LJ0 could not be found in version
    Technical Data
    Message type__________ E (Error)
    Message class_________ RS_EXCEPTION (Exception Messages)
    Message number________ 280
    Message variable 1____ 
    Message variable 2____ 0PAK_EYQGZ09K9SFFUMOFRQ0730LJ0
    Message variable 3____ 
    Message variable 4____  "
    In the collected objects, these two infopacks are not present also.
    Can you please let me know how to proceed?
    Many Thanks in Advance,
    Vineeth

    Hi
    Make sure these 2LIS_17_I0NOTIF and 2LIS_18_I0NOTIF datasources are being installed.
    Check these links.
    http://help.sap.com/saphelp_nw70/helpdata/EN/e7/082888ca2f994794986448568aec2d/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/EN/e7/082888ca2f994794986448568aec2d/frameset.htm
    Chandu.
    Edited by: Chandu on Jan 22, 2009 2:24 PM

  • BI Content 7.57 SP4 Activating Process Chain

    Hi,
    I am trying to activate a process chain from BI content . My source system is ERP 6.0. While collecting objects for activating this Process Chain BW gives an errors. It says some of DTP and Transformations are missing. I have put two of the errors are at below.
    When i search these missing objects on the BI content these objects are not exist. Also on the BW system they are not exist. I could not find any solution for this problem.
    Can you please show me a way for solving this. I am stuck on this.
    I am trying to activate following Process Chain.
    Technical Name: 0HCM_FULL_P0EMPLOYEE
    Name : Load Data for InfoObject 0EMPLOYEE
    Error 1:
    Shadow object DTP_DYF4USYQ4EYMWILRMUGLXW2KG cannot be expanded; chain is inconsistent
    Message No. RSPC142
    Diagnosis
    You want to determine the objects that are source system-dependent for shadow object DTP_DYF4USYQ4EYMWILRMUGLXW2KG so that they can be inserted in the modified version of the process chain or of a referencing process. This was not possible.
    Error 2:
    Object DTP_ETKRN0DQM7QVOBZSVBC9J61HB (Data Transfer Process,DTPA) could not be collected for object 0HCM_FULL_P0EMPLOYEE (Process Chain,RSPC)
    Message No. RSO296
    Diagnosis
    You have collected objects in the BW Metadata Repository. Associated objects for the object 0HCM_FULL_P0EMPLOYEE of type Process Chain,RSPC have also been collected. Object DTP_ETKRN0DQM7QVOBZSVBC9J61HB of type Data Transfer Process,DTPA was among these objects. This object
    DTP_ETKRN0DQM7QVOBZSVBC9J61HB of type Data Transfer Process,DTPA, is not, however, available in the Metadata Repository.
    System Response
    Object DTP_ETKRN0DQM7QVOBZSVBC9J61HB of type Data Transfer Process,DTPA is ignored in further collections. The links for object 0HCM_FULL_P0EMPLOYEE of type Process Chain,RSPC are incomplete. This may result in not being able to activate this object.

    Hello experts
    I am not able to find support package name.
    When i click on package level button from SAPM tcode
    BI_CONT     703     0000     -     Business Intelligence Content.
    Is my BI_CONT add-on installed successfully?
    And also i am not able to see BI_CONT in imported packages list.

  • BI Admin Cockpit - Problem in activating Process Chains

    Hello,
    We're trying to activate the content for BI Admin Cockpit.
    While activating the process chains, we get a "red" message as
    mentioned below.
    "Object '0PAK_5JTN7F5HTP45CGZ04PQTMCNTI' (ISIP) of type 'InfoPackage'
    is not available in version 'D'
    Message no. RSO252"
    OSS message 966131 suggests that "The InfoPackages mentioned are shadow
    InfoPackages and the message is unnecessary because there should not
    have been a search for the package at all." and we should apply the
    correction (as part of SPS10) for this purpose.
    We are currently on SP11 but still having the same issue and hence not
    able to activate the process chains for BI Admin Cockpit.
    Thanks for your help with this.
    Ashish

    Hi Ashish,
                   We had the same issue. You must have one of following:-
    BI_CONT 702, Support pack 7
    or
    BI_CONT 703, Support Pack 4
    Once you get either of above, you will not have that problem. But you might have some problem in process chains because of roll up of aggregate in delta PC. Just ignore that and you will be OK...( This problem is because there is no agg. defined and PC is trying to do roll up..which make no sense and hence there is error)
    Also refer to OSS note 965386
    This is my first answer to SDN...so assign my first points..:)
    Thanks,
    Anil

  • Activating Process Chains in QA System

    Hi All,
      i have transported objects from DEV to QA. all the objects in the QA are in active state but the process chains are not activated and they are in grey state. how to activate the process chains manually. are there any pre defined programs to activate the process chains.
    Regards

    Hi,
    try to do the following..
    Got to RSPC and there select ur chain by double clicking it, next go to the menu PROCESS and there u have option called check and activate . So this option will first try to check the consistency of ur chain and then if no problem exists it will activate it.. and in case if prob does exists it will highlight the process where it encountered teh errors..
    Hope this helps..
    Regards,
    Pankaj

  • How to load delta to 2 target ODS 's from a single ODS using process chains

    Hi BW Gurus
    I am having a current ODS based on 2LIS_02_SCL, deltas also are working fine for it.
    our  requirement was based to have 2 target ODS on this existing ODS by using export generate datasource.
    I have to build a process chain that should enable us to load delta in our target ODS.
    Earlier manually for DEV purposes ,i was using the Update data into data targets from the source ODS, this was enabling us to load deltas. But to automate this process we will require a process chain.
    Finally , is there any process type in process chain for " Export generate Datasource".
    please suggest a good methodology for this scenario.
    Thanks in advance.

    Hi Ashfaq,
       Loading from ODS to CUBE is same as loading from datasource to ODS only.
    1. Create export datasource.
    2. Create update rules from ODS(export datasouce) to CUBE.
    3. Create infopackages(if you dont want to use generated once).
    4. include infopackage in process chain to load fromODS to CUBE.
        Intialize first manually and change settings in process chain infopackage to "Delta".
    5. You can append/enhance existing process chain(loading from datasource to ODS).
    Hope it Helps
    Srini

  • Problem in activating Process chain in Quality after transport

    Hi All,
    We have moved a set of process chain to Quality system.
    When tried to activate the Process chain it is showing error in DTP.
    The DTP name is same as in the Dev system.
    So, we tried moving the DTP alone in another transport request.
    Still the error exists. We also tried moving the process chain again.
    We had tried importing only the structure and also the entire flow again.
    Nothing worked.
    Please suggest some solution.
    Thanks in Advance,
    Geetha

    Thanks for yor reply.
    Suman,
    I have checked the Object Changeablity now in Dev system, I found it like Not changable for DTPA.
    The DTP from DSO to Cube is fine, but we have problem with the DTP from DataSource to DSO.
    Also, in the dev system when i clicked on Object Changeablity I get a popup like "System can be changed; settings not necessary".
    Please suggest me like what must be done.
    Prashantk & Arvind,
    We imported the Process Chain along with the DTP first and we faced the problem.
    So we imported the DTP alone again, but still we had the problem.
    Again we imported the Process Chain after importing the DTPs.
    So what i feel is DTPs must be there in the Quality, but why we have the problem persisting.
    That too only for DTP from Data Source to DSO but not for the DTP from DSO to Cube.
    Regards,
    Geetha
    Edited by: Geetha Devi Ramalingam on Jul 12, 2011 9:43 AM

  • Selectively deleting load from ODS using Process Chain

    Hi All,
    I have a requirement in which I have to delete the last load of the current month if any and leave the load of the last month untouched which has to be done using process chain.
    I will try to elaborate the condition required like say we have a data for June in the ODS already (date 10) and when the load for July will come it will not touch the June data but on 2 July the load of first July will be deleted without touching the load from June 10. (The PC will run for the first 10 days of the month).
    How can this be implemented, There seems to be some FM for this but are there any other method by which the same can be implemented without much use of ABAP.
    Any relevant suggestion would be awarded points
    Regards,
    Samved

    Hi Bhanu,
    Thanks for the reply.
    I tried to generate the program but that can be used for selective deletion from the ODS i think soo.
    But my requirement is basically to delete the complete request from the ODS and not any selective deletion and at the same time I cannot use the complete deletion option as that will delete the request from the last month also.
    Are there any optioin at the level of Info package which can be used for these type of deletion.
    Regards,
    Samved

Maybe you are looking for