Quantcast
Channel: SCN : Unanswered Discussions - Semantic Layer
Viewing all 1291 articles
Browse latest View live

adding values to object in IDT

$
0
0

Hello All,

 

when I run "show values" for an object in IDT. it shows me list of all values available for that column.Is there any way I can add values to the object?

 

for example: In the screenshot I have 'messagetype' showing values  'CM and 'EM' .Now i want another value 'ALL' which has to be both ' CM and EM'.

 

How can I do it...any inputs appreciated.

 

Thanks,

Ushakiranvalues.png


Join using the same table

$
0
0

Hi BO Gurus,

 

I am starting using Business Objects

I am using Information Design Tool and i need to create a join using the same table.

 

I have a table with the following lines

 

                  Field1           Field2           Fielf3

                   991              HR1        

                   992              SUP             HR1

 

I need a result like this:

 

                  991               HR1            SUP     992

 

 

How can i obtain that in a report?

 

I tryed to  create an alias or a derivate table but i get the message.

This connection supports only detection based on database keys.

 

 

Can someone give some advices for this question?

 

 

Thank you and best regards

 

João Lages Fernandes

Message when try Join in Information design tool

$
0
0

Hi All,

 

 

I am starting to use Information Design Tool but when try to insert a Join i got

 

 

This connection supports only detection based on database keys

 

I try to define Keys on tables but the field is in grey and i can not define it.

 

What  i am doing wrong? Thank you and best regards

 

 

João Lages Fernandes

Motor .mbd Download

$
0
0

Hello everyone ,

 

 

I need to download Motor.mbd  access database used in BOU310 .. any help ?

How to create a custom column in Universe

$
0
0

Hello,

 

I have a requirement where I need a custom column in Universe. Basically I have five column and need a sixth column which gives me value from 0 to 23 based on the previous five columns

 

[Plant] [Equipment] [ Method] [ Media][ Time Begin] [ Custom field]

 

[1014]     [ACL]         [ Hourly]         [AIR]    [2014-02-13 00:00:00]    [1] 

[1014]     [ACL]         [ Hourly]         [AIR]    [2014-02-13 00:00:00]    [2] 

[1014]     [ACL]         [ Hourly]         [AIR]    [2014-02-13 00:00:00]    [3] 

[1014]     [ACL]         [ Hourly]         [AIR]    [2014-02-13 00:00:00]    [4] 

[1014]     [ACL]         [ Hourly]         [AIR]    [2014-02-13 00:00:00]    [5] 

[1014]     [ACL]         [ Hourly]         [AIR]    [2014-02-13 00:00:00]    [..] 

[1014]     [ACL]         [ Hourly]         [AIR]    [2014-02-13 00:00:00]    [23] 

[1014]     [ACL]         [ Hourly]         [AIR]    [2014-02-13 01:00:00]    [1]

[1014]     [ACL]         [ Hourly]         [AIR]    [2014-02-13 01:00:00]    [2] 

[1014]     [ACL]         [ Hourly]         [AIR]    [2014-02-13 01:00:00]    [3] 

[1014]     [ACL]         [ Hourly]         [AIR]    [2014-02-13 01:00:00]    [4] 

[1014]     [ACL]         [ Hourly]         [AIR]    [2014-02-13 01:00:00]    [5] 

[1014]     [ACL]         [ Hourly]         [AIR]    [2014-02-13 01:00:00]    [..] 

[1014]     [ACL]         [ Hourly]         [AIR]    [2014-02-13 01:00:00]    [23] 

 

Basically data is same in all the columns for first 23 readings. In 24th reading data changes in [Time Begin] column..in that case the Custom field should start from [1].

 

Any suggestions?

What is the Purpose of Custom Properties in Parameter @ Data Foundation in IDT

$
0
0

Hi Experts,

 

 

What is the Purpose of Custom Properties in Parameter @ Data Foundation in IDT. How to use this.

 

 

Any idea.

 

 

 

 

Thanks

Arvind Shukla

Removing @Prompt cause incorrect sql

$
0
0

