New object at universe designer

Hello Gurus,
1.Can we Create a new Object at Universe designer on top SAP BW.

Hi ,
Here is the MDX syntax for creating  a calculated mesure object in the universe.
<EXPRESSION>@Select(Key Figures\Order Amount)*@Select(Key
Figures\Order Quantity)</EXPRESSION>
Go through the below link to know how to customize olap universe(from page#427)
http://help.sap.com/businessobject/product_guides/boexir31SP3/en/xi31_sp3_designer_en.pdf
Thanks,
Pramod

Similar Messages

  • DECODE SQL Function - Parsing error in Defining Objects in Universe Designe

    Hi,
    I have created a class and an object in BO XI R3 Universe designer.
    I am getting the parsing error while defining the object when using the custom SQL as
    select decode(matteraction,null,decode(matterissue,null,'MATTER','ISSUE'),decode(matterissue,null,'TYPE IS ACTION',' ACTIONu2019)) as TYPE from wh_cf_cmsu
    The object Type is "character", i have tried with Long Text, Number, Date as well and the same sql works fine by returning String values through TOAD.
    Do we have any constrains in using DECODE in BO XI R3 or any other syntax please....
    Please guide me in resolving this issue.
    Thanks,
    Karthik.

    Hi,
    1.At back end check the data type for matteraction column and define it accordingly in object definition.
    2. Try to break your select clause definition into smaller parts and check it where the exact issue is  as below
    i.select decode(matterissue,null,'TYPE IS ACTION',' ACTIONu2019) ............
    ii.select decode(matteraction,null,decode(matterissue,null,'MATTER','ISSUE') ..........
    iii.select decode(matteraction,null,decode(matterissue,null,'MATTER','ISSUE'),decode(matterissue,null,'TYPE IS ACTION',' ACTIONu2019)) as TYPE from wh_cf_cmsu

  • CurrentDate as object in Universe Design

    Create object with Getdate() function in universe Design. I had tried, but no result.
    I find two sites,
    http://forumtopics.org/busobj/viewtopic.php?t=91514&sid=382f382c24ed3c4b29362a4d87747fdf
    http://forumtopics.org/busobj/viewtopic.php?p=284562&sid=7ebc50041d51f5e65d58f17d3d71a8ed
    for this but no use.
    Can any one please help me to solve this problem in universe.
    Thanks & Regards,
    Madhu...

    wrote:
    >
    > Thanks for quick reply, I am using SQL Server2008, and BO XI 3.1.
    > But this answer is not solved my problem and showing the error in
    > Universe is: The Query does not reference a table.
    >
    Don't worry for that message. It is normal.
    You can use getdate().
    Now, for WebI, I guess you want to use it with any other table don't you? You can add this CurrentDate object in any query you want instead of using it in an empty query.
    If you don't like this approach then use WebI's CurrentDate function.
    =CurrentDate()
    Edited by: PadawanGirl on Jun 23, 2011 6:48 PM

  • SAP BO universe design tool

    Hi Experts,
    I am new to SAP universe design tool. Please any one tell me difference b/w Alias and context and when these concepts we implement.
    Thanks
    Poorna

    Hi Poorna,
    A context is required if you have more than one route to a table, this would be because you can join to it from more than one table.
    If you really do need the table to be joined twice, from different routes, you can create a copy of the table - an alias - and re-route one of the joins to this.  Doing this eliminates the need for contexts.
    This copy, or alias exists at the BO level and doesn't physically create a copy on your database,  it serves to modify the sql that is generated

  • It will not parse! Creating a new object in the universe

    Hi, we have a universe and BO reports. They work fine for our clients. We are on BO XI r3.1. Now, one client captures an additional piece of info. They would like to report against this and add it high up on our drilling heirarchy. "Sure, no problem". For the following I was logged in as administrator.
    The additional data field is a 3 character code.
    1) We added an additional column to the actual database table.
    2) In Universe Designer, I refreshed universe structure and could see the additional column
    3) Created an object 'Acode' that refers to db.new_field
    4) Exported universe
    Maybe worth mentioning that I can see this object and use it in reports fine in Infoview.
    Now, I need to create a new object that will be one of 2 strings based on the 3 character code (Acode) i.e. the 'Atype' can be X or Y.
    Here's my code and it just will not parse:
    CASE
    WHEN @Select(AFolder\Acode) = 'CEL'
    THEN 'X'
    ELSE u2018Yu2019
    END
    Error I get is:
    Parse failed:Eception:DBD ODBC SQL Server driverStatement could not be prepared.State 42000
    I'd appreciate any help, believe me I have searched the forums!
    Thanks, Eddie

    Look at following SAP NOtes.
    1373739
    1184304
    Regards,
    Bashir Awan

  • Olap universe(creating new object)

    All,
    I am using bo 4.0 version and i have created an olap universe on top of bex query.i am new to olap universe.
    I have a need to create a new customized object in my olap universe out of two existing objects.As of now i am creating variables in my webi report generated out of the olap universe to fit my need.Instead i want to create a condition object or some kind of object in the universe itself.
    how can i do this?Any ideas or suggestions.
    For ex:
    my requirement looks like this,not exactly the same as indicated below but similar.
    existing objects
    city object has certain values 'hyd','new york'
    currency objecthas 'rupee','dollar'
    new person object out of the above mentioned existing objects
    if city='hyd' and currency='rupee' then 'indian' else 'non indian'
    how can i do this?Any ideas or suggestions.
    Regards,
    Reji.
    Edited by: reji2011 on Dec 7, 2011 11:10 PM

    Hi,
    there's a function builder / formula editor in Universe Designer, with OLAP universes this uses MDX syntax with XML markup.
    to build up some logic, you need to use the "IIF" operator.
    regards,
    H
    p.s.  in BI 4.0,   route-one should be the BICS BEx connection, not the OLAP .unv ..

  • Design and registration of new objects

    We have the following three objects:
    - Order, which contains:
    -- OrderStatus
    -- Vector: OrderStatusHistoryItem
    Whenever order.setStatus(newStatus) is called we would like to create a new OrderStatusHistoryItem and add that to the vector of history inside the Order.
    Our first guess was to put this in the setStatus method of the Order object, so that noone would bypass the adding to history. But... When creating the OrderStatusHistoryItem inside the Order we of course get an error from TopLink, saying that the object was not registered in the UOW.
    Is there some way that we can tell TopLink that this relationship should be registered automatically on commit? If not, what would be the best way to design this? Of course we do not want to expose our domain layer to the internals of TopLink. Would a factory be the best way to handle registration upon creation?
    Thanks,
    Anders,

    Anders,
    New objects created and attached to working copies will be discovered during commit cycle and added to the persistent model including the appropriate INSERT. The only issue you will have is that you must make sure that setStatus(newStatus) is ONLY called on working copies read from or registered with a UnitOfWork. If this is true you should be able to create the new OrderStatusHistoryItem within the setStatus method and add it to the collection without registering it in the UnitOfWork.
    Doug

  • Creating objects in BO universe designer

    Hi All,
    I have designed a universe on the top of BEx Query. I want to create additional objects at Universe Level.
    I am able to create objects in the Universe and they gets parsed, but when I pulled the same objects in the report query it generates a MDX error.
    Even a simple <Expression> @select(Key Figures\Actual) </Expression>is not working
    Please provide me some pointers for creating the objects.

    Hi Didier,
    I am creating objects in OLAP universe only.
    I am using BO XI 3.1 with SAP Integration Kit installed on my system.
    I am not able write any expression in the objects being created at universe level. Any expression, I write gives me the error while running the query while the object gets parsed at universe level.
    for @Select() I am using the same as you write?
    One more doubt what shuould be parameters of @Select()?
    Technical Definition (Generated in the select clause) or Display Name (Class name\object Name)
    If I am writing the definition as @Select([Measures].[000054728]) Then the object defition gets parsed but if I am writing it as @Select(Key Figures\Actual) then the object doesn't get parsed in the universe.
    I guess I have read somewhere that we can use "@Select(Key Figures\Actual)' while writing the expressions. Please correct if I am wrong.
    Regards,
    Rohit

  • Business Objects Universe Designer access error

    Hi
    I am getting below error when trying to access Business Objects Universe Designer XI 3.1 SP2.
    This application has failed to start because the application configuration is incorrect.Reinstalling the application may fix this problem.
    What would  be the reason and how to over come onthe same please.
    Please do the needful
    Warm Regards
    Amar
    Edited by: Amarnathat on Dec 12, 2011 9:58 AM

    Hi,
    it could be anything
    windows update
    runtime framework update
    patch deployment
    but the warning is pretty clear, start over!   it won't take 1/2 hour to get a nice clean SP04 build or other
    Regards,
    H

  • Create new object (measure) with IIF function on BW Olap universe:mdx error

    hello
    i have a universe based on a BEX query
    i want to create a new object (a measure) with the IIF(,,) function
    i created the following select:
    <EXPRESSION>IIF(@Select(Currency Type\CurrencyTypeCode)="10",@Select(Key Figures\RevenueGlobalCurrency),@Select(Key Figures\RevenueLocalCurrency))</EXPRESSION>
    defined as number
    where
    CurrencyTypeCode is a dimension (character format)
    RevenueGlobalCurrency and RevenueLocalCurrency are measure (number format)
    i always have a parse which is OK but
    when i want to  use the object on a webi report i always have an MDX error : ...invalid MDX with .... (WIS 10901)
    and advise ?
    Thanks

    Hi Didier,
    Thanks a lot for your help.
    Now it works : i do not understand why
    i explain:
    the correct syntaxe of my new measure is :
    <EXPRESSION>([Measures].[4FVLHG7OAJMNY9WC06X6JLOZQ], [0CURTYPE].[10])</EXPRESSION>
    it does not works with my "L01 currency type" BO dimension
    ([0CURTYPE].[LEVEL01])
    when i had :
    -my universe is based on a BW BEX query
    -my universe has been automaticaly generated with the assistant
    -the Currency Type Class was define as below:
           - 1 BO dimension object : L01 Currency Type =>
    [0CURTYPE].[LEVEL01]
           - 3 BO detail objects : L01 Currency Type techName =>
    [0CURTYPE].[LEVEL01].[TECH_NAME]
                                              L01 Currency Type Key =>
    [0CURTYPE].[LEVEL01].[[20CURTYPE]].[Value]
                                             L01 Currency Type Long Name =>
    [0CURTYPE].[LEVEL01].[[40CURTYPE]].[Value]
    i always had a wrong mdx syntax error on the webi report
    i updated the class with the follow
         - 1 BO dimension object : L01 Currency Type =>
    [0CURTYPE].[LEVEL01] (idem)
           - 3 BO detail objects : L01 Currency Type techName =>
    [0CURTYPE].[LEVEL01].[TECH_NAME]  (idem)
                                              L01 Currency Type Key =>
    [0CURTYPE].[LEVEL01].[NAME] (updated)
                                             L01 Currency Type Long Name =>
    [0CURTYPE].[LEVEL01].[DESCRIPTION] (updated)
    then it was working
    Then i tried to reproduce from scratch and now it also works with the previous version of the class.
    I do not understand anything
    Is there something like a cache file of the MDX query (in RSRT, cache mode is set to inactive for the bex query) ?
    ps: this is the same if a use webi under infoview (java) or webi rich client...
    Edited by: Frederic Nez on Jan 19, 2010 6:35 PM
    (edit : there is mistake in the post : objects are always between [] even if it is not dispay => change objects to code mode)

  • Business objects universe designer remote connectivity

    Hi,
    I am trying to access BO universe designer remotely. The ports 8080 and 6400 have been opened on the BO server remotely.
    I am able to acess infoView and CMC  on port 8080, however while accessing universe desinger on port 6400 using the system as <server>:6400 , username, password and authentication as Enterprise.
    I get the error "Canot access repository (USR0013). [repo_proxy 13] SessionFacade::openSessionLogon with user info has failed(Transport error: Communication failure.(FWM 00001)
    (hr=#0x80042a01)"
    Please respond if you've faced similar problem and the resolution.
    Thanks in advance.
    Raman

    1. you tray to connect with host name then try IP  if not solved.
    2. you should  open some or all ports of bottom:
    AA Alert & Notification Server 4601
    AA Analytics Server 4602
    AA Dashboard Server 4603
    AA Individual Profiler Server 4604
    AA Metric Aggregation Server 4605
    AA Predictive Analytic Server 4606
    AA Repository Management Server 4607
    AA Set Analyzer Server 4608
    AA Statistical Process Server 4609
    Connection Server 4610
    Crystal Reports Cache Server 4611
    Crystal Reports Job Server 4612
    Crystal Reports Page Server 4613
    Desktop Intelligence Cache Server 4614
    Desktop Intelligence Job Server 4615
    Desktop Intelligence Report Server 4616
    Destination Job Server 4617
    Event Server 4618
    Input File Repository Server 4619
    List of Values Job Server 4620
    Output File Repository Server 4621
    Program Job Server 4622
    Report Application Server 4623
    Web Intelligence Job Server 4624
    Web Intelligence Report Server 4625
    we tryed thees and its ok.
    regards.

  • How to remove the negative sign in universe designer?

    hi all,
    have used BEX query designer first to create the query, for the key figures, i have choose 'reverse sign' option and in the BEX analyzer report, it showing correctly with the figure having 'reverse sign'.
    however, the 'reverse sign' was not being carried over to universe designer when i tried to create a universe from the BEX query created earlier on. how do i find the option to 'reverse sign' in universe designer for the key figures?
    pls help.
    thank you.

    Hi,
    i tried creating  new 'measure' object with function 'sum', in the select statement, how should add in the multiply by -1?
    i tried typing this -> @Select(Marginal Profit\Marginal Profit) x -1 in the Select box but it failed during the parse part.
    FYI, the 'marignal pofit' above is the original 'measure' object that i want to have its negative sign reversed.
    pls help.thanks.

  • 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

  • Error when setting up connection from Universe Designer to Oracle database

    Hello,
    I am attempting to create a connection to an Oracle 10 database in Universe Designer.  I am currently running Business Objects XI 3.1 SP3 on a 32 bit machine.  I have the Oracle client installed.  In Universe Designer when I attempt to create a new connection using the Oracle 10 client I receive the following error.
    CS:DBDriver failed to load : C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\dataAccess\connectionServer\dbd_oci.dll (The specified module could not be found.)
    The dbd_oci.dll file does exist in the directory listed above.  Has anyone encountered this issue?
    Thanks in advance.
    Brock

    Hello Brock,
              Do you have multiple SQL clients installed on your system? If so, uninstall the previous versions. Check if the PATH variable is set to correct bin path and then try testing it again.
    Regards,
    Sanjay

  • What is the syntax for the mdx offset in universe designer?

    Hi everybody!!!
    I wish someone could help me with my mdx syntax. I made an universe with Universe designer (BOEdge 3.1) from a BW query and I'm trying to create in this universe an object with an offset.
    My new object has to be the result of the [0CALYEAR].[LEVEL01] with "- 1" offset, is it possible???
    I tried to put the code in the select or in the where fields of the object but without results. When I try to make a query in webi rich client this "new object" doesn't work...
    Please help me...
    Dario

    Hi Ingo,
    thank you for the reply.
    I tried to use that document...the problem is when I put the code in the object (inside univ des) and I analyse the code using the button, the syntax is every time without errors. When I try to make the query in webi rich client , if I use that object the software shows a window with error.
    I used these code in the "where" field:
    1. <EXPRESSION>@SELECT([0CALYEAR].[LEVEL01])-1</EXPRESSION>
    2. <EXPRESSION>@SELECT(Anno calendario\L01 Anno calendario)-1</EXPRESSION>
    the problem is to find the right syntax for what I want...the -1 offset for the new object from the OCALYEAR. I need that if in webi I select from the object filter [0CALYEAR].[LEVEL01] the value 2010 - in the new object will be 2009 etc...
    Dario

Maybe you are looking for

  • Bizarre & Random Dashboards Display Issues/Errors

    Hello, I am on BI 4.1 SP04 and these dashboards were developed using an equivalent level on the client tool. (4.1 SP04) Sometimes we get very strange and often random display issues with our dashboards. I have attached screen shots for examples. Some

  • Crystal report parameter asking for DB login

    Hi All, I have created a crystal report in 2008, in my crystal reprot i have a command which gives me 2 columns and a stored proced which give me 6 columns and then i joined them in link tab. Now in my report i have created a parameter using one the

  • Rulset Comparison in GRC 10.0

    GRC Experts, Need some guidance and inputs regarding Rule set comparison feature in GRC 10.0 . I have been trying to test this functionality and have given Risk , Action and permissions as the comparison parameters , however the comparison output onl

  • How to view screen in horzintal position or landscape position

    how to view iphone5s in landscape position

  • Photoshop Elements 7 tutorial book recommendation

    Hi - I'm looking for a recommendation for a practical, how-to book for Photoshop Elements 7.  I am new to the software and have purchased a book which is pretty good but it's still too much like a technical manual.  Two books by Avi Muchnick, "When P