Class and detail object description Change in Web Intelligence

Hi,
I need to display the same detail object (which is coming from Universe) with different names in multiple WEBI reports, how can I change the description of class or detail object in WEBI reports instead of Universe?
Regards,
Preetham

Hi Preetham,
Where do you want to do this. If it is is just in the table header then you simply need to click on the header item, click the Fx toolbar button. It displays the edit toolbar with the formula
=NameOf([My Object])
You can change this to be
="My New Name"
Hope helps
If you want to change the name of the variable in the data panel, then I am afraid this is not possible.
Regards
Alan

Similar Messages

  • Is it possible to create web services for classes and bol objects?

    i am new to crm web channel,can any one  please ,help me....
    thank u in advance,
    kiran.

    Hi Kiran,
    Here, when you are talking about classes and BOL objects together, I assume you are talking about the BOL layer for CRM. If that is the case, and you have no dependency on WCEM for these objects, I would suggest you use the NW gateway to expose Odata web services from the CRM box itself. If you would like to expose the Odata web services from WCEM, please have a look at Ch 7 Dev & Extension Guide available in help.sap.com/wec301.
    Good luck!
    Regards
    Pranshu

  • Error when using defined object in Universe in Web Intelligence

    Hi all
    I create universe connect from Infocube
    I create a new Object named "Sale Value" to get YTD of Object name "SS Total value of the invoice lin" with code following
    <EXPRESSION>SUM(YTD(@Select(Key Figures\SS Total value of the invoice line)))</EXPRESSION>
    I parse to check systax "OK".
    But when I run query and using above defined object in Web Intelligence, I get error following
    <<
    Query 1 - ZTHP_TEST001
    A database error occured. The database error text is: The MDX query WITH MEMBER [Measures].[384E7D57-FBC9-45A4-BD,4B,1D,D2,D4,41,47,7E] AS ' SUM([Measures].[ZSGROSS_L]) '  SELECT  { [Measures].[ZSVOLUME], [Measures].[384E7D57-FBC9-45A4-BD,4B,1D,D2,D4,41,47,7E] }  ON COLUMNS , NON EMPTY { Descendants( [ZPRODUCT                      ZPRODUCT_HIER].[LEVEL00].MEMBERS, [ZPRODUCT                      ZPRODUCT_HIER].[LEVEL09], LEAVES) }  DIMENSION PROPERTIES MEMBER_CAPTION ON ROWS FROM [$ZIB_02]  failed to execute with the error Invalid MDX command with ). (WIS 10901)
    >>
    I check MDX PARSER connection in SM59 sucessfull
    I am beginer of Universe and Web Intelligence, please help me solve this problem.
    Thanks

    Hi,
    The MDX parser in the universe designer just check the XML Tags or Syntax. It does not validate the expression.
    The YTD, QTD, MTD functions in the universe designer requires a reference to a predefined time chararcteristics eg. 0CALMONTH etc. So the correct expression would be similar to the below expression:
    <EXPRESSION> SUM(YTD([0CALMONTH].CurrentMember), @Select(Key Figures\SS Total value of the invoice line))</EXPRESSION>
    Also you need to add the time characteristics in the result set.
    Regards,
    Rohit

  • Get runtime class and cast object to it?

    Hi,
    public interface Msg
    Msg msg=msgLib.get(msgType);
    Msg msg2=msg.clone(); //problem! cannot find clone in  x.y.Msg!
    ...Shouldn't msg be resolved to the implementing class (MsgReply for example) and use the "clone()" method, that i have declared in that class -which overrides the one of Object class?
    If no, is there a way to find the runtime class -probably use "getClass"- and cast to it? How?
    Thanks

    There are many implementing classes; i want to get the runtime class. Something like:
    (msg.getClass())msg.clone();
    Message was edited by:
    uig

  • Is it possible to create Webservice for Classes and BOL Objects?

    hi all ,
    i am new to  sap crm please help me out.
    thanks and regards,
    Ahmad

    Hi Narayana,
    Use BDC's for better maintainance of relationship. which worked fine for me.
    thanks,
    vasu.

  • Web Intelligence Sub Class Objects

    Hi Experts,
    By default, what data does the sub class object (blue object) display in a web intelligence document? Is it key, description etc. and is it possible to control what detailed object it displays as default. I know how to get the key and description from the detailed objects (green), but want to know what data the main object displays by default.
    I am asking because we've created a large web intelligence document with lots of formulas that contain [L03 Profit Center] = " [key]". The users want to maintain the hierarchy text, which if the objects display text as default will break our formula and cause lots of work to correct with the new [L03 Profit Center Key] object.
    Kind regards,
    Andrew

    Hi Andrew,
    I am not sure but I guess it depends on the Info-object setting at the BW level because I have seen both Descriptions and Key
    values being displayed from the Dimension (blue object).
    How-ever, you can change the definition of the object at the universe level and get the required value.
    Just check if you are getting the required values by default. If you are not getting the required value then just copy the Select
    clause of the L03 Profit Center Key and paste it in the Select clause of L03 Profit Center.
    Changing the definition of the object will save all your rework.
    Regards,
    Rohit

  • Classes and Objects

    I am new to object oriented programing. Now I think I am in little bit confusion with the concept of Basic building blocks of Object oriented programing. My doubt is;-
    1) "What Actually a class is ? Is it a user defined Data Type ?"
    2) "What actually an Object is ? Is an Object another format of a class ? Or an object is just a piece of Class, I mean is a group of Objects going to construct a class ?"
    3) "Is an object going to contain the reference of the data members only or both the data members and functions as well ? If It is going to contain both of these two then what is the Difference between a class and an object ?"
    4) "Is Constructor simply a function or something else ?"

    929663 wrote:
    I am new to object oriented programing. Now I think I am in little bit confusion with the concept of Basic building blocks of Object oriented programing. My doubt is;-
    1) "What Actually a class is ? Is it a user defined Data Type ?"More or less. You can find a more complete definition in any text or tutorial, or with a simple google search.
    2) "What actually an Object is ? Is an Object another format of a class ? Or an object is just a piece of Class, I mean is a group of Objects going to construct a class ?"Again: text, tutorial, google, or any combination.
    3) "Is an object going to contain the reference of the data members only or both the data members and functions as well ? If It is going to contain both of these two then what is the Difference between a class and an object ?"Data only. But the object also knows what class it is and where to find its class definition that tells it what methods it has.
    4) "Is Constructor simply a function or something else ?"It's not a method. It' similar to a method, in that it's a named grouping of operations, but it doesn't have a return type, and it can only be called at certain points in your code. It's job is specifically to get a newly created object into a valid initial state.
    http://docs.oracle.com/javase/tutorial/ --> http://docs.oracle.com/javase/tutorial/java/index.html --> http://docs.oracle.com/javase/tutorial/java/javaOO/index.html

  • What is the use of creating a detail object on a measure.

    Hi Experts,
    In BI 4.X business layer, we can create a detail object of a dimension and as well as measure.
    Can you please let me know what could be the use of the detail object of a measure object?
    In the business layer, it is showing like this...
    <Measure object>
    -><Detail Object>
    Dimensions have attributes, we create those attributes as details objects.
    when we want to see the different grains of the measure in one report. we will use these details objects.
    Example:
    1. Query 1 returns country, sales revenue
    2. Query 2 Returns Country,State,Sales revenue.
    But in the report if we want to show the State wise Revenue. It is not possible bcz both the quires are returning different grain.
    state object is incompatible object, so you can't drag the object into report.
    in this scenario we will merge the Country dimension , create the state object as details with merged dimension, then you can drag the state details detail object.
    this will give expected results Country and State wise revenue.
    Normally Dimensions and details objects will drives the measures values in report.
    So, Detail object on measure not helpful in case of relational database(Please correct me if i am wrong). It is useful only for OLAP database because when I have created a webi report on top of BEx query then it is automatically created a detail object on measure object.
    As far I know, 'Measure attribute' introduced for OLAP based business layer. which can provides information for the formatted value like unit, currency or value.
    For example:-
    Amount is key figure in BEx query and when I have created Webi report on top of that then it will create three object.
    1. Amount as meausre.
    ->2. Amount currency(detail).
    ->3. Amount formatted value(detail).
    Below is the output after running the report.
    Amount || Amount currency || Amount formatted value
    30 || $ || 30.00
    8 || $ || 8.00
    I have found one difference, We can't implement the index awareness on detail object which we have created on measure object although we can implement the index awareness on detail object which we have created on top dimension object.
    But Still I am looking for good example of Detail object on measure object..
    Any thought would be welcome...
    Thanks,
    Sachin

    I moved this to the Semantic Layer space for faster response.

  • Customizing and workbench objects

    what are customizing objects and workbench objects?

    Changes to cross-client Customizing objects and to Repository objects are recorded in Workbench requests
    In workbench request .... it can be programs(repository objects) and cross client data (ie not specific to one client).
    Changes to client-specific Customizing objects are recorded in Customizing requests.
    Customer customized data designed for a specific client is transported to another client using customizing request. Most of the cases these requests are something like changing values in tables (that too client specific).
    Once the Transport request is created it will be "Modified" Status.
    Before a request can be transported it should be "Released".
    Once the request is released no other changes pertaining to the object saved in the request can be saved to the same request. you have to create a new request for that.
    After transporting to the required system, you can check the log of the transport to see if this was transported without errors.

  • Logon failed error when launching Web Intelligence from InfoView

    After changing the Web Intelligence preferences in BusinessObjects Enterprise XI 3.0 Java InfoView to launch the desktop or rich client option, I get a "logon failed" error message. However, when I launch Web Intelligence Rich Client from 'Start > Programs >...' directly, the same logon information is successful. The logon is set to use Enterprise authentication which is the same logon information used to launch InfoView and Web Intelligence.
    Why does the logon fail when I launch Web Intelligence from InfoView?
    Edited by: Ana on Mar 31, 2009 3:43 PM

    I deleted the report completely and rebuilt it from scratch, and also added names for the data table and data set generated within the project and finally, success!
    Jason, thanks so much for your help which got me moving on this again.

  • Gauges/Dials in BO 4.0 Web Intelligence Reports

    Hi All,
    We are currently working on BO 4.0 and want to add Gauge in web intelligence report. As we know that, Gauge is not existing in the list of components provided by BO webI so we need to do some work around or even for the single value display which other component we can use in WebI.
    Can anyone suggest how we can achieve the same?
    Regards,
    Tina Ailani
    Edited by: Ailani Tina on Aug 25, 2011 6:18 AM

    Personally, I'd do something like this:
    Open Microsoft PowerPoint, use the drawing tools to create a thing that looks like a dial (with a needle).
    Copy and paste it 8 times.
    Move the needle on each so that's it in a different position.
    Right click the shapes and click "Save as Image".
    In Webi, add a blank cell where you want the picture to be.
    Click the alerters icon in the toolbar.
    Add some rule, for your measure (whatever should drive the needle of the chart).
    Click the format button, and on this page, select an image for that sub-alerter.
    I think 8 is the limit. You can always apply to alerters (each with 8 sub-alerters) to the same cell.

  • Web Intelligence navigation somewho fuzzy

    Hi folks,
    If I navigate in a web Intelligence report,
    after a few operations, like drill down, drill up, cut slice and dice or filter
    the items are pretty much tossed arround and Iwon't get it ordered
    any more.
    Any one haveing the same experience ?
    Any button not hitted ?
    Any work arround ?
    Any Authorizationmissing ?
    Best
    Martin

    Well, I will verify but not sure is what we need.  Explorer look more a seraching engine.  In this case, all the information is in one universe, a simple universe. 
    We are almost 70% OK with Web Intelligence but it miss some feature when try to slice and dice or drill into it.
    We have a universe (in this case) which is very OLAP wise.  It's a universe where we have a agregate table with dimension and user need to look information very, very quickly.  With Web Intelligence, they can do but it's sometime hard with filter and drilling. 
    By exemple, in web intelligence, try to do a IN LIST filter.  Yes, you can do with right click, choose a dimension, select your list, etc...  Now, explain this to a manager, a director, or even to a VP.  You lost him or her.  They want something very flexible and easy. 
    What about the drilling function in web intelligence...Every project we try this siolution, we forget it after couple of try.  We are certainly not the only to thing like this.
    But I will verify Explorer anyway

  • While a opening a webi intelligence it taking time?

    Hi Experts,
    While opening a webi report it taking a lot time. How to reduce the time.

    This was a known issue with SP5 and fixed with SP6
    check the note below
    1748596 - Web Intelligence: Java viewer takes a long time to start up and/or to load reports
    This could also be related to the Java.
    If you are on JRE rev 25 and more check this note
    1904873 - Web Intelligence Rich Internet Applet loads slower after installing Java 7 Update 25 (JRE 7u25+) and above

  • Class and Object name change in the universe designer

    Hello Experts
    I have a confusion , I am just wondering if I devlop a bobj universe, lets say, based on SQL database and change the name of the class and object during the creation of the universe, will that fetch the data from d/base properly while running a query / report. Although universe class and object has different names than database now but the records are the same. Do we need to point the object to d/base object in some kind of different or special way .
    To make my question more simple, In d/base table name is "Employee" whereas on universe side I create a class name "Staff" and at the same time field name in the database is "Emploee ID" whereas in the universe I named it "Badge number".
    Please advise if that will make any difference while I run the query or Is there any kind of complication on the universe side that I should expect which I am not familiar with.
    I would apprecite your response.
    Best Regards

    Hello experts,
    Let me rephrase the issue with exact scenario.
    I have a table names "REGION" with fields region id, region and country id.
    I have another table name REGION_SLINE with fields SL_id, region id and Sales_revenue.
    I created an equi join between these two tables based on region id field and checked the cardinality which is ok.
    Now when I try to create a report based on sales revenue per customer ( "customer's first name"  is an other field on CUSTOMER table), I dont get any result in the report and get a message that "No data to reterive"
    Also please note that when I run a report which is sales revenue per region id, I get the result, seem slike these two tables REGION and REGION_SLINE can generate the report but sales revenue per customer report is not generated because customer first name is a field of another table.
    I was just wondering if I need to write some kind of where clause in the object properties of region id which is used to create equi joon link.
    I woulld appreciate your response.
    Regards
    Edited by: SAP_LCCHS on Jul 4, 2011 9:19 AM
    Edited by: SAP_LCCHS on Jul 4, 2011 9:21 AM

  • Find Universe, classes and objects used in each report

    I want to find a list of universes, classes and objects used in each report
    or the other way to find list of reports which use a particular universe. please let know, i could not get much information from activity universe in a proper way.

    Hello Venkataramat,
    plese post in more detail what kind of report you are using Crystal report ? webi ? Deski.
    Please post in the specific forums.
    If you have a Crystal Report I recommend to post this query to the [Crystal Reports Design|SAP Crystal Reports; forum.
    Best regards
    Falk

Maybe you are looking for