Update rules Activation Problem

Hi,
Iam getting the error while transporting the update rules to production,saying error mesage,
  Start of the after-import method for object type R3TR UPDR (Activation Mode)
  Update rules 4AR6MO7P6M428KB2RPA65E9EX read in version M
  Error when activating update rule 4AR6MO7P6M428KB2RPA65E9EX
  Activation of the update rules for ZCG_O15  ZBW_CRTDN
  IC=ZCG_O15  IS=ZBW_CRTDN error when checking the update rules.
from Dev to QA successfully transported and data hasbeen loaded with out any issues,
I didnot changed any thing in ODS,I Just  created the new infosource with only two characteristics and created the update rules direct updating,with out any routines.
I activated the update rules in Dev couple of times and transported to PD,but every time it is giving same error,there was no issues upto QA,
Please suggest anybody how to resolve this issue.
Thanks
BI USER

Hi
Thanks for your replies,
Iam checking from transport request error log,iam getting error message as I mentioned in my question,
iam not getting detail information on error log,Update rules are available in PD system but in inactive state,
I did the Update rules check it is giving message 'no erreors found in update rules'.
I collected all dependent objects from transport collecter,still same error,I tried from Program
RSAU_UPDR_REACTIVATE_ALL,but my PD system is in not modifiable state.
Thanks