select * from
(select
LONG_NAME,OCCPDESC,MAJORCLSCODE,BRANCH_REPORTTO,
ZPRODUCER,RIDESC,REPTYPE,AGNTNUM,CNTTYPE,REPNUM,RNLTYPE,CLNTNUM,OCCPCODE, CLNTNAME,
CHDRNUM,PREMCL,TRANNO,BATCBRN,BATCACTYR,BATCACTMN,BATCTRCDE,SHORTDESC,GWP
from
(select K.LONG_NAME,J.OCCPDESC,I.MAJORCLSCODE,G.BRANCH_REPORTTO,F.ZPRODUCER,F.RIDESC,E.REPTYPE,E.AGNTNUM,E.CNTTYPE,E.REPNUM,E.RNLTYPE,C.CLNTNUM,C.OCCPCODE, C.CLNTNAME, A.CHDRNUM,A.PREMCL, A.TRANNO,A.BATCBRN, A.BATCACTYR,A.BATCACTMN,A.BATCTRCDE,L.SHORTDESC,sum((-1)*A.TRANAMT01 -A.TRANAMT03) as GWP
FROM [MY_DTA_MIS].[dbo].[VW_NSAP_T_ZBUW] A
inner join [MY_DTA_MIS].[dbo].[CDE_T_CLNT] C on A.CLNTNUM=C.CLNTNUM
inner join [MY_DTA_MIS].[dbo].[SAP_T_CHDR] E
ON A.CHDRNUM=E.CHDRNUM AND A.BATCACTYR=E.BATCACTYR and A.BATCACTMN=E.BATCACTMN AND A.TRANNO=E.TRANNO
inner join [MY_DTA_MIS].[dbo].[CDE_T_AGNT] F
on E.AGNTNUM = F.AGNTNUM
inner join [MY_DTA_MIS].[dbo].[VW_CDE_T_BRANCHGROUPING] G
on A.[New_BRANCH_CDE] = G.[New_BRANCH_CDE]
inner join [MY_DTA_MIS].[dbo].[CDE_T_T3640] H
on A.PREMCL = H.PREMCLS
inner join [MY_DTA_MIS].[dbo].[CDE_V_T7039] I
on H.B5MAJORCLS = I.MAJORCLSCODE
left join [MY_DTA_MIS].[dbo].[CDE_T_T3644] J
on C.OCCPCODE = J.OCCPCODE
inner join [MY_DTA_MIS].[dbo].[CDE_T_T4965] K
on F.ZPRODUCER = K.ZPRODUCER
inner join [MY_DTA_MIS].[dbo].[CDE_V_T1688] L
on A.BATCTRCDE = L.TRANSCODE
where (A.BATCTRCDE='T413' or (A.BATCTRCDE='T405'  and E.REPTYPE in (select REPLCODE from CDE_T_T3586)))and A.SACSCODE in ('FG', 'CO')
and A.BATCACTYR = @Prompt('Enter This Year','C','Year Others',mono,constrained)

group by K.LONG_NAME,J.OCCPDESC,I.MAJORCLSCODE,G.BRANCH_REPORTTO,F.ZPRODUCER,F.RIDESC,E.REPTYPE,E.AGNTNUM,E.CNTTYPE,E.REPNUM,E.RNLTYPE,C.CLNTNUM,
C.OCCPCODE,C.clntname,A.CHDRNUM,A.PREMCL,A.TRANNO,A.BATCBRN,A.BATCACTYR,A.BATCACTMN,A.BATCTRCDE,L.SHORTDESC)b)TY

 

 

What is the possible cause? It ask me wanna continue or not after validate the sql query?

Error: String index out of range: 47

$
0
0

Hello,

 

When I create a Data Foundation based on multisource-enabled connection with 2 csv files I get an error by the 2 connections. See attachments.

When I use single connection it works for both files so it's not a file based error. I've tried it with 2 different versions 4.1.1 and 4.1.4.

Could some one help me with this error?


ECC - IDT : BAPI with Tables - How to join in DF?

$
0
0

Hi Everybody,

 

We have standard BAPI BAPI_POORDER_GET_LIST in ECC which we like to call from Information design tool and which we have succeeded till DF. But the problem is when how to use in Data foundation as the parameters are defined as tables range for example: ORDER_NUMBER_RANGE.

 

How to join ABAP function export tables E_T_HEADER table to ORDER_NUMBER_RANGE in DF ( otherwise Business layer is not working ) or we cannot join them and  have to use individual parameter by creating a new ZBAPI with "to" and "from" for individual parameter ?

 

For example,

Import parameters

Like ORDER_NUMBER_FROM type BAPI_ORDER_HEADER1-ORDER_NUMBER and

ORDER_NUMBER_TO type BAPI_ORDER_HEADER1-ORDER_NUMBER.

 

Any help will be appreciated.

 

 

Regards,

Sandeep

Multisource-Enabled erorr in IDT

$
0
0

Hello Folks,

Good evening to everyone.

I have an issue while creating the Data Foundation Layer.

 

Explanation:

I have created two connections from System DSN of ODBC.One connection is to connect with the SQL Server database and the another to connect to the excel data import. If I create a data foundation layer with either of the above mentioned two connections.It's working fine and I could able to see all the tables of a database of SQL Server (or) all the columns of a excel which I am trying to import, but if I want to create a data foundation layer with both the connections by using Multisource-Enabled option. I am getting the error.Can you please help how to trouble shoot it.

 

Error Message:

[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified.

 

Also I am attaching the snapshot of the error message for your better understanding.

Thanks in advance friends.

 

Regards,

Bhaskar Reddy

SAP Data Type - RAW, values not displayed in IDT

$
0
0

IDT Connected with SAP CRM table CRMD_ORDERADM_H with field "GUID" of data type - RAW,

length - 16. In Data foundation, when we display this column values,

which has properties of Display size zero, data type as "Undefined" in IDT,

Null Values displayed. All other fields except field – GUID are displayed in IDT
for the same table.

 

 

1) Built infoset on SAP CRM table - CRMD_ORDERADM_H

