Quantcast
Channel: SCN : All Content - SAP Business Warehouse
Viewing all 5981 articles
Browse latest View live

BI Statistics: How can I monitor query timeout in BI Statistics

$
0
0

Hi BW gurus

 

We have the following scenario:

 

  • A user runs a BEx query. The query runs for a very long time and finally either times out or is shut down by the user (the bad query performance is of course a problem, but not the crux of the question here)
  • When we look in our BI Statistics data we cannot see the data for this type of query execution (timeout or termination by user). Of course this gives a wrong impression of the query performance for our BW systems, and even worse, we do not catch this type of problem.

  

How will it be possible to capture these data with BI Statistics?

 

We use Statistics 7.0 but expect to implement 7.3 quite soon, so the question is relevant for both versions.

 

Kind Regards Nete


RRI behaves differently between BEX and WAD

$
0
0

Hi Gurus,

 

We just noticed that the Report to Report Interface (RRI) functionality seems to behave differently between BEx and WAD. Our environment is 7.3 SP8, with the latest BI Java patches applied (9.30).

 

For instance, when we jump from our source report (WAD 7.x) to our target query, we get the following error messages when done on our entreprise portal:

  • Characteristic [whatever characteristic] has no master data for "[whatever value]" or you do not have authorization.
  • All selections for characteristic [whatever characteristic] are invalid and have been discarded

 

As a result, the query displays no result on the portal. It only shows "Could not find any data to display. This might be due to the current selection of variable or filter values".

 

However, when the exact same actions are performed in Bex (via MS Excel) with the same reports, same selections and ran with the same users on the same machine, the results are properly displayed.

 

This different behaviour is not described in OSS Note 1296576 (Different Query Behaviour: ABAP – Java) nor in any other OSS note I found about RRI functionality.

 

We already have a Customer message open with SAP and they advised us to apply the latest BI Java patches and OSS Note 1832894, which we did, but the issue is still there.

 

