miércoles, 23 de marzo de 2011

Install Web Intelligence Rich Client from InfoView

To install Web Intelligence Rich Client

from InfoView

 

1. Log into InfoView.

2. Click Preferences at the top right of the InfoView screen.

3. Scroll down and click Web Intelligence Preferences.

4. Click Desktop (Web Intelligence Rich Client required) in the Select a

default creation/editing tool section.

5. Click Document List at the top left of the InfoView screen.

6. Click New > Web Intelligence Document or select an existing document

to edit.

Web Intelligence Rich Client is downloaded to your computer and launched

to create the document.

Note: If you install Web Intelligence Rich Client from InfoView, the Web

Intelligence Rich Client online help system is not installed to your local

computer. If you work in Connected mode, Web Intelligence Rich Client

displays help pages stored on the server. If you work in Offline or Standalone

mode, help pages are not available.

 

Read More:

http://help.sap.com/businessobject/product_guides/boexir3/en/xi3_web_intelligence_rich_client_en.pdf

 

 

 

Spectrum Report Manager/Business Objects no CLASSPATH WIS 01901

Situation:

 

Web Intelligence Rich Client not running reports (WIS 10901 Java Class not found in classpath : com.mysql.jdbc.Driver)

 

Resolution:

 

Search for the jdbc.sbo file in the Business Intelligence Server, open it with a text editor and search for a <CLASSPATH> tag, should be something like this (This one is for MySQL):

 

<DataBase Active="Yes" Name="MySQL 5">

            <JDBCDriver>

            <ClassPath>

                  <Path>D:\CA\SC\CommonReporting3\common/4.0/java/lib/external\mysql-connector-java.jar</Path>

</ClassPath>

 

Copy the mysql-connector*.jar from that path to a folder (C:\TEMP for example) in the PC where the WEBI Rich Client is and set the Environment variable CLASSPATH to folder\mysql-connector*.jar; (for example CLASSPATH= C:\Temp\mysql-connector-java.jar;)

 

Read More:

 

 

http://wiki.sdn.sap.com/wiki/display/BOBJ/Connectivity+configuration+between+BOE+and+Data+Federator

miércoles, 9 de marzo de 2011

Lync MAPI 2010 COM Server

Situation


Lync MAPI ask for credentials

Microsoft Lync 2010 MAPI COM Server (Credentials Screen)

Environment

Windows 7 Enterprise 64-bit Client in a corporate Network (Windows 2008 R2 Domain Controller)
Microsoft Office Professional Plus 2010 (Outlook) Version 14.0.5128.5000 64-bit
Lync 2010 64-bit Client Version 4.0.7577.0

Investigation



I remember using Credential Manager when Outlook 2007 start asking for credentials, the solution to that was to delete the entry for Outlook in Credential Manager and open Outlook to restore the entry with the right values; I research a little bit more on this and found this post where Allen Song propose the * before domain name, that took care of all Credential issues (Outlook, Communicator MAPI -this was because of a 32 to 64 bit arquitectural difference- and Lync MAPI)


Solution

Go to Credential Manager
Add entry:
Log on to: *.domainname (such as *.microsoft.com)
Username: domain\username
Password: password


Source:

http://social.technet.microsoft.com/Forums/en/exchangesvrclients/thread/e3e5b9cd-cdce-45ce-a6a6-eafc5011032a

jueves, 3 de marzo de 2011

NETSH IP Config / Usar NETSH para configurar IP

To Show Current IP Config

netsh interface ip show config


To configure IP on Local Area Connection NIC (Default name for Ethernet Connection, mine is actually named LAN so verify this using ipconfig /all)

netsh interface ip set address name="Local Area Connection" static 192.168.20.10 255.255.255.0 192.168.20.1 1


Export Configuration

netsh -c interface dump > c:'default1.txt


Change Config based on exported text

netsh -f c:'default1.txt

Mostrar la configuración actual de IP

netsh interface ip show config


Para configurar un IP estático en el ethernet nic por defecto llamado "Conexión de Area Local" (en mi caso se llama LAN, verifica el nombre usando ipconfig /all)

netsh interface ip set address name="Conexión de Area Local" static 192.168.20.10 255.255.255.0 192.168.20.1 1


Exportar a texto la configuración de IP

netsh -c interface dump > c:'default1.txt


Cambiar la confiuración de IP mediante un archivo de texto (importado o creado, mientras contenga la información necesaria)

netsh -f c:'default1.txt

Read more / leer más: