Not Showing Update rule for Infocube IC_C03

Hii
When I transfering infocube IC_C03 with grouping dataflow before and afterwards .The update and transfer rules for infosoures and datasources that are mentioned below are not coming up
Infosources :
2LIS_03_BF
2LIS_03_BX
2LIS_03_UM
Data Sources:
2LIS_03_BF
2LIS_03_BX
2LIS_03_UM
Regards
Viki

Hi
See here -> SAP best practice to Activate BC for 0IC_C03
http://help.sap.com/bp_bw370/BBLibrary/documentation/B82_BB_ConfigGuide_EN_DE.doc
Link: [http://help.sap.com/bp_bw370/BBLibrary/documentation/B82_BB_ConfigGuide_EN_DE.doc]
http://help.sap.com/bp_hightechv1600/HighTech_DE/documentation/BI/B82_BB_ConfigGuide_EN_DE.doc
Regards,
sanjyot

Similar Messages

  • Update rules for infocube

    hi all,
    i am new to SAP BIW. i am trying to extract transaction data. i have assigned my data source to a certain structure in SAP DR3 500 client. this structure is also replicated in the source sysytems of the BW client. however, when i go to create update rules, it asks me for an infosource. then when i give my data source as my entry, it says that 'the name of my data source is not maintained.
    can you please suggest how to maintain an infosource in such a case???
    regards,
    kaustubh

    Hi Kabre,
    i think u know that the steps to be followed?
    please follow this steps:
    1) replicate the data source( in ur case, replication is already done)
    2) create application component and create infosource under application component and give your infoobjects and activate your communication structure.
    select infosource 3.x, if you are using older versions
    3) right click on infosource, create transfer rules in that map the objects and activate transfer rules.
    if you want to write transfer routine for a particular info object, you write accordingly.
    4)go to ur datatarget(ODS or Infocube) rightclick you will find additional functions, create update rules.
    there you can create ur update rules and activate
    Thanks & Regards
    Swathi

  • ASDM not showing access rules for interfaces

    Strangest thing.  I have applied the access lists and can see that in CLI, but ASDM isnt displaying them.
    in CLI:
    access-group inside_access_in in interface inside
    But ASDM doesnt display the interface under "Firewall - Access Rules"
    Cisco Adaptive Security Appliance Software Version 8.4(5)6
    Device Manager Version 7.1(4)
    Anyone else seeing this?
    I configured this firewall a few months ago and havent touched it since.  I have updated Java and suspect that it may have something to do with it.
    Java version 7 Update 45

    Hi there
    I am sorry for any delay.
    Please check this out:
    ASDM 7.0 Edit Bookmark Window empty.
    Symptom:
    In the Edit Bookmark Window all fields are empty.
    Conditions:
    ASDM 7.0
    Workaround:
    If running any ASA code before 9.0 downgrade to ASDM 6.4.
    If running ASA 9.0, there is no workaround.
    Fixed-In 
    7.1(1.2)
    You may try with the latest version available Release 7.1.1
    HTH.
    Please rate any helpful posts

  • Missing Update Rules for 0IC_C03 in Business Content

    We had a problem with 0IC_C03,  so we decided to reload from Business Content and then migrate to 7.0 format again.
    However, when we try to gather all of the dependent objects for the InfoCube in Business Content, we only get one set of obsolete update rules (2LIS_40_S278), and the update rules for 2LIS_03_BX, 2LIS_03_BF, 2LIS_03_UM do not show up.  They do not appear under update rules, either.
    I know they were there at one point because I activated and migrated the cube once already.
    Can someone help us find our lost update rules?

    Hi Dan,
    There are no update rules deliverd with BI 7.0 for 0IC_C03. There are only
    transformations Delivered as part of the content. In the new release
    Transformation replace the update rules and the transfer rules.                                                                               
    You have the 3 data sources and the associated transformations to  
    upload data to the infoCube.                                                                               
    Transformations installed                                          
    TRCS 2LIS_03_BF_TR -> CUBE 0IC_C03                                 
    TRCS 2LIS_03_BX_TR -> CUBE 0IC_C03                                 
    TRCS 2LIS_03_UM_TR -> CUBE 0IC_C03                                                                               
    DataSources installed                                             
    2LIS_03_BF                                                        
    2LIS_03_UM                                                        
    2LIS_03_BX

  • Function Module where-used list does not find update rule programs

    We have function modules called in update rules. The where-used list in the function builder does not find the update rule programs.
    For example, function DATE_GET_WEEK is called in an update rule to InfoCube YCUBE001. The activated program name for this update rule is GP3PWI6PKM5Y3K75A370DIS8I77. When I goto SE37, enter the function DATE_GET_WEEK, click the where-used button, check the programs option and search. The system does not find the program GP3PWI6PKM5Y3K75A370DIS8I77.
    Without this search capability it is difficult to do an impact analysis of changing function modules. Does anyone know of a solution?

    hi,
    i think the reason is the code of update rules' generated program are stored line by line in table(rsaabap), update rules program itself stored in table rsupdrout, link with field codeid, another useful table is rsupdinfo which store infocube, infosource related.  other info may stored in some other rs* and rsa* tables.
    try to create following program in your system, and run, type in the function module name, and will display out the update rules program id, with additional useful info : which infoprovider, infosource, and detail info of the routine and infoobject in the update rule that using that function module. you may modify the program to have better display out list.
    hope this helps.
    REPORT  Z_FM_UPDRUL_WHEREUSED.
    data : lv_sfm,
           lv_line type string,
           lv_where type string.
    tables : rsaabap,RSUPDROUT,rsupdinfo.
    select-options:
    s_fm for rsaabap-LINE.
    start-of-selection.
      loop at s_fm.
        concatenate s_fm-low ' ' into lv_sfm.
        concatenate '%' s_fm-low into lv_line.
        concatenate lv_line '%' into lv_line.
        write : / 'function module', 'update rule id', 'routine id', 'infoobject', 'infocube', 'infosource'.
        select * from rsaabap
        where line like lv_line and objvers = 'A'.
           select * from rsupdrout
           where codeid = rsaabap-codeid and objvers = 'A'.
             select single * from rsupdinfo
             where updid = rsupdrout-updid and objvers = 'A'.
               write: / lv_sfm, rsupdrout-updid, rsaabap-codeid,
                        rsupdrout-iciobjnm, rsupdinfo-infocube,
                        rsupdinfo-isource.
        endselect.
        endselect.
      endloop.

  • Error while installing 2LIS_03_BX update rules for 0IC_C03

    Dear experts,
    when i am trying to install the standard business content
    update rule for 0IC_C03 for the datasource 2LIS_03_BX,
    it throws me a error stating
    "Object UPDR BW9VUFZSUYTTIZS0HT9I4U3RP could not be found"
    I need the cause and solution for this error.
    With regards,
    Meiyappan

    Please choose to install the Update Rule between InfoSource 2LIS_03_BX to InfoCube 0IC_C03.
    You have probably not selected to install the Update Rule which is throwing an error.
    While Installing, after choosing the required Objects, please also change the Display to "List" to be able to view all objects clearly.
    Regards
    Anujit Ghosh

  • BW 3.5 update rules for master data

    Hi all,
             I create a dummy report in that report lifnr is charactics and name its att. after  this i create a application component and assign data source and create infopkg   data coming in lifnr and name field properly <b>i assign data source using direct master data update</b> after this i create infocube and assign dim.
    but when i rgt click on infocube and display dataflow it shows only one level and when i open bex and open that it shows no application data found why this happened after creating infocube it is nessory that i creat update rule for this am i right plz send your openion.
    thx

    Hi Ankit,
                  Yoy have to load data to the cube.For that you need update rules.
    Steps to load data to the cube
    1.Replicate the datasource.
    2.Assign Infosource
    3.Create transfer rules
    4.Maintain the update rules to the cube.
    5.Right click on the datasource and schedule an infopackage for it.
    Execute the Infopackage and pull the data to the cube.
    Hope this helps
    Regards
    Karthik

  • Not getting transfer rules for 2LIS_02_HDR , 2LIS_02_ITM and 2LIS_02_SCL

    Hello Bi experts,
    Actually i am implementing standard Purchasing module in BI system.
    While implementing , i have installed cube 0PUR_C04 with data flow before options.
    After installation , i am not getting transfer rule for 2LIS_02_HDR , 2LIS_02_ITM and 2LIS_02_SCL .
    I am getting transfer rule for 2LIS_02_S011 only.
    0PUR_c04 contains these 4 dataspurces - 2LIS_02_HDR , 2LIS_02_ITM and 2LIS_02_SCL , 2LIS_02_S011 .
    So how can i get these transfer rule. and if we want to implement std Purchasing module in BI , which Cubes are required or necessary.
    In metadata repository also , for Cube 0PUR_c04 , it does not showing transfer rule HDR/ITM/SCL. there also it is now showing transfer rules.
    I will be also very thankful if anybody just give me overview of purchasing.
    Thanks,
    Sada.

    Hello Mani,
    Thanks a lot.you are the first one who has answered my que. which i expect .
    Look at following floe in infoprovider in my system. and please tell me what exactly i should do?
    Cube->Purchasing Groups                                                                                0PUR_C04
               Update Rule->0PUR_C04 2LIS_02_HDR                                                                       AY0XVMCJPXXXXXXXXXXXXXXXX
                                    Infosource->Purchasing Data (Document Header Level) as of 2.0B      2LIS_02_HDR
               Update Rule->0PUR_C04 2LIS_02_ITM                                                                         4YSO2PF9XXXXXXXXXXXXXXXXX
                                     INfosource->Purchasing Data (Document Item Level) as of 2.0B          2LIS_02_ITM
               Update Rule->0PUR_C04 2LIS_02_S011                                                                      CSB3FHGQXXXXXXXXXXXXXXXXX
                                     Infosurce->Purchasing groups                                                               2LIS_02_S011
                                                      Transfer Rule->from 2LIS_02_S011 for SC4 Client 600        2LIS_02_S011                  SCXCLNTXXX
                                                                             Datasource->Purchasing groups                    2LIS_02_S011
               Update Rule->0PUR_C04 2LIS_02_SCL                                                                        4ZZ0DMZXXXXXXXXXXXXXXXXXX
                                     Infosource->Pur.Data (Document Schedule Line Level)                         2LIS_02_SCL
    Mani i am expecting answer from you.
    Thanks,
    Sada

  • Program to activate update rule for master data (info objects)..very urgent

    Hi all,
    I have an info provider(A0CUSTOMN). For this the update rules are not active.In production system i am not able activate.Please let me know if there is any program to activate the update rule for masterdata(info object).
    Thanks=points
    Manjula

    Hi Manjula,
    Leave the id and infocube field blank.  Just provide the infosource name.
    BTW is this a direct update master data object?  In that case all this is not relevant.
    Check if it appears as an Infoprovider. 
    I did not ask enough questions to start with.
    BR/
    Mathew.

  • Update rules for 0PU_C02

    I am working on the Funds Management and the Standard Business content cube 0PU_C02, which pulls the data from 7 ODSs through the Update rules. The update rules does not have characteristics fields that needs to passed on to the cube, but it has the Key figure fields (0Amount) to pull. However, On looking in the Infocube content, the data are availble for the Characteristics field along with the expected Key Figure value.
    How is this situation possible, where we are getting the data (in the infocube) for the characteristics, which does not have any field specified in the Update rules. I checked other update rules too for getting to the bottom of this.
    Thanks

    Hi Saura,
    In the update rules screen, click on an update rule for the key figure (in column Ty.) In the screen that opens up you should be able to see update rules for the chars on the char tab.
    Hope this helps...

  • GLPCA table not getting updated correctly for VBUND

    Hi All,
    I have come across one issue that the value of trading partner field (VBUND) in table GLPCA are not getting updated correctly for document type KP.
    In vendor master this field has different value versus it is showing in GLPCA-VBUND.
    Does any one knows about ?
    Thanks for your help on it.
    Regards,
    Manoj

    Hi Sridhar,
    Thanks for your response on it.
    This note is not applicable for our system as we are working on 4.0B with support pack 52.
    Also we are getting this worng update of this field (GLPCA-VBUND) while doing MR11 creating document with doc. type KP. This value is not picking from vendor master (LAF1-VBUND) and randamly picking any value. Not sure from where ?
    Please advise your thought.
    Thanks,
    Manoj

  • HT4623 My ipod does not show update settings in the About section

    My ipod does not show update settings in the About section how can i  get the update ios5 in order to get facebook on my ipod how can i do this

    To update
    The Settings>General>Software Update comes with iOS 5 and later.
    Connect the iPod to your computer and update via iTunes as far as your iPod model allows
    iOS: How to update your iPhone, iPad, or iPod touch
    A 1G iPod can go to iOS 2.2 via iTunes and iOS 3.1.3 via
    Purchasing iOS 3.1 Software Update for iPod touch (1st generation)       
    https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/touchLegacyLandingPage
    A 2G to 4.2.1. Requires iTunes version 10.X. If a Mac it requires OSX 10.5.8 or later. With OSX 10.4.11 you can only go to iTunes 9.X which gets you as high as iOS 4.1
    A 3G to 5.1.1  Requires iTunes version 10.5 or later
    A 4G to 6  Requires iTunes version 10.7 or later. For a Mac, that requires a Mac with OSX 10.6.8 or later
    Identifying iPod models
    I suspect you have a 2G iPod. Those can only go to iOS 4.2.1.
    iPod touch (3rd generation)
    iPod touch (3rd generation) features a 3.5-inch (diagonal) widescreen multi-touch display and 32 GB or 64 GB flash drive. You can browse the web with Safari and watch YouTube videos with Wi-Fi. You can also search, preview, and buy songs from the iTunes Wi-Fi Music Store on iPod touch.
    The iPod touch (3rd generation) can be distinguished from iPod touch (2nd generation) by looking at the back of the device. In the text below the engraving, look for the model number. iPod touch (2nd generation) is model A1288, and iPod touch (3rd generation) is model A1318.

  • 2LIS_11_VAHDR right-click not showing Transfer Rules

    Dear gurus,
    I have 2LIS_11_VAHDR under my SD Application Components at DataSources tab. I replicated the datasource with ECC and activated it. Now I want to install the rest of the dataflow - transfer rules, infosource, update rules, sd_c03, and the queries.
    I am right-clicking on the datasource, but it is not showing the Transfer Rules. My understanding is that when we right-click -> transfer rules -> in the content tab we put our datasource name again, and takes it to the BI Content tab.
    Why is 2LIS_11_VAHDR not showing Transfer Rules after right-clicking?

    Hi Saurav,
    If not from the Right Click,you can install it from the Business content 3.x flow ,which is at the end of the Business Content.
    Rgds
    SVU123

  • Update rule for COSTCENTER master data

    Hello All,
    Cost Center is not an attribute of 0EMPLOYEE, neither a field provided by the table PERSON.
    0COSTCENTER gets data from the MASTER Datasource 0COSTCENTER_ATTR. When writing an update rule for this characteristic, what code should be written?
    and Which fields should be considered from the table /BI0/MCOSTCENTER.
    Thanks in advance.
    Regards,
    KP

    Hello,
    Lets consider a ZINF infoObject with time dependent attribute as ZDEPART.
    When writing an update rule, I do a lookup on ZINF. Do  I have to write a code for this llokup (mapping this infoObject)?
    After writing a code for a lookup on ZINF, will this InfoObject be available for selection in "Master data attribute of"?
    Kindly reply.
    Regards,
    KP

  • RSAU461, problem with activating update rules for cube 0csrv_c01

    Hello,
    I have added new fields to data source 0CRM_SRV_PROCESS_H, then changed transfer rules, added characteristics to ODS 0crm_proh, and reactivated update rules 80crm_proh. But now I have problem with second update rules for this cube named 80crm_cnfh. It is not active and all fields in it have red status, error RSAU461, and I cannot activate it.
    What I should do? Should I change somehow that second source for data to my cube (change infosource, ods, rule?)
    Regards
    Radek

    hi
    As said by the Mti u have just changed the info objects in the ods and u need to map them with the specific info objects from the ods.
    double click on the Update rules of the cube and go to the characteristic tab there map the newly added info objects with the IO in the ods.
    Khaja

Maybe you are looking for

  • Valuation Type Check in STOs

    In STO creation in ME27 Transaction, the field Valuation Type is mandatory.In availability check, we could able to find the available stock at issuing plant at quantity level. But our requirement is how to find the issuing plant stock at each Valuati

  • I got a new iPhone and i can't make purhases because i forgot the security questions

    Please Help!

  • Oracle BI Joins

    Hi all, I have two tables and there is no direct join between them in physical or logical layer, but there is a few indirect joins through a few tables. When I put these tables in one report in presentation services, it doesn't give an error. From qu

  • Auto start script

    Hi guys Im using SAP Netweaver 7 Trial. Is ther a way to auto start SAP , a script that can be called may be , without using the sapmmc? Thnks

  • IWeb 08 - poor color management

    Since updating from iWeb 06 to iWeb 08, iWeb changed all my pictures on my webpages making them darker. Nobody asked for that...... Seems iWeb cannot handle untagged RGB. Anybody had the same problem or a solution? Cheers, Nikolaus