Newly added Keyfigures to the cube is not shown in Bex designer

Hi,
We have added some new keyfigures to the base cube and multicube in our dev system. In multicube we correctly assigned the "source" for the new infoobjects.
We are able to see the new fields in the query also, but the same we have transported to GWP system.
We are able to see the new infoobjects in the cube and multicubel. but the report we are not able to see the same.
When we execute the query, it is throwing error because of missing fields.,
Can you please help me here, My system version is Bi 7.01 Ehp1 sp3

Hi Karthik,
                       Some times it happens this way. Once again you save the existing query, close the entire applications and then try to change the query. Hopefully it shows up the new fields now.
Regards
R Karthik K

Similar Messages

  • Newly added field in the data Source not getting populated

    Hello All,
    We have added few fields in the Data Source. The Data Source is based on the InfoSet. We have included the field in the Infoset and have updated the code to fetch the value for the newly added fields.
    When we perform the test extraction for this Data Source in RSA3, the newly added fields are not getting populdated with the value. In the system generated query's selection list, the newly added fields are not selected.
    Please let mw know how to get the newly added field selected in the system generated query of the infoset.
    Regards,
    -Purnima

    Hi,
    As you said you have added the filed in Info Set. Have you included the same in data source? try if not.
    If you are trying to create a query in source system to check the data. I guess in R/3 (ECC) then you have to include the new field in slection critera (ther is an option available on top menu).
    I would suggest before creating any query go to RSO2 select the data source. Display the field structure and check if the filed is there or not. You maysee Infoset level data directly by data display from top menu. Try that optionas well to check.
    I hope it will help.
    THanks,
    S

  • How to get the histoical data for newly added field in the cube?

    Hi Experts,
    I have small doubt on remodeling the infocube.
    After adding the characteristic or keyfigure  to a cube by using remodeling concept, how can I get the historical data for that particular field.
    I have searched in SDN also but I didn't get proper information.
    Please excuse me if I posted repeated question.
    helpful answer will be awarded with poitns.
    Thanks & regards,
    Venkat.

    hi
    depending on your customer need you could use the remodelling functionnality but sometimes you have no way to retrieve what you want so another option you should consider is the following:
    Advantages
    that will cost less effort and guarantee the result.
    Drawbacks
    data is redondant for a while
    space (depending on the volume of historical data)
    So here are the steps :
    step 1Adjust your extraction process according to the fields you need to add to populate the cube.
    step 2 Then create a dso next or even a cube, feed the dso with a full load with the enhanced extractor you adjusted with the new fields in step 1 only once in fact this should be one shot.
    step 3 Copy the query to the previous built  multi-provider on top of the new historical data from dso and the running live delta cube. Adjust the queries if necessary.
    optionnal Then if you want to get rid of the dso or new cube for historical data you could empty the actual one push the data from the new data provider and that's all.
    bye
    Boujema

  • LOV does not show newly added data in the same session

    Hi guys,
    I work with JDeveloper 11g Release 2. We use Oracle ADF to develop our web app.
    In a page we have a LOV (say the page name is "a"). The related data for that LOV is inserted to the db in another page ( say the page name is "b").
    When new data is added in the page "b" and goes directly to the page "a" the LOV does not show newly added data. But if the user log out and log in again
    LOV shows newly added data correctly.
    Is there a way to show the newly added data in the same session without logging out? Please help.
    Regards !
    Sameera.

    Add the following method in your ViewRowImpl base class:
    public void refreshLOVAccessorQueries() {
        List lovs = getViewDef().getListBindingDefs();
         if (lovs != null) {
             for (Object obj : lovs) {
                getListBindingRSI((ListBindingDef)obj).getRowSet().executeQuery();
                 ListBindingDef lbd = (ListBindingDef)obj;
    Export that method to the Row Client interface, add him to the pageDef, and invoke in the executables section of the pageDef:
        <executables>
    <invokeAction Binds="refreshLOVAccessorQueries" id="callRefreshLOVs"
    RefreshCondition="#{!requestContext.postback and empty bindings.exceptionList}"/>
       </executables>

  • How to save only newly added elements from the trailing list

    Dear,
    I have a shuttle bean with left and right trailing lists.
    At some point I save the right trailing list content to DB. Then I add additinal elements to the trailing list. Trying to save again gives me oracle.jbo.TooManyObjectsException: JBO-25013: Too many objects match the primary key oracle.jbo.Key
    exception.
    What is the approach I can take to only save newly added elements from the shuttle?
    I am wondering if I can put the extra logic (what logic would that be - do I need to check the PK value that is already in the database?) in the AM method with which I save the shuttle like here (TicketID and ResponsibilityID are primary key)
    if (items != null)
    Object ia[] = items.toArray();
    for(int i=1; i<ia.length; i++)
    Row rowApproval = vo.createRow();
    vo.insertRow(rowApproval);
    rowApproval.setNewRowState(Row.STATUS_INITIALIZED);
    Row row = vo.getCurrentRow();
    row.setAttribute("TicketId",items.get(0));
    row.setAttribute("ResponsibilityId",items.get(i) );
    row.setAttribute("Status",items.get(i));
    or should I do something in the EO?
    Thank you
    Anatoliy

    Hi,
    Can you please clarify - do I have to make a loop? I mean for every record/element in the trailing list
    I run the VO (that I will create) VO.executeQuery?Yes you do need to execute the VO for every record....by passing the different parameter in each iteration.
    Regards,
    Gyan

  • Used a template to create form. when I run it from a page, the template is not shown

    I have created a form based on a template. When I run it from the applications page I can see the template. I then added it as an application component item with a folder in a content area. I have then published this folder as a portlet in a page. When I the form from the portlet within that page, it opens up in a new window but there is no template.
    How do I get the template to show when I run it from the portlet ?

    It is true that the template is not shown when the form is run as a portlet. But, with a small amount of coding in the additional pl/sql section, you can display the template.
    Steps :-
    1> Edit the form and go to the additional pl/sql section.
    2> Put the following code in the "...before displaying the page" area
    declare
    l_mid integer;
    l_title varchar2(32767);
    l_template varchar2(200);
    begin
    l_mid := p_session.get_module().id;
    l_title := p_session.get_module().title;
    l_template := p_session.get_module().template;
    <portal_schema>.wwv_headings.show_header
    p_template => l_template,
    p_heading => l_title,
    p_help_link => <portal_schema>.wwctx_api.get_proc_path('wwa_app_module.help')
    || '?p_module_id='||l_mid
    end;
    3> Put the following code in the "...after displaying the page" area
    declare
    l_template varchar2(200);
    begin
    l_template := p_session.get_module().template;
    <portal_schema>.wwv_headings.show_footer
    p_template => l_template
    end;
    Note: replace <portal_schema> with appropriate your portal schema .

  • How can I display the 11000+ "items not shown?"

    I have Elements 7 and running Windows 7 64bit. "Show all" only shows a couple of thousand photos and 11000+ "items not shown."  I have never stacked or hidden any photos.  I've tried everything.  The "show hidden" gives me 0 photos.  When I ask to show a tag of some of the missing photos, I again get 0. The photos are not shown in any of the views.  When I try to reimport the photos, it says they are already there. I need help desperately. I've put too much work into this organizer to start from scratch.

    Thanks for the reply and the terrific FAQ source.  I followed the directions suggested, but things actually got worse.  When I tried display all, I got 0 photos - nada - zip.  I kept messing around and finally success.  I tried so many combinations of things that I'm not sure which actually solved the problem, but I believe it was reconnect all.  I had tried this a couple of times before without success, but this time I deleted from the catalog all items elements couldn't find, even though I knew where they were.  Lo and behold all 13000 photos appeared.  BTW many of those are duplicates.

  • HT204053 I have put new music on my iTunes folder on my apple desktop. I have iTunes Match but the music has not shown up on my iPhone. How do I get my music to get on my phone. My iCloud is on on the desktop and iphone

    I have put new music on my iTunes folder on my apple desktop. I have iTunes Match but the music has not shown up on my iPhone. My iCloud is turned on. All my music initially did go to my iPhone

    Try posting in the iTunes Match forum, you'll probably find more knowledgeable folks there.  iTunes Match is a different service from iCloud.
    https://discussions.apple.com/community/itunes/itunes_match

  • TS1347 I have a iPhone 4 and I use a hotmail email account. Recently it's not been notifying me of me of emails. I've checked notification settings all set to get them but when you look at overview of notifications the email ones not shown like other apps

    I have a iPhone 4 and I use a hotmail email account. Recently it's not been notifying me of me of emails. I've checked notification settings all set to get them but when you look at overview of notifications the email ones not shown like other apps do? Can anyone help its driving me mad?

    I had the same issue.  I just went to the Apple Store today to talk to someone about it.  They had me delete the account and then add it back in.  It's been working fine ever since!

  • I have not been able to use the presenter installation. The installation process finishes well by says the download installation was a sucess, however, the icon to begin using the app is not shown anywhere. Please help!!!

    I have not been able to use the presenter installation. The installation process finishes well by says the download installation was a sucess, however, the icon to begin using the app is not shown anywhere. Please help!!!

    Hi There,
    Can you confirm if you were able to download Presenter 10 successfully, Can you please paste the screen shot of the downloaded file for Presenter 10? Can you please check in control panel >Program and features and check if you are able to see Adobe Presenter 10 as a installed program?
    Regards,
    Mayank

  • The graph dose not shown after running the Customize JSP Page.

    Hi All,
    While creating customize JSP I am facing one problem - The graph dose not shown after running the Customize JSP Page.
    What are the possibilities ? any body has any Idea Please help me

    Hi all,
    I have the same issue! Any solution??
    Thanks
    BI Beans Diagnostics(v1.0.2.0) 11/10/06
    =========================================================
    JDEV_ORACLE_HOME .......................... = D:\jdev1012b1913
    JAVA_HOME ................................. = D:\ORDB10gR2Home\jdk
    JDeveloper version ........................ = 10.1.2.1.0.1913
    BI Beans release description .............. = BI Beans 10.1.2 Production Release
    BI Beans component number ................. = 10.1.2.67.0
    BI Beans internal version ................. = 3.2.2.0.24.2
    Connect to database ....................... = Successful
    JDBC driver version ....................... = 10.1.0.4.2
    JDBC JAR file location .................... = D:\jdev1012b1913\jdbc\lib
    Database version .......................... = 10.2.0.2.0
    OLAP Catalog version ...................... = 10.2.0.2.0
    OLAP AW Engine version .................... = 10.2.0.2.0
    OLAP API Server version ................... = 10.2.0.2.0
    BI Beans Catalog version .................. = 3.2.2.0.24
    OLAP API JAR file version ................. = "10.1.0.5.0"
    OLAP API JAR file location ................ = D:\jdev1012b1913\jdev\lib\ext
    Load OLAP API metadata .................... = Successful
    Number of metadata folders ................ = 1
    Number of metadata measures ............... = 23
    Number of metadata dimensions ............. = 8

  • I can see my device in itunes but not my music,movies which is in my itunes. the folder is not shown on itunes ):

    i can see my device in itunes but not my music,movies which is in my itunes. the folder is not shown on itunes ): what should i do. please help! ):

    Have you tried installing and updating apps from the iPhone itself?
    If you have restrictions enabled go to settings>general>restrictions and make sure "Installing Apps" is on.

  • Adding keyfigures to a cube

    Hi friends,
    Can i add two keyfigures additonally to an infocube which already has a delta scheduled?please help me with the process also.
    Thanks in advance.
    venkat

    Hi Kiran,
    1.First make sure you have the new Key figures in the datasource.
    2.Now go the cube and add the two key figures.
    3.Now add the 2 ket figures to the communication structure.
    4. Replicate the datasource if it is from R/3.
    5. Assign the R/3 fields to the 2 info-objects in the Transfer rules and activate.
    6. Set the update rules as per your business logic for the 2 new KF.
    Loading steps:
    Re-init steps:
    1. Right click on the data target -> Delete data. - This would delete the contents of the data target.
    2. Go to the init infopackage -> initilization options for source system and delete the init request.
    3. Load the new init again.
    4. From there do your regular delta loads.
    Hope I have made things clear.
    Bye
    Dinesh
    (Do not forget to assign points!!)
    Message was edited by: Dinesh Lalchand

  • All the cubes are not visible in cube browser of Voyager

    Hi
    After following the steps below:
    1. Login to Central Mangagement Console.
    2. Click on Voyager Connection to see the list of avaliable connection.
    3. Click on New button(present below the manage menu) to create a connection.
    4. Give name and chose the type of server you want to connect from the providers list.
    5. Now Give the server name and click on connect button.
    6. Give the username and password and click on ok
    7. Select the cube you want connect from the cube browser and click on OK button.
    I am not viewing all the cubes in cube browser. Do I have to make any setting/ maintain in BI to view the cubes in cube browser.
    Any suggestion/solution?
    Thanks
    Debasish

    Hello Debasish,
    I recommend to post this query to the [BusinessObjects Enterprise Administration|BI Platform; forum.
    This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • Value displayed in the cube but not in BEx query

    Hi gurus,
    I have the field for no. of orders  (ANZAU) in the datasource 2LIS_11_VAHDR. It is displaying all the values in the column as '1' in the RSA3 and also in the cube but when the same field is selected in the query there is no display of value '1' .In the query all the values shown in the column is '0' .what is the reason.
    How to display the correct value '1' which is in RSA3?
    regards,
    man

    hi,
    Check out the following
    1.Check the report at the detailed level(line item level)
    2.Check if the report is from multiprovider, if so chk the field you needed is selceted from all the cubes you require.
    3.Run a full repair and chk upto PSA.
    Hope it helps you
    Assign points if so
    Ramesh

Maybe you are looking for