cancel
Showing results for 
Search instead for 
Did you mean: 

Creating local project with the information design tool

Former Member
0 Kudos

Hi,

Apologies this may not be the most appropriate forum but I can't find a more appropriate one!

I'm trying to get to grips with the business objects IDT.  I'm trying to create a local universe from a sql server database.

I have Created a local project.

Created a relational connection

Created a data foundation

However as soon as I add a table to my data foundation the IDT crashes, it does it consistently at this point and I can not get past here.

Can anyone give me an indication as to what the problem may be?

Thanks,

Dan

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi - thanks for the suggestions, unfortunatley the only one I can try is to delete the bimodeler_14 folder which when done leaves me with the same problem.

I can't see the SAP notes so I've passed it to our support with a link to the thread to see if that will help.  Unfortunately with SAP tools these things never appear to be easy to resolve, so I can't flag anything as an answer.

Former Member
0 Kudos

HI Dan Pedder,

Before going to the below, please check your Client tools Support Pack and Patch level. That should be same with server version and patch.

It seems your local IDT workspace has become corrupt.

Try this....

Delete the Directory from your client mechine

C:\Users\User\.businessobjects\bimodeler_14

Please refer the below SAP Notes, might helpful to you.

1841484

1626736


Thanks,

Raju

former_member191664
Active Contributor
0 Kudos

Hi,

"as soon as I add a table to my data foundation the IDT crashes"

a. what is the product version of your BI 4.0?

The reason is if your BI4.0 is before BI4.0 SP04, I'd suggest you to download and setup a BI4.0 SP06 sandbox with client to test it again.

b. Is there a error message and/or error code?  Is there error captured in your event viewer?

c. Can you follow SAP BO KB 1586166 - How to enable tracing for BI4.0 client applications

Symptom

How to enable tracing for Web Intelligence Rich Client (known as "Interactive Analysis Desktop" prior BI4.0 SP2) - WRC?

How to enable tracing for Universe Design Tool - UDT?

How to enable tracing for Information Design Tool - IDT?

Environment

SAP BusinessObjects BI 4.0

Web Intelligence Rich Client (known as "Interactive Analysis Desktop" prior BI4.0 SP2)

Universe Design Tool

Information Design Tools

Resolution

There are two ways of tracing the BI client applications listed in the Environment section – select which ever suits you better:

Trace configuration file

Environment variable

For both scenarios a trace configuration file is required, the difference is only in the file name and location.

Trace Configuration file

The content of the file should be:

active = true;

importance = '<<';

size = 100000;

keep = true;

log_dir = @"<output_path>";

NOTE:

<output_path> is the location where the log files will be created

An equivalent to '<<' in the importance parameter is xs (e.g.: importance = xs;)

The @ sign before the "<output_file>" is important to locate the directory, especially for Java based clients (IDT, WRC)

If severity parameter is used in the trace configuration file, make sure it has a space between the single quotas, in order to get a full trace, e.g.: 

active = true;

importance = '<<';

severity = ' ';

size = 100000;

keep = true;

log_dir = @"<output_path>";

  1. Tracing via trace file

Each client searches for the trace configuration file in different folders. Bellow is the list of the paths and file names for each client application. To enable tracing, create a trace configuration file with the name and in the location appropriate for the client.

Universe Designer Tool:

..\SAP BusinessObjects\designer_trace.ini

..\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\win32_x86\designer_trace.ini

Information Designer Tool:

<USER_HOME>\.businessobjects\bimodeler_14\config\BO_Trace.ini

..\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\conf\BO_Trace.ini

Web Intelligence Rich Client:

..\SAP BusinessObjects\WebIRichClient_trace.ini

  1. Tracing via environment variable

Tracing via environment variable simplifies tracing by using the same name and location of the trace configuration file regardless of the client application being traced. To enable tracing, create the trace configuration file and the environment variable pointing to the file:

Right-click My Computer > click Properties > Advanced tab > Environment Variables

Click New in the System or User variables section

Create BO_TRACE_CONFIGFILE variables. For example:

Variable Name: BO_TRACE_CONFIGFILE

Variable_Value: c:\botrace\BO_trace.ini

OK > OK to exit the dialog boxes

NOTE:

On Windows 7 the Environment variables are in Start > right-click Computer > Properties > Advanced System Settings > Advanced tab

User environment variables overwrite System environment variables – make sure the variable is created only once

It is also possible to create a BO_TRACE_LOGDIR environment variable, however if log_dir parameter is used in the trace configuration file, it will override the BO_TRACE_LOGDIR environment variable

Always make sure you specify the location of the log files (either in the trace configuration file log_dir parameter, or via BO_TRACE_LOGDIR environment variable to avoid creating the logs in multiple folders

If both tracing via a trace file, and environment variable is configured, the BO_TRACE_CONFIGFILE takes precedence

Database connection tracing

In certain occasions, more details are required on the database communication. There is a way to trace the communication between the client application and the DB driver via the connection server (CS) layer. Most of the relational databases connections could be traced via the CS (cs.cfg). Please check the referenced Knowledge Bases at the end of this document for specific database connection tracing

To enable CS database tracing follow these steps:

Navigate to the cs.cfg file located in "..\SAP BusinessObjects Enterprise XI 4.0\dataAccess\connectionServer"

Open the cs.cfg file in a text editor such as Notepad

Make sure the trace near the bottom of the file is activated

<Traces Active="Yes">

Save and close the file

NOTE:

The CS trace is enabled by default

For UDT and WRC there will be no extra file created, the logs will be written into the application log

For IDT the CS logs will be written into "InformationDesignTool_<PID>_<timestamp>_trace.glf"

Log file output

Each BI client application creates different trace logs. Include all files when sending to SAP support:

Universe Designer Tool:

designer_<PID>_<timestamp>_trace.glf

designer_sdk_<PID>_<timestamp>_trace.glf

Information Designer Tool:

idt_<PID>_<timestamp>_trace.glf

InformationDesignTool_<PID>_<timestamp>_trace.glf

Web Intelligence Rich Client:

wicdztrace folder

WebIRichClient_<PID>_<timestamp>_trace.glf

WebIRichClient_sdk_<PID>_<timestamp>_trace.glf

Regards,

Jin-Chong