Business Objects XI 4.0 Semantic Layer Questions

Can someone tell me if the new Business Objects XI 4.0 Semantic Layer is an alternative to the use of Universes?
I.E.  There will be no need for Crystal Reports 2011 Enterprise, and Xcelcius to use Universes at all to access SAP ERP data as well as SAP BI/BW data?
Is the new direction of SAP not to use Universes to access ERP and BI/BW data at all?
We are a new SAP NETWEAVER ERP installation with BI/BW and are debating on using
1)Business Objects 3.2 with Universes
2)Crystal Reports with custom SQL, Rapidmarts and Data Integrator
3)Business Objects XI 4.0 with this new Semantic Layer and BI Consumer Services.
Any suggestions,  pros and cons would be greatly appreaciated.
We are looking to align ourselves with future SAP Business Objects architectures.
Thanks in Advance,
Randy
Edited by: Randy on Feb 11, 2011 7:58 PM

Hi Randy,
Universe is an important part of the Semantic Layer, whether it is version 3.x or version 4.x of SAP BusinessObjects. In version 4.0 (officially known as BI 4.0), you will be using the new Information Design Tool to build universe. It is highly recommended for all of your presentation tools (i.e. WebI, Crystal, Xcelsius/Dashboard, etc) to go through the new Information Design Tool for data (including BW data).
The BI 4.0 Virtual Launch is scheduled on Feb 23. I suggest you to sign up at http://virtualevents.sap.com/business-analytics/login.aspx.
By the way, the SAP BusinessObjects does not have a version 3.2. The most current one is version 3.1. You might be confused with the FixPack which is now up to 3.4.
Hope this helps.