I checked the SIDs of the characteristics and they of course DO have master data (otherwise they wouldn't be working in BEx) and is confirmed by an RSRV check. It is not a security issue either because we checked with the same users and performed several security traces.

 

Did someone else come upon this issue?

VKF Query

$
0
0

Hello, I have a query regarding virtual keyfigures. I have implemented the virtual keyfigure in my report but the problem is that every time i change the query, the position of characteristic and keyfigure gets disturbed and does not stay the same. how can i prevent this? is it one of the restrictions that this query will never change or something?

Thanks.

Datasource for COOI Table

$
0
0

Hello ,

 

We are doing R/3 modeling as a part of one of our Implementation Project and would need help to identify the standard datasource, if any, available for COOI table.

 

As per below link, 0CO_OM_CCA_10 is marked as the standard datasource for this table, but we are unable to retrieve the expected data of COOI table from this datasource.

 

http://wiki.scn.sap.com/wiki/display/BI/BW+SD+MM+FI+DATASOURCES

 

So, can anyone help on this?

implementation of snowflake schema using SAP business warehouse

$
0
0

Can any one help me out in finding how to implement snowflake schema using  SAP business warehouse

caller 90 contains an error message.do not have authorization to extract from datasource 80xxxx,component DM

$
0
0

Hi all,

              hope is everyone is doing great in their projects.we have been working on a 3.5 system in which we are using all standard cubes and DSO's for purchasing.we have created a process chain for purchasing data loading.in process chain we have been loading data from one DSO to another DSO.we have activated the data for first DSO and then using datasource 80XXX Delta infopackage we are loading data to second DSO.in the process chain while loading data after activation from first DSO to second DSO it has given the error message "caller 90 contains an error message " and in the Indiv.message section it has given " you do not have authorization to extract from datasource 80XXX,component DM "..included the whole error message below.i understand that it is saying i have been missing S_RO_OSOA object.i do not have idea what this message mean,it means the background user based on which the process chain has been running do not have authorization object S_RO_OSOA? if so can you please anybody tell me how to find that background user in BW system and how to assign that authorization object to that user?

 

Diagnosis

You are not authorized to extract from DataSource 80PUR_O01 in application component: DM .

System Response

The authorization check was performed with the following field values:

  • DataSource: 80PUR_O01
  • Application component: DM
  • Subobject: DATA
  • Activity: 03

Procedure

To be able to extract from the DataSource, you need authorization for authorization object S_RO_OSOA (authorizations SAPI-DataSource) with the field values specified above.

Procedure for System Administration

There is a role template S_RO_OSOA_TMPL (DataSource (OSOA) Display/Maintain/Extract) available that contains the authorizations to display, change and extract all DataSources.

Hi All,

$
0
0

I created master data info object zcust-sls and navigation attribute is zslsmgr  and compounding key is 0division, 0distribution channel,

 

i loaded data to info object, data is loaded.

 

i added field zcust_sls in SPO under one of dimension, in SPO transformations i mapped zcust_sls from 0sold_to. i ran DTP but in SPO i am not getting data for navigation attribute zslsmgr. i switched on navigation attribute in SPO. please any one help me.

 

Thanks

Lookup in DTP filter routine

$
0
0

Hi,

 

I have a scenario where I need to change the characteristic values of the Operating division, and we are not authorized to create transformation. So, I was thinking of DTP filter routine. Here, my question for the experts is "Can I do lookup on DTP filter routine, and modify the char value?". I have been trying to create a sample routine given below. Please suggest me any changes.

 

Here, I am doing lookup on DSO, and trying to change the material number value.

 

Data: i_t_mat_no type /bic/azsls_dly00,  "Can I declare internal table like Active data table of DSO? or do I need to declare the structure in declaration part?

          i_t_mat_no type /bic/azsls_dly00,

          i_t_mat_s_no like line of  i_t_mat_no.,

          L_idx like sy-tabix.

 

Read table i_t_range with key fieldname = ‘/bic/zmatnm’.

L_idx = sy-tabix.

Select /bic/zmatnm /bic/zdelloc from /bic/azsls_dly00 into corresponding fields of table

i_t_mat_no where /bic/zmatnm in (‘M1020’, ‘M1021’).

 

If sy-subrc = 0.

 

/bic/zmatnm = ‘EU01’.

append i_t_mat_no.

 

endif.

 

Loop at i_t_mat_no into  i_t_mat_s_no.

L_t_range-fieldname = ‘/bic/zmatnm’.

L_t_range-sign  = ‘I’.

L_t_range-option  = ‘EQ’.

L_t_range-low = ‘I_T_MAT_S_NO’.

If l_idx <> 0.

Modify l_t_range index l_idx.

Append l_t_range.

endif.

endloop.

 

Can I write a code like this, is it possible to get the char value changed with the DTP alone. Please suggest, its urgent!!!


Process chain getting hanged for long time and getting failed

$
0
0

Hi ,

 

In my projects when we shedule process chain,Its getting hanged for 8 hours,sometime 10 hours.After that its getting failed.

Even though we gets mail alert once process chain gets failed.there is delay in response to check the process chain due to hangup.

Could anyone suggest,what needs to be done on this case ?

 

 

Regards,

J.sakthikumar

Error Copy Query RSZC

$
0
0

Hello

 

 

I had problem to copy the queries of a standard InfoCube 0TRCM_C01 a InfoCube Z ZTRCM_C01 that is a copy of the standard , the queries with which I had problem to copy are: 0TR-CM-1, 0TR-CM-2, 0TR-CM -LIQ-1, 0TR-CM-LIQ-2, 0TR-CM-TFS-1 and 0TR-CM-TFS-2, the error apparently because it contains a character that is not allowed in the name (-), but rename it and do not let him or spaces, and even if I get the error.

Deputy panatalla errors.

 

 

Greetings.

 

Nando.

Direct Update DSO

$
0
0

Hi All,

 

I could not able to find data feeding into direct update DSO.

 

We have no APD for this Direct DSO.

 

I have even checked in table level RSANT_PROCESSI. Here also i could not able to get any information regarding this Direct DSO.

 

So finally i have come to conclusion that it is not getting updated from APD's.

 

So now i would like to know, are there any other process to feed data to direct update dso. how to check it.

 

Thank you,.

Total stock in inventory cube conatins value for stock in transit ?

$
0
0

Hi,

 

I want to know, what makes the value of 0TOTALSTCK in BW. I know its is recipt - issued . But what kind of values are invloved in giving the figure.

does it include stock in transit as well?

 

For exapmle , if I want to calculate stock in hand

will it be

total stock - stock in transit?

 

Thanks

shilpa


Transport Error on 2LIS_03_BF_TR Inventory Cube Transformation

$
0
0

Hi Guys

 

I am getting the following transport error. Please let me know the way to fix this. I collected again the active transformations in transport connection and still got the error.

 

I have attached an image file. Also below is the text

 

Start of the after-import method RS_TRFN_AFTER_IMPORT for object type(s) TRFN (Activation Mode)

No rule exists

Source TRCS 2LIS_03_BF_TR is not allowed

No rule exists

Target TRCS 2LIS_03_BF_TR is not allowed

 

 

Thanks a lot

 

Gurudutt

MCNB and RSA3 showing wrong record count for 2LIS_03_BX

$
0
0

Hi Gurus,

 

This is the first time I am doing Inventory data loads.  For BX data sources, set up table was initially 0.  Then I loaded set up tables for BX using MCNB and it gave me a message of 10697 records.  But, when I checked the no of records in the BX set up table through SE11, its showing as 78.  When I checked the BX data source through RSA3, its showing as 10714.  Can anybody explain me what should be the reason it is showing like this ?

 

Thanks and have a nice day

Rakesh

Different BW Status

$
0
0

Hi,

 

We maintain BW status in SVTK, BW Status Object. I have same BW Status for different Status (from different Status Profile). When we Generate
Text DataSource for BW Status Objects (ZSTAONESVTK_TEXT), we get BW Status (STONR) with different  Descriptions.

 

LANG      BW_Status      Short Description
EN           40                     CANC
EN           40                     AWFI
EN           40                     AWRS

 


How do we Map the generated datasource to the InfoObject we have created ?

Regards,
DTD


Error while activating transformation -> "Error when creating object directory entry R3TR ROUT"

$
0
0

Hi Experts, I'm Installing Healthcare BI content, and the transformations gave me an error when tried activate, the error is "Error when creating objecto directory entry" 

Please some help.

 

Error transformation 2.png

Error transformation.png

Thanks.

Generic Delta Safety Interval Setting

$
0
0

Hello experts,

 

I have gone through many forum threads but still have doubt regarding CALDAY safety interval setting for generic delta.

Suppose I have set safety interval upper limit as 2 and lower limit as zero.

Today is 2/20/2014, if I run delta today, it will get delta from 2/18/2014 to 2/20/2014, or till 2/18/2014 since last run.

I am ltl bit confuse. Remember my upper limit is 2 and lower limit is blank.

 

Please correct me.

 

Thanks,

Zak.

'Calculating result as...' was not executed Message no. BRAIN141 error after SAPBW 7.3 upgrade

$
0
0

Hi

 

I am running a report in SAP BEx Analyser after SAP BW 7.31 (SPS10) upgrade and key figure (cal key figure) Calculation single result set us as a Standard Deviation, before upgrade overall result was correct but after upgrade it is doing wrong calculation. e.g it should pick 4.1 as a std deviation but it is picking 87.3. Any SAP Note which we need to implement. When i exceute the in RSRT before result appear it come with below error

 

'Calculating result as...' was not executed

Message no. BRAIN141

 

It is calculated correctly when I execute BEx Query which takes me to portal.

 

Thanks

precaution while archiving inventory cube

$
0
0

Dear All,

 

Please do let me know what are the precautions and prerequisites to follow while we perform archiving on inventory cube using ADK method into Logical File.

 

Thank you.

 

Regards,

Ravi

Field level routine for cost at BI transformation

$
0
0

Hi All,

 

i want write the field level routine at transformation level.

source fields have

ZTYPE_MD TYPE -  LT

ZCAT_TEXT TYPE - LT1

ZBU TYPE - 0-50, 51-100, 101-200,

 

Target fields

ZCOST

 

if ZTYPE_MD -  LT and ZCAT_TEXT - LT1 and ZBU -(0-50) , it will charge the 2.0 (INR) then calculate the cost give the out put value.

 

As per reference refer the below thread.

Transformation formula getting error

 

Thanks,

Phani.

Viewing all 5981 articles
Browse latest View live


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