Similar Messages

  • RSAU466 : Update rule Activation error

    Hello Guys,
    We upgrated BW3.5 to BI7.0 SP13
    We're facing problem on Update Rule activation
    the message is an RSAU466, I have locked for solution on service sap, they suggering to run SP13, but we're already on SP13
    Any one have an idea ?

    I recreated the update rule

  • ODS update rule activation

    Hi,
    Can some help me out for ODS (0SD_O03) update rules activation,I am not finding any thread related to this issue.
    Please donot suggest for RSAU_UPDR_REACTIVATE_ALL prg.It is for only Infocube update rules activation
    Thanks,
    Praveen

    Hi Praveen,
    RSAU_UPDR_REACTIVATE_ALL program is not only for InfoCubes update rules activation. You can activate any update rule through this program.
    In program
    S_UPDID give updaterule technical name such as(CONA85AOASV0HQ3B8I6E2EBJM)
    S_TARGET give 0SD_O03
    S_SOURCE give infosource name

  • Formulas in Update rule active Program

    Hi,
    I would like to know whether is it possible to see the formulas applied in the update rule active program generated .
    for exampkle: (IF TRANINDIC = 0, NET_VALUE,0).....This formula has been applied for a specific kefigure in update rule.
    I just wanted to see the above formula in the update rule activer progrma...so is it possible to see....if it is possible please let me know some tips and tricks to check the same.
    Thanks
    Sujan

    Hi,
    In rsa1 open upadate rules. and in the main menu. check for option generated program under menu options.
    you can get the program.

  • Update Rules Activation

    Hi All,
    I was told to activate Asset Accouting in BI Content. But to my ease, most of the data targets, info objects and data sources have been activated before hand. However the problem is the Update rules are not yet activated. If I try to select the Update Rules under each data target and try to install them...the system prompts a message "the delivery overwrites the selected objects. Do u want to overwrite the objects?". Can anyone please guide me how to activate just the update rules.
    Thanks,
    Regards,
    Gautham

    HI,
    You can use teh program suggested by tinkugeo to activate the inactive update rules, present in the system.
    Or, if you are installing from business content, the message it displays means that if you install the business content update rule(or any objetc for that matter)
    and it has been installed and used earlier, and due to some reaason is inactive,
    the business content installation will overwrite thoose changes and give you just the standard content.
    So, if you are sure, taht there are no changes you can install the business content update rule, else use the program
    and if the rule is not present in the system, and you are getting this message, its just a warning, ignore it and continue.
    Hope this helps
    Shilpa

  • Update Rules active error

    Hi all:
    I had add a new key infobject to an existing ODS (the ODS is empty) and then I active the ODS, all runs properly. Now I modify the update rule to fill the new added infoobject with a constant. When I try to active the update rules, the system returns RSAU206 error. No routine has been created for InfoObject & (data field: &) but the infoobject hasn´t routine. Can anyone help me?
    Thanks in advance
    Abel

    HI Diego:
       I just checked one by one all routines in update rules and all of them are rights. I try to display activated program ( in extras menu) and itsn´t appear. This is not the first time happend, sometimes when I add a new infoobject to an existing ODS I have problems to active the update rules. The only way taht I know is delete and make again the update rules.
    Thanks

  • Update Rule Routine Problem

    Hi
    i have wriiten a update rule routine.
    in that routine i am fetching comp code ,GL Acct. from SKB1 table and match those records wth Data Package records.
    Data Package has both Open and Closed items. so i need to match the Comp Code and GL Account which i have fetched from SKB1 with Data Package Comp Code and GL account which records will be matched they will go to Target ODS otherwise Delete from Data Package.
    But data is not coming properly in Target ODS.
    i have debug the routine and found , there are 10 records(Comp Code + GL Acct.) has been fetched from SKB1
    and Data Package has Total 416 Records. Only 20 Records has been gone to Target ODS while I have seen the 216 Comp Code and GL Account combination has been successfully matched with 10 Records of SKB1
    Below is the code in Start routine.
    Note: Data Package has Multiple Records for a Combination of Company Code and GL Account which is present in SKB1.
    How can i resolve this problem.
    ********Logic to Fetch Open items GL Account**************
    *Fetch data from SKB1*********
    SELECT /BIC/ZMCFBUKRS
           /BIC/ZMCFSAKNR
           FROM /BIC/AZOCFSKB100
           INTO TABLE TB_ZOCFSKB1
           FOR ALL ENTRIES IN DATA_PACKAGE
           WHERE /BIC/ZMCFBUKRS = DATA_PACKAGE-COMP_CODE
           AND  /BIC/ZMCFSAKNR = DATA_PACKAGE-GL_ACCOUNT
           AND /BIC/ZMCFXOPVW = 'X'.
    ***Fetch records from FI GL Data Package which match with
    ***internal table TB_ZOCFSKB1
    LOOP AT DATA_PACKAGE INTO WA_DATA_PACKAGE.
    READ TABLE TB_ZOCFSKB1 INTO WA_TB_ZOCFSKB1 WITH KEY
    /BIC/ZMCFBUKRS = WA_DATA_PACKAGE-COMP_CODE
    /BIC/ZMCFSAKNR = WA_DATA_PACKAGE-GL_ACCOUNT
    binary search.
          IF sy-subrc ne 0.
            DELETE TABLE DATA_PACKAGE FROM WA_DATA_PACKAGE.
          ENDIF.
    ***Clear Work Area****************
          CLEAR WA_TB_ZOCFSKB1.
          CLEAR WA_DATA_PACKAGE.
        ENDLOOP.
    ***Refresh internal table*********
       REFRESH TB_ZOCFSKB1.
      ENDIF.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    Edited by: AtulMohan Mishra on Feb 9, 2011 11:22 AM

    Hi,
    It is very important that you SORT the internal table before you do a READ with Binary Search.
    SORT TB_ZOCFSKB1 BY /BIC/ZMCFBUKRS /BIC/ZMCFSAKNR.
    You are sure to miss results unless you do.

  • Urgent....Transported Update rules active version but still not active....

    Hi Gurus,
    i have changed a datasource and an <b>ODSA</b>
    and this <b>ODSA</b> which also acts as a datamart to <b>ODSB</b>
    so i have transported, transfer rules, transfer structure, infosource, update rules of <b>ODSA</b> and also the
    update rules of <b>ODSB</b> as well
    And before realsing the request into quality i have replicated the datasource from R/3 as well and then realsed this request to Quality everything is active like transfer rules, infosource, transfer structure
    <b>ODSA</b> update rules
    But the <b>ODSB</b> update rules are not active kindly tell how to make them active.
    so again i have regenerated the export datasource and then again i transported only update rules of
    <b>ODSB</b>.
    but still the update rules are inactive, kindly someone guide me how to make them active
    as i have to send this to production which is having 4 years of historical data so please kindly
    help me.
    thanks and regards
    Harish

    Hi A.H.P, vishvesh, anil, and buvanna
    thankyou guys for your info and support i tried all that u have said
    except activating them manually...as it is urgent i am going with manually activating
    and vishvesh i could do check the update rules by basis help. thanks for that
    A.H.P i have manually activated the update rules its working fine, so  i am praying that everything should be fine in production as i have requested to have permissions to activate in prd as well
    thankyou very much for all the support.
    i am relieved that i have at last solved it
    thanks and regards
    harish

  • Updates rules activation triggers dump message type X

    Hi,
    In an existing update rule, I am trying to add a field (key figure=> characteristic (source)
    after I activated the update rules a shot dump is triggered
    "Message type X"
    message class RSAA
    Number 108
    trigger location
    %_T005N1
    Module Name Instantiate
    called function :
    RSAU_GET_CUBE_TIME
    I have already done some consistency test about the infocube in RSRV, but don't dind a clue for the moment.
    any help would be grateful
    John

    Hi
    Try to run standard program RSAU_UPDR_REACTIVATE_ALL.
    Thanks
    lokeshM

  • Update rules activation giving dump

    Hello
    I have inserted three new characteristics in already created cube and tried to activate the update rules but it started giving dump error.
    To get back to original conditions, I have deleted newly inserted infoobjects but while activating update rules it is still giving dump error.
    Can any one help with this issue?
    there is no syntax error.

    Hi abhishek,
    First delete the contents of the cube , and then delete the inserted characteristic. Now, you will be able to delete the new characteristics.
    Regards,
    Krishna.

  • Update rules - Activation error - in cube 0PAPA_C02

    Hi All,
    When i am activating the update rules of 0PAPA_C02 cube, i am encounting the following error for key fig "Headcount Change FTE Employee".
    Empty or invalid formula 8RFPFLULBJGBAO07IDMZGMPXR.
    Please let me know your thoughts.
    Thanks & Regards,
    Eswari.

    Hi,
    And also make sure that <b>all</b> target fields has proper maapings. i.e either a direct assignment with source field,or routine or formula or constant. Some times sytem shows a routine as update method but blank routine. It happens after,when you include a field to data target or coping the update rules.
    Most of the time, you can solve this type of error by studing very carefully the existing mappings(routines,formulas).
    With rgds,
    Anil Kumar Sharma .P

  • Update rule activation......

    Hi,
    I have added one of the fileds in ODS.  This ODS gets data from 6 ODS.
    All the update rules got deactivated.
    Any reason why?
    what we have to do ?
    Will all the activation of all the update rules need to get transported again?
    Thanks & Regards,
    Jeetu

    Hi,
    BW don't know if/how this field should be updated from 1 or several of the 6 ODS'es. Therefore the update rules are inactive and you have to activate them AND updatethe new field if you want or set it to initial if you don't want to update it.
    And yes, you should then transport this.
    Kind regards
    /martin

  • Message RSAU466 when update rules activation

    Hi everybody,
    I did some corrections in an ABAP routine in update rules. When I try to activate them this message appears :
    Message no. RSAU466
    Diagnosis
    When generating the update program for data target XXXXX, InfoSource YYYYY, a syntax error occured in row 1.980.
    System response
    The update rules cannot be activated.
    Procedure
    If the error message Incorrect logical expression. is cut off, do the following to get the complete error message:
    Go into the update rule maintenance, choose Extras -> Display Activated Program and carry out a syntax check there. You can then find out what the error was.
    I've tried to display the acitvated program but this message occurs : Unable to find a tool to process the request
    I don't want to delete and recreate my update rules because thes are very complicated and it's very risky.
    Any idea ?
    Edited by: maredami on Jun 11, 2010 1:55 PM

    Thanks for your help !
    RSAU_UPDR_REACTIVATE_ALL doesnt work (No message exists).
    I've already seen these notes but we don't want to import support packages...
    I've found the generated program of the update rules (GPxxxxxxxxxxxx) and at the line 1980 that is wrote :  S_COB_PRO_PLANT TYPE RSD_S_COB_PRO.
    I have no idea what to do now...

  • Regarding update rules activation in inventory management(2LIS_03_BF)

    Hellow gurus,
      i am working on inventory management with snap shot scenario for that we are using 3 business content datasources they are (2LIS_03_BX, 2LIS_03_BF, 2LIS_03_UM), now i want to activate the update rules for infosource(2LIS_03_BF) & cube, when i check the update rules it shows every thing is ok, but not activating ,please could you give me the suggestions
    Regards,
    Chandra.

    bf setuptable filling based on posting date
    give the posting date and give the name of job run
    give the termination date and time
    execute in background.you you can start the more jobs
    depending on your data.you have bulk data you can divide the
    jobs in based on posting date.
    after that check the status in sm37.

  • Key Figure Update Rule aggregation problem?

    Hello all,
    I am trying to create a simple routine in an update rule to sum up two key figures and perform a calculation.  To be more specific, I want to add ZQTY and ZQTY2, and calculate the quantity greater then 8 for formula (F1).
    (F2) = ZQTY + ZQTY2.
    (F1) = IF ( F2 > 8, then F2 - 8, else zero)
    Source:
    0CALDAY...0EMPLOYEE...ZTASK....ZQTY....ZQTY2
    2008.05.01....90000....TASK1.....5.......1
    2008.05.01....90000....TASK2.....1.......2
    2008.05.01....90001....TASK1.....8......0
    2008.05.01....90002.....TASK1....9.......4
    Target:
    0CALDAY...0EMPLOYEE...ZQTY....ZQTY2....(F1)
    2008.05.01.......90000............6..........3...........1
    2008.05.01.......90001............8..........0...........0
    2008.05.01.......90002............9..........4...........12
    In the source, calday, employee, task are the key.   In the target, 0calday, 0employee are the key.
    Here is the code I am using for my update rule routine for F1:
    DATA:  total_sum TYPE d .
    *BL - Get sum of qty
        total_sum = COMM_STRUCTURE-/BIC/ZQTY + COMM_STRUCTURE-/BIC/ZQTY2 .
    *BL - Calculate qty > 8
        IF total_sum > 8 .
          RESULT = total_sum - 8.
        ENDIF.
    With the current code, I am not getting the correct results (employee 90002 will be correct, employee 90000 will be wrong because of aggregation).  Does anyone know how to get around this?
    Thanks,
    Edited by: Brendon Lipchen on May 13, 2008 4:38 PM

    Hi,
    In case of 'ABORT = 1' the whole data package will not be loaded.
    Best regards,
    Eugene

Maybe you are looking for

  • HT1766 If I restore my new iphone from my last backup will it delete all of the new things that i have on my phone

    If i restore my new iphone from my last backup will it delete all of the new content that I currently have on my phone? would it be better off to set it up as a new iphone? and if i set it up as a new iphone what will that do?

  • Error in SUMCT while running the report!!

    Hi guys, I am getting following error...Dont understand why cannot use SUMCT..??? Previously when I used for another report.. I can run the report. <b>The formula operation SUMCT is not allowed here (formula 484CS49UMN7V9G4MLDVL628O6) Message no. BRA

  • Sending WSSE security headers to non-weblogic web service

    I have been trying to send wsse headers to a non-weblogic web service. I am looking for a way to do this using the control file I generated from the wsdl or the page flow where I implement the control, or the message handler file. I have username and

  • GR Non valuated tick

    Dear All, I had created one PO with multiple account assignment but in that system has not ticked check box for GR non valuated. But when i am creating the same now system is not allowing to uncheck the GR non valuated check box. as per standard SAP

  • Scheme Exercise (Structure and Interpretation book)

    I've been working through the Structure and Interpretation of Computer Programs book and have hit a bit of a problem.  Since I chose to use this book as part of my curriculum, my teacher doesn't actually know much of anything about Lisp or its varien