Similar Messages

  • How to use the SQL 'union' in Business Objects???

    Post Author: tatun
    CA Forum: Data Integration
    Hi eveyone. I have to write the following SQL code in Business Objects.The code has some 'union' inside the same query. I have tried to make some unions in the Data Provider, but I can just do 8 unions, and I need to do much more.
    How could I do it?
    SELECT '20 ERRORES' TIPO, COUNT() NUM, CONCAT (TO_CHAR(ROUND((count()*100)/8023,2)),' %') PORCENTAJE
    FROM PALETS
    WHERE posicion is not null
    and PALET NOT IN
    -- MATERIAS PRIMAS
    select P.PALET
    from palets p, estanteria e
    where p.posicion = e.posicion
    and p.tipo_producto = 'ROH'
    and (p.cod_producto like '%QA%' or p.cod_producto like 'E00%' or p.cod_producto like 'PU%')
    and p.estado_m not in ('E','P','F','M','A','B','C')
    and p.posicion is not null
    and e.estado = 'O'
    and p.clase_palet = 'P'
    union
    -- GRANELES
    select P.PALET
    from palets p, estanteria e
    where p.posicion = e.posicion
    and ((p.tipo_producto = 'ROH'
    and (p.cod_producto not like '%QA%'
    and p.cod_producto not like 'E00%'
    and p.cod_producto not like 'PU%'))
    or p.tipo_producto = 'HALB')
    and p.estado_m not in ('E','P','F','M','A','B','C')
    and p.posicion is not null
    and e.estado = 'O'
    and p.clase_palet = 'P'
    union
    -- MATERIAL DE ACONDICIONAMIENTO
    select P.PALET
    from palets p, estanteria e
    where p.posicion = e.posicion
    and p.tipo_producto = 'VERP'
    and p.estado_m not in ('E','P','F','M','A','B','C')
    and p.posicion is not null
    and e.estado = 'O'
    and p.clase_palet = 'P'
    union
    -- PRODUCTO TERMINADO PLANTA 0008
    select P.PALET
    from palets p, estanteria e, license l
    where p.posicion = e.posicion
    and p.palet = l.single_plate
    and p.tipo_producto = 'FERT'
    and p.estado_m not in ('E','P','F','M','A','B','C')
    and p.posicion is not null
    and e.estado = 'O'
    and l.ctry_code = '0008'
    and p.clase_palet = 'P'
    union
    -- PRODUCTO TERMINADO PLANTA 0012
    select P.PALET
    from palets p, estanteria e, license l
    where p.posicion = e.posicion
    and p.palet = l.single_plate
    and p.tipo_producto = 'FERT'
    and p.estado_m not in ('E','P','F','M','A','B','C')
    and p.posicion is not null
    and e.estado = 'O'
    and l.ctry_code = '0012'
    and p.clase_palet = 'P'
    union
    -- PALETS ASOCIADOS A ORDENES DE EXPORTACIONES
    select P.PALET
    from palets p, estanteria e
    where p.posicion = e.posicion
    and p.estado_m = 'E'
    and p.posicion is not null
    and e.estado = 'O'
    and p.clase_palet = 'P'
    union
    -- PALETS ASOCIADOS A ORDENES DE EMPAQUETADO
    select P.PALET
    from palets p, estanteria e
    where p.posicion = e.posicion
    and p.estado_m = 'P'
    and p.posicion is not null
    and e.estado = 'O'
    and p.clase_palet = 'P'
    union
    -- PALETS ASOCIADOS A ORDENES DE FABRICACION
    select P.PALET
    from palets p, estanteria e
    where p.posicion = e.posicion
    and p.estado_m = 'F'
    and p.posicion is not null
    and e.estado = 'O'
    and p.clase_palet = 'P'
    union
    -- PALETS DE MANTENIMIENTO
    select P.PALET
    from palets p, estanteria e
    where p.posicion = e.posicion
    and p.estado_m = 'A'
    and p.posicion is not null
    and e.estado = 'O'
    and p.clase_palet = 'P'
    union
    -- MUESTRAS DE RETENCION
    select P.PALET
    from palets p, estanteria e
    where p.posicion = e.posicion
    and p.estado_m = 'B'
    and p.posicion is not null
    and e.estado = 'O'
    and p.clase_palet = 'P'
    union
    -- MISCELANEO DE SUSTANCIA CONTROLADA
    select P.PALET
    from palets p, estanteria e
    where p.posicion = e.posicion
    and p.estado_m = 'C'
    and p.posicion is not null
    and e.estado = 'O'
    and p.clase_palet = 'P'
    union
    -- MISCELANEOS
    select P.PALET
    from palets p, estanteria e
    where p.posicion = e.posicion
    and p.tipo_producto = 'NONI'
    and p.estado_m = 'M'
    and p.posicion is not null
    and e.estado = 'O'
    and p.clase_palet = 'P'
    union
    -- PALETS VACIOS
    select P.PALET
    from palets p, estanteria e
    where p.posicion = e.posicion
    and p.tipo_producto = 'NONI'
    and p.estado_m = 'D'
    and p.posicion is not null
    and e.estado = 'O'
    and p.clase_palet = 'P'
    union
    -- UNIDADES DE TRANSPORTE
    select p.palet
    from palets p, estanteria e
    where p.posicion = e.posicion
    and p.clase_palet = 'T')
    Thanks

    Post Author: bhofmans
    CA Forum: Data Integration
    In Data Integrator we provide UNION functionality via the MERGE transform. However, it looks like your question is related the the IDD product line (Business Objects Enterprise), so please post your question to the appropriate sub-forum to get answers for BOE.
    Thanks,

  • Download javaServer faces business objects enterprise

    Post Author: gzofera
    CA Forum: JAVA
    hello, where do I download the javaServer face enterprise business objects?
    I am preparing an environment to start customizing web intelligence, and I lost well as to libraries, tools, etc.. which FDI sweat, ECLIPSE? NETBEANS? OTHER? WHERE THE PLUGINS FOR MEETING SET THE SDK? is there any tool that characterizes the Gazette to customize the WEBI? thanks

    Post Author: amr_foci
    CA Forum: JAVA
    i didnt know that there is something like that from Business Objects,  thats work in JSF layer
    but you can check you ESD if you've an account
    https://businessobjects.subscribenet.com/control/bobj/login
    good luck

  • I want to virtualize Business Object

    Hi all,
    I want to virtualize Business Objects in my company.
    My question is: Do You know if SAP supportes Business Objects  in virtual environment ?
    thanks,
    Konrad.

    Hi,
    Thanks for Your answer,
    Could You please show me a SAP document where is witten, i need this for my leader
    Thanks
    K.

  • Business Object Modeler Question

    Hi Experts,
    I'm new to CE and currently trying to figure out what can I do with it?
    Assume that I'm planning to create an application to follow activities that our consultants doing.
    For this, we're planning to use Local Portal Database to store datas.
    When I checked, "Business Object Modeler" is a tool which helps to create business objects and generates tables behind and access services automatically.
    Then generating a Web Service for this BO and then using the WS with VC and WD4J is a great asset for us.
    But, my questions?
    1. Is this a right approach for  such scenario?
    2. I've created a sample BO and generated WS and tried to use with VC. Create, Delete, Reand and Update Operations can be made available for WebService, but I'm unable to add FindAll or FindByMultiple Parameter operations to Web Service?
    Any idea for Q1 and answer for Q2 will be appreciated.
    Regards

    Hi,
    Yes, You have to arite the code.Actually, Application services are the place where you will wrtie your business logic.
    In th application service operations you have to call the business object operations.
    For architechturel guidelines you can go [through thii doc|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00caf8bd-487a-2a10-36a9-93d840309310].
    answer to second question:
    You can't change the code in the BO operations. What ever you want, you have to do it in the application servcies only.
    Create an application service operation  say:
    operation(). Create a input/output data structures.
    Exapmle:     OperationResponce operation(OperationRequest).
    Yuor lists add to the  OperationRequest datatype. Similarly for  OperationResponce also. In this case you don,t have any issues.Actually this is the standered for Web Services.
    [This document|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f0d97ec6-5de0-2a10-a5b3-b5926075566c], you can use as an example
    [CE 7.1 Tuorial Center.|https://www.sdn.sap.com/irj/sdn/nw-development?rid=/webcontent/uuid/903c2cdb-98d6-2a10-84b7-ab22535de11a]
    Reward Points, If you feel it is useful.
    Sampath

  • Business Object LB - Probe question

    Has anyone ever worked with Business Object for load balancing ?
    My main question concerns the probe to get all the content of a web page where I would need to follow all the links included in a probed web page to get all the content.
    Otherwise the probe is useless. Anything at this point would help.
    Thanks

    Hi Nancy,
    I can´t find it right now, but I do remember reading that there were different XML definition versions for SBO objects. In the version 1, table names where used. In the version 2, object names where used. Looks like the schema defines version 2, but SBO is using version 2.
    I will check if I can found where I did read that. Try speaking with someone in SAP and about XML versions, perhaps they could help you with this info.
    Hope helps,
    Ibai Peñ

  • Business Objects Training -General Questions

    Hi,
      I am just Going through the Business Objects...had some few general questions.
    1)What  is the current Version on BO
    2)Where does Crystal reports & Xcelsius fit in Business Objects
    3)Does Power Center & Informatica are also included in Business Objects
    Thanks

    The latest version of Business Objects Enterprise is XI Release 3.1 Service Pack 2. There have been several fixpacks delivered on top of this as well.
    Crystal Reports and XCelsius are tools to build Reports and Dashboards respectively. While XCelsius is suited for creating sleek dashboards with very aggregated data - usually less than 2000 rows per report, Crystal Reports can be used for reporting off data warehouses requiring reporting off large data sets.
    Informatica Powercenter is a tool proivded by an independant vendor and is not a Business Objects Product. Business Objects Provides Data Integrator, which is pretty much as rugged as Informatica and provides all the functionalities of ETL(Extraction Transformation and Loading).

  • General questions on Business objects

    hi there
    i have questions related to Business objects -
    can you please help?
    1) How to provide access to an object to a user in business objects?
    2) How to provide different database connection to multiple users for the same universe?
    3) How to create link for an object and provide access to the user?
    thanks
    tony

    Hello Tony,
    BO is a name for a product suite containing lots of products.
    Please post a bit in more detail which product and which version you are using.
    To begin with some documentation please see our [BO product guides|https://websmp106.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000713358&_SCENARIO=01100035870000000202].
    Best regards
    Falk

  • OInvoice Business Object XML Schema question

    I am trying to produce an xml file based on the oInvoices business object to use in an EDI translation.  I am running Sap Business One 2005 A SP:01 PL:03.  I used one of the sample programs in the SDK Samples folder to produce an XML schema of the oInvoices object.  The sample program is in the COM DI folder, program #06. ObjectSchemas.  When I run this program is produces an xml file that is really a schema for oInvoices, and it uses the GetBusinessObjectXmlSchema function for the oInvoices BoObjectType.  If I use the SaveXML function on the SAPbobsCOM.BoObjectTypes.oInvoices, I get a different xml file that does not use the same table or fields names.  (See sample below - schema uses the table name, OINV, SaveXml uses 'Documents' in place of the OINV name, schema has a QueryParams tag set, SaveXml does not, SaveXml has a Version defined within the AdminInfo, the Schema does not have this). Why doesn't the oInvoices xml schema match the xml file produced using the SaveXML function.  Which example below is the correct xml representation of an Invoice?  I have copied parts of each file below.
    oInvoices file produced using GetBusinessObjectXmlSchema for oInvoices:
    - <element name="BOM">
    - <complexType>
    - <all>
    - <element maxOccurs="1" minOccurs="0" name="BO">
    - <complexType>
    - <sequence>
    - <element maxOccurs="1" minOccurs="0" name="AdmInfo">
    - <complexType>
    - <all>
      <element maxOccurs="1" minOccurs="0" name="Object" type="long" />
      </all>
      </complexType>
      </element>
    - <element maxOccurs="1" minOccurs="0" name="QueryParams">
    - <complexType>
    - <all>
      <element maxOccurs="1" minOccurs="0" name="DocEntry" type="string" />
      </all>
      </complexType>
      </element>
    - <element maxOccurs="1" minOccurs="0" name="OINV">
    - <complexType>
    - <sequence>
    - <element maxOccurs="unbounded" minOccurs="0" name="row">
    - <complexType>
    - <all>
      <element maxOccurs="1" minOccurs="0" name="DocNum" type="long" />
      <element maxOccurs="1" minOccurs="0" name="DocType" type="string" />
      <element maxOccurs="1" minOccurs="0" name="Handwrtten" type="string" />
      <element maxOccurs="1" minOccurs="0" name="DocDate" type="string" />
      <element maxOccurs="1" minOccurs="0" name="DocDueDate" type="string" />
      <element maxOccurs="1" minOccurs="0" name="CardCode" type="string" />
      <element maxOccurs="1" minOccurs="0" ......
    OInvoices xml file produced using SaveXml
    - <BOM>
    - <BO>
    - <AdmInfo>
      <Object>13</Object>
      <Version>2</Version>
      </AdmInfo>
    - <Documents>
    - <row>
      <DocNum>5</DocNum>
      <DocType>dDocument_Items</DocType>
      <HandWritten>tNO</HandWritten>
      <Printed>tNO</Printed>
      <DocDate>20050116</DocDate>
      <DocDueDate>20050215</DocDueDate>
      <CardCode>C20000</CardCode>.....
    I did not copy all of the xml for each file as it would be too lengthy. 
    Thanks,
    Nancy Walk
    [email protected]

    Hi Nancy,
    I can´t find it right now, but I do remember reading that there were different XML definition versions for SBO objects. In the version 1, table names where used. In the version 2, object names where used. Looks like the schema defines version 2, but SBO is using version 2.
    I will check if I can found where I did read that. Try speaking with someone in SAP and about XML versions, perhaps they could help you with this info.
    Hope helps,
    Ibai Peñ

  • Question of Business Object Data Service

    hi Expert,
    Now we are doing project for CRM integration to BODS (Business object Data Service).
    There is business request for deduplicate check whole CRM Business partner data base.
    The data quantity is 10Million and most of them are consumer role, we prefer to clean up the BP data via BODS and in CRM we use standard account merge functionality.
    but I not sure whether BODS support deduplicate check for 10M consumer and how to do it?
    Is there any one had experience or idea for this request?
    Br.
    William.

    Sure DS can do that, no doubt about it. But before starting, I recommend you to carefully read the Match Consolidate Transform wiki page. Pay special attention to the setting of the BREAK_KEY that will have a significant impact on the performance and throughput of the matching process.

  • Question on Business Object??

    How can Business Object help the companies?

    Check the website of Business Object to know
    [http://www.businessobjects.com/]

  • WF Question: Call Transaction From Business Object Not works

    Hi Frinds
    I need some help
    in Business Object ZBUS2012  I have a method that run a report (ALV)
    in the PO nubmer I have a drill down to me23n with parameter BES (EBELN)
    when I click the PO me23n Opened Empty without the PO Number.
    If i try to run the report not from the BO its woks fine.
    it's opened me23n with the right PO Number.
    What can Be The Problem ?
    Thanks in Advance

    Hi Kobi
    Are you passing the parameter from the business object to the method of you ALV report, if in doubt, please post your method code?  Most likely this is what is wrong.  The correct way to reference the PO number within the method is
    object-key-purchaseorder
    Then test using SWO1 to ensure you method is correct before calling through workflow.
    Regards
    Gareth

  • Please only post SAP Business Objects products related questions here

    Hi
    Thanks for reading.
    Unfortunately many people get confused with the term BI which was used for SAP BW at one time. With the acquisition of Business Objects some product names have changed.
    SAP BW is still SAP BW, please post in the respective forums: /community [original link is broken]
    Business Intelligence in this forum refers to the these SAP Business Objects products:
    SAP Business Objects Enterprise
    SAP Business Objects 4.0
    SAP Business Objects Intelligence Platform 4.0
    For more information and great articles and videos please see:
    http://www.sdn.sap.com/irj/boc/bi
    Kind Regards
    Roland Hoeller

    >
    Suresh Babu Aluri wrote:
    > Hi,
    >
    > You can create All prompt in lovs of reuired object as
    >
    > do the following steps for all prompt creation.
    >
    > 1. Go to Object to which the lovs are mapped. -> select object -> properties -> advanced (not sure) -> edit lovs -> then a query panel will display and it will have query like
    >
    > select distinct(..........) from ......................
    >
    > change the above query to
    >
    > select distinct(..........) from ......................
    > union
    > select 'all' from dual -> dual is temporary table in oracle (you define a temporary table w.r.to database)
    >
    > 2. In designer go to the object on which prompt is defined.
    > i.e.
    >
    > may be in selecor where clause you might defined prompt as
    >
    > .............. @prompt('Member Name')
    >
    > so change that to
    >
    > .................. .............. @prompt('..Member name')
    > or
    > 'all' in @prompt('Member name')
    >
    > 2. For your second requirement the max no lov values are changed in prm files. For that go to programs -> BO -> BO ii.5 or ur version -> dataaccess->win32_x86-> based on ur back end select required folder -> search in *.prm files to change the max no lovs.
    >
    > Cheers,
    > Suresh Aluri.
    Hi Suresh
    Thank you for the detailed response.  I tried your suggestions and neither works.
    LOV issue:
    Within the Business View manager, i right-click on the LOV object and click "Edit List of Values..." and i get a dialog box that only shows me Available fields, List of Value Fields used, description field, and Referenced objects. Along with buttons for Clear Instance & Refersh Status.
    I have read similar posts to what you suggested but never get to the same place as described.
    Please advise....
    as for _Max Number LOV _
    I have researched this as well and found the same suggestion you made. But the PRM file does not have that value, and the file contains all XML code
    Now what???
    Thanks
    Mike

  • Business Objects Question

    Has SAP come out with anythign to integrate Business Objects with BI 7.0? If our company upgrades to 7.0 will Business Objects work it? Is there an Add-on for it yet? Where can I get more inforamtion about it?

    Please check this document for required info.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10c3bca6-7dbc-2a10-7aa8-81d2731c7bb1
    Also you will find many articles on this here-
    https://www.sdn.sap.com/irj/boc/businessobjects-for-sap
    https://www.sdn.sap.com/irj/boc
    Abhijit

  • SAP Business Object Methodology

    Hi Experts,
    I'd like to know which are the methodologies to implement SAP Business Object, excluding SAP BW and includin SAP BW. I know for SAP the ASAP methodology is used, but I don´t know for SAP BO.
    Greetings & regards,
    Leonel

    >
    Leonel Massiccioni wrote:
    > I'm going to implement Xcelsius, Web Intelligence, Crystal Report and Live Office on  Windows.... But I need to konw the ways or methodologies to implement BO....
    Hi leonel, that's good. But once again, you need to indentify the following first...
    1. Who are the target audience (i.e. the end-users)?
    2. Who are going to develop the reports using those tools? Is it centralized (by BI developers or IT developers) or self-service (by the end-users themselves)?
    3. What skill set do you have in-house? Do they know know how to use those tools? Do they need training?
    4. Where are the data sources? Are you going to build a reporting data mart? Do you have the in-house resources to do so?
    5. Do you have the in-house resources to build the semantic layer (i.e. the universe which is the heart-and-soul of BusinessObjects)?
    These are just the initial questions. More will come up when you get deeper into the process. Not until you can answer all these questions, you cannot proceed. I also would like to emphasize that, while you can have a general guideline, there is really no cookie-cutter, one-size-fits-all implementation plan. It varies from company to company. You need to sit down with all the stakeholders to come up with a good plan. And once again, you should consider bringing in hire-gun to help you out. It is very important to do it right at the beginning.
    If you are using the BusinessObjects tool, you should join [ASUG|www.asug.com]

Maybe you are looking for

  • ERROR 1721, problem with windows installer package

    i have windows vista basic on a acer aspire 5535, itunes has always worked on my laptop until apple asked me if i wanted to update so i did (i believe the update was for itunes 9/9.2) after this update i am unable to install itunes and get the error

  • Can't access iTunes store on new Macbook air

    Hi - I just bought a Macbook air and I've synced my phone to it, but when I try to open the iTunes store, all I get is a blank screen.  What do I need to do? Thanks!

  • How do you produce both Customs Export & Import documentation in an STO?

    Hello All - How do you produce both Customs Export & Import documentation in an STO scenario? For instance, if a company would like to create a STO in SAP to move materials from one plant to another and would like to produce both the Export & Import

  • Connecting bluesence AD (bluetooth device)

    hi there, I have a big problem. I have a bluesence AD, which is a bluetooth device that sends data from a sensor. i tried it with the software that comes along with the hardware and it works fine. BUT: I want to read the data using a labview program,

  • How to get my redeemtion code

    im am installing photoshop and is asking me to  to get my redeemtion code