2) SAP Query built on above infoset.

3) IDT - connection established with SAP as R/3 Release 4  (SAP Java connector)

4) Multi Source data foundation created on above SAP Query

5) Inserted above SAP Query into Data foundation.

6) When displayed column values of field "GUID" - Null values displayed

7) Created Business Layer on top of above data foundation, B.L Query also displays Null Values 

8) Changed data type at Business Layer, from "none" to "Long Text" in Dimension

9) NO data displayed .

 

Any help with above issue apprecaited.

process dp command error with multi source universe

$
0
0

hi,

 

If i create a webi report on multi source universe am getting the below error.

 

"an internal error occurred while calling 'ProcessdpcomandEx" API. (error: ERR_WIS_30270) (WIS 30270)

But if i create the single source universe on the same connection am able to create the report with out any error.

 

The only difference is selecting "multi-source" while creating DF.

 

As you know this is a generic error, how to debug the same?

 

Am using BOXI 4.0SP3 environment to create the universe using IDT with ODBC connection to sql server database.

does anybody got this error?

 

 

Thanks,

Divya

how to resolve 4 fact tables and 2 dimension table

$
0
0

Hi Everybody,

 

 

This is one of the interview question?

 

In my universe i have 4 fact tables and 2 dimension tables and each fact table  map with 2 dimensional tables?

 

how to resolve the loop and traps in this scenario.

Hello SCN need help in Audit Universe and Webi report.

$
0
0

Hi all I recently started working on Audit reporting and this is first time I am working on it.I am facing few issues here is the list.

My Audit database is Oracle

  1. When I did a integrity check on my universe It shows error and warnings and its common error for all It says datatype different in database and common is has different Cardinality than the detected Cardinality.
  2. One of my requirement is Last seven days Login activity data for Number of logins where event type id is 1014.But I cannot see 1014 when it comes to webi report( I am using three filters 1.Last seven days filter 2.Object name is not null 3.User name is not null)
  3. I cant see Client application type "BI Mobile APP" in the webi report.

 

Thanks in advance.

Incorrect query after removed @prompt from Derived Table

$
0
0

Im new to IDT 4.X, after removing @prompt from derived table I gettting incorrect query when validate and save query. Copy the query to SQL management and it working fine. What could be the issue?


Array Fetch Size limitations

$
0
0

Hi All,

 

My environment:

BO 3.1 SP 6

Database Oracle 11g

 

my issue is, i am working on transactional database, there are billions of rows. I need to show the counts of those in my reports, its taking forever to returning the results(almost 3+ hours)

 

I am thinking to increase the array fetch size but not sure what the ideal limit is.  Can some one help in this.

 

Current Array Fetch Size is 250 and Array bind size is 32767  can i increase the fetch size to 500 or 1000?

 

 

 

Thanks,

Praveen.

How to increase performance of an IDT Universe in BO 4.1

$
0
0

Hi All,

I am working on enhancing performance of an IDT universe designed on top of BW info sets.

 

If I pull the same objects and conditions in BW system, it takes hardly 1 min to give me results but if I pull the same objects in Universe query in IDT or if I create Webi report using those objects in BI Launchpad then it takes around 10 min.

 

Data is coming from R3 system in BW infosets and in R3 also, processing is very fast and it takes just 1 min or less to give me the results.

But in IDT query or Webi report is taking too much time. Any idea how to increase performance of this Universe.

 

 

Thanks.

I HAVE 4 FACTS AND 2 DIMENSIONS

$
0
0

Hi Experts,

 

In the universe i have 4 fact tables and 2 dimensions tables and each fact table mapping with  2 dimension tables and  also map dim 1 to dim 2 so how to resolve the loops and traps in the above scenario.

 

please give me  an idea..

 

 

Thanks in advance...

How to connect CIS (Composite) with Business Objects Through JDBC Configuration

$
0
0

Hi,

 

I am trying to create connection to connect with composite (CIS), however i did not find any clear documentation or steps from SAP.

i referred the below URL

 

 

http://www.forumtopics.com/busobj/viewtopic.php?t=202910&highlight=composite

 

followed the steps for JDBC.SBO file configuration and placed the required Jar file in to the location.

 

In my UDT connection creation window, i dont have any idea what to input for the below highlighted fields.

 

any one have any experience on this?, your help would be greatly appreciated.

 

 

composite.JPG

Hi all is it possible to monitor the log-in activity done through iPhone in 4.X Auditing?

$
0
0

Hi is it possible to monitor the log-in activity done through iPhone .I am aware we can monitor the activity done thorough SAP Mobile BI app but for specific iPhone activities ?

Viewing all 1291 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>