How To Install Efashion Universe Sandbox
Four years ago, I wrote an article entitled Ten Features That Absolutely Must Be in BI 4.0 Feature Pack 3. With SAP BusinessObjects BI 4.2 SP3 soon going into general availability, I thought it might be interesting to review the current status of my original wish list.
1. Tree control for Web Intelligence universe selection
No improvements here and none expected for the forthcoming SAP BusinessObjects BI 4.2 Support Pack 3. But perhaps SAP will surprise us with a redesigned universe selector panel in the fully-functional Java-free Web Intelligence coming next year in Support Pack 4?
To install Universe Sandbox ² without any errors and problems, you need to first install following softwares to fix.dll and runtime issues. Before you move forward with the tutorial, you need to first disable your antivirus. Universe Sandbox ² is a physics-based space simulator that allows you to create, destroy, and interact on an unimaginable scale. It merges real-time gravity, climate, collision, and material interactions to reveal the beauty of our universe and the fragility of our planet. Install Steam login language Store Page. Universe Sandbox ². All Discussions Screenshots Artwork Broadcasts Videos Workshop News Guides Reviews. Universe Sandbox ² General Discussions Topic Details. Sep 2, 2017 @ 5:13pm Can't Change color of planets? I know there is a way to change the color by high elevation mid and low.
2. Improved visual distinction between UNV and UNX universes in Web Intelligence
I don’t think there’s been much change here. Still an opportunity for some subtle UI improvements.
3. OLAP universe support for Explorer
How To Install Efashion Universe Sandbox Video
Lack of OLAP support for this aging product is by design according to SAP KB 1559221. My friend who requested it got tired of waiting and is now a Tableau developer. True story.
4. UNX universe support for Live Office
Fixed. UNX support was finally added to starting with SAP BusinessObjects BI 4.1 SP6. Live Office isn’t for everyone, but Excel geeks seem to really like it. And Live Office is going to live on in the simplified BI portfolio as its functionality is converged into a future version of Analysis for Microsoft Office.
5. Improved qualification selection in Information Design Tool
Fixed. There have been many usability improvements in the Information Design Tool and this is one of them. If you last took a look at Information Design Tool way back when version 4.0 was released, it’s time to take a second look at the new 4.2 release.
6. Corporate customization of Central Management Console
This request is still unfulfilled but perhaps we’ll see something when the CMC gets the Fiori treatment next year? I’m not looking for robust customization like the BI Launch Pad has. I just want a simple way to change some text strings and colors (using preset themes) to easily distinguish multiple landscapes in the BI lifecycle (Development, Test, Production).
7. No more monolithic Adaptive Processing Server
Fixed. SAP BusinessObjects BI 4.1 introduced the System Configuration Wizard for APS configuration and some other post-installation tasks, which you can read about here.
My big gripe here continues to be that Design Studio and Lumira both add services to the Adaptive Processing Server. Because these two products are “add-ons”, the System Configuration Wizard doesn’t accommodate them very well. I hope the situation will improve next year when Lumira and Design Studio 2.0 standardize on a single server-size engine.
8. Improved control of Web Intelligence default paper size
Still an open item. Since non-A4 paper size mostly an accommodation for American users, no doubt this improvement is far down on the enhancement backlog, if it’s there at all. Perhaps paper size is less relevant in a greener 21st century?
9. Improved browser support
Fixed. SAP has made major strides in browser support. The biggest obstacle to browser support is how various browsers handle (or refuse to handle) plugins like Adobe Flash and Oracle Java. Fortunately, SAP is working really hard to deliver a plugin-free version of the platform, starting with enhancements to the Web Intelligence HTML panel in the forthcoming BI 4.2 SP3.
10. Improved and better organized sample content
Still as bad as before, except that SAP has added some really nice sample content for mobile devices (see related article, Sampling the Mobile BI Samples with BI 4.1).
Conclusion
SAP BusinessObjects Business Intelligence BI 4.2 Support Pack 3 is almost ready for general availability and contains some really exciting improvements, including four of the items on this wish list. But I hope there’s still time to include the remaining six improvements in BI 4.2 SP4.
What’s on your SAP BusinessObjects BI 4.2 SP3 wish list?
Hi All
First of all thanks to Manikandan Elumalai, Rahul Rao and of course to SAP Admin Guide.
SAPBO SP4 14.0.4.738
Tomcat 6
SQL Server Version 10.0.1600.22
OS: Windows Server 2008 R2 Enterprise
CMS DB Name: BOE140
Created two System DSN in Server using both 32 bit Datasource Administrator and Data Sources(ODBC)
Start Menu> All Programs>SAP BusinessObjects BI Platform 4> SAP BusinessObjects BI Platform >
32-bit Datasource Administrator > Sysytem DSN> Add
Select SQL Server
Name given as BusinessObjects Audit Server 140
Server: CMS DB (SQL Server Instance name (BOE140) given while I installed SAP BO or it will display in dropdown)
Next > SQL Server Authentication > Give ‘boeuser’ and its password. The boeuser is created while installing BO.
Next > Check the box ‘Change default DB to’ give it as BOE140_Audit.
Next>Finish
Control Panel> Administrative Tools> Data Sources(ODBC)>System DSN>Add>
Select SQL Server
Name given as BusinessObjects Audit Server 140
Server: CMS DB (SQL Server Instance name (BOE140) given while I installed SAP BO or it will display in dropdown)
Next > SQL Server Authentication > Give ‘boeuser’ and its password. The boeuser is created while installing BO.
Next > Check the box ‘Change default DB to’ give it as BOE140_Audit.
Next>Finish
Then went to CMC>Auditing
Under Configuration>ADS Database
Connection Name: BusinessObjects Audit Server 140
Type: Microsoft SQL Server
User Name: boeuser and its password
Restarted SIA.
It will show such a status, if configuration is success.
Added <Aliases>
<Alias>MS SQL Server</Alias>
</Aliases>
after the line
<DataBase Active='Yes' Name='MS SQL Server 2008'>
in<Install_Dir>dataAccessconnectionServerodbcsqlsrv.sbo.
In CMC>Applications>Monitoring
Enable Monitoring Application check box if it is not checked.( If you checked it now, restart SIA.)
I took the back up of my Derby DB and exported data from embedded db as CSV files. ( As per SAP, it is not
mandatory)
Changed Trending DB to Audit universe.
Restarted SIA.
In Server
Opened SQL Server Management Studio.
Gave the boeuser and password to connect to server.
Server type: database engine
Server name: servernameBOE140
There were three databases System databases, BOE140, BOE140_Audit.
BOE140 contains only CMS tables and BOE140_audit contains ADS and MOT tables.
Queried from BOE140_Audit databse.
For example to get number of hits by user
select e.User_Name, count(distinct e.Session_ID)
from dbo.ADS_EVENT e, dbo.ADS_EVENT_TYPE_STR ets
where e.Event_Type_ID=ets.Event_Type_ID
and ets.Event_Type_Name='Logon'
and ets.Event_Type_ID = 1014
AND Language='EN'
and e.Start_Time>'2013-07-12'
group by e.User_Name
Also a Universe on Auditing DB was also created.
First I found out the port of SQL Server by following
Task Manager
View Select Columns Check PID OK
Find sqlservr.exe as the Image Name, note the PID
Command prompt:
netstat -ano findstr *PID*
(http://benchmarkitconsulting.com/colin-stasiuk/2009/02/02/what-tcp-port-is-sql-server-running-under/)
Then opened the port in Server.
Then created a connection to Auditing DB(relational) using the System DSN created through IDT.
Then I created WebI reports needed.
Its working fine...
All experts are invited to give suggestions and modifications...
Thanks
Sandeep