Quantcast
Channel: SCN : Popular Discussions - SAP Business Warehouse
Viewing all 945 articles
Browse latest View live

Problems with dropIndex in ProcessChain

$
0
0

Hi All

  I met a problem in ProcessChain. Can anyone help me?

The problem is:There is a step on dropIndex in the processChain. I run the chian and then go to the infocube's performance tab. I find the index is deleted successfully by checking the check database index button. But in rspcm screen, the dorpindex step is still has the yellow backcolor and can't continue to run.


Not able to activate 0material in sap BI 7.3

$
0
0

Hi ,

 

We are trying to activate Buisiness content in Sap Bi 7.3.

 

It's a fresh system.

 

when we try to activate 0Plant  we get following error message.

 

Infobject 0ADDR_Number not available in version M

Infobject 0ALTITUDE_Number not available in version M

Infobject 0APO_ATTLO1 not available in version M

Infobject 0APO_ATTLO2 not available in version M

Infobject BPARTNER not available in version M

Infobject BPARTNER1 not available in version M.......etc

 

 

Is there any configuration needs to be done prior to activation of BI Content.

 

I am not facing any issue while activating Key Figures.

 

 

Thanks in Advance.

ASSIGN_TYPE_CONFLICT dump error

$
0
0

I am getting a short dump "ASSIGN_TYPE_CONFLICT" error whenever i execute a DTP to load data from PSA to 0MAT_PLANT. Please suggest what needs to be done

Errors in source system Message no. RSM340

$
0
0

Hi Experts,

 

The below is the issue;

 

-


Error message from the source system

 

Diagnosis

An error occurred in the source system.

 

System Response

Caller 09 contains an error message.

 

Further analysis:

The error occurred in Extractor .

Refer to the error message.

 

Procedure

How you remove the error depends on the error message.

 

Note

If the source system is a Client Workstation, then it is possible that the file that you wanted to load was being edited at the time of the data request. Make sure that the file is in the specified directory, that it is not being processed at the moment, and restart the request.

-


 

This is delta load and it is failing daily from the recent times. A repeat of delta is successful. Again the next day normal delta is getting failed with the same error and again I have to repeat it. No short dump, no system log is generated in both the BW as well as R/3 system. The job in R/3 is in finished status. But it is not extracting any records.

-


1 LUWs confirmed and 1 LUWs to be deleted with function module RSC2_QOUT_CONFIRM_DATA

IDOC: Info IDoc 2, IDoc No. 12920038, Duration 00:00:00

IDoc: Start = 01/13/2012 01:44:56, End = 01/13/2012 01:44:56

Synchronized transmission of info IDoc 3 (0 parallel tasks)

IDOC: Info IDoc 3, IDoc No. 12920041, Duration 00:00:00

IDoc: Start = 01/13/2012 01:47:14, End = 01/13/2012 01:47:14

Job finished

-


 

I have seen only few related issues which said, there could be time inconsistencies, but did not find the exact solution. I have checked OSS note: 1576331 but could not resolve. Also the extractor check for this datasource is also giving the error "Errors occurred during the extraction - Message no. RJ012". We have this issue in production system only and this started from recent days.

 

Please help me on this.

 

Sunil

Tables for Bex Queries

$
0
0

Dear All,

 

Is there any way to know in which SAP BW table the technical name, description, creation data of reports created using Bex Analyzer is stored?

Please help me with this.

 

Regards,

Rita

Currency Conversion in SAP BI

$
0
0

Hello Everyone,

How does currency translation internally works in SAP BI at BEx level? What are TCUR* tables will be hit to translate currency from local to foreign or viceversa?

 

Also it would be helpful if you can guide me in achieving below:

 

The exchange rates are maintained for the below in TCURR table:

 

1. GBP --> EUR

2. INR --> EUR

3. EUR --> GBP

4. EUR --> INR

 

The data from source is coming as below :

 

KeyAmountCurrency
ABC100GBP
EFG200INR

 

Now at BEx level, we have applied currency translation using user input(variable). When the user is selecting EUR, the currency is getting translated properly as per the exchange rates maintained in TCURR table since the currency conversion rate is being maintained from both INR-->EUR & GBP-->EUR.

 

But when the user selects GBP/INR in the user input, the currency is not getting translated. For both the cases, the output just shows as total = 300 which means currency translation is not happening. Also we do observe that currency conversion rate is not maintained from GBP --> INR. Does this need to be maintained in TCURR table or am i missing any other TCUR* table which might convert GBP & INR to EUR & then back to GBP/INR?

 

Regards,

Pavan

SAP BW 3.5 to 7.3 Upgrade

$
0
0

Hi All,

We are planning to upgrade BW 3.5 to 7.3 ( technical upgrade only).

If any one has done this can you please share issues with us.

We know that we have to have migrate teh securites from 3.5 to new 7.3 authorizations. IS this migration too complex?

We use lots of Woorkbooks, will that also be impacted if yes probable correcting steps?

 

Your thoughts on current data loads and Info-source impacts will also be appreciated.

 

 

You inputs will really help me.

 

Thanks in Advance to you all

Mukesh

End routine Look up Performance Issue

$
0
0

Hi All!

 

I tried to optimize a code for a long time but haven't been able to do so. I have made secondary indexes, created internal tables but the performance still has't improved. It takes 5 hours for 138,000 to look-up from a DSO containing a million records.

Tried tracing too from st05 found it takes time to open and fetch the data.

 

Following is the code:

 

if RESULT_PACKAGE is not INITIAL .

 

 

       SELECT

              /BIC/ZEMAIL

              /BIC/ZMOBILE

              HE_YRSES FROM /BIC/AZLMS_D0300

         INTO TABLE LT_AZLMS_D0300 FOR ALL ENTRIES IN RESULT_PACKAGE

         WHERE /BIC/ZEMAIL eq RESULT_PACKAGE-/BIC/ZEMAIL or

               /BIC/ZMOBILE eq RESULT_PACKAGE-/BIC/ZMOBILE .

      

if sy-subrc = 0.

         sort LT_AZLMS_D0300 by HE_YRSES .

       endif.

 

LOOP at RESULT_PACKAGE ASSIGNING <RESULT_FIELDS> .

 

 

         READ TABLE LT_AZLMS_D0300 INTO LS_AZLMS_D0300 WITH KEY

                  /BIC/ZEMAIL = <RESULT_FIELDS>-/BIC/ZEMAIL .

 

         if sy-subrc = 0 .

           <RESULT_FIELDS>-/BIC/ZHE_LCYSE = LS_AZLMS_D0300-HE_YRSES .

 

           if <RESULT_FIELDS>-/BIC/ZHE_LCYSE EQ <RESULT_FIELDS>-HE_YRSES

           .

             <RESULT_FIELDS>-/BIC/ZSTATU  'N' .

           else.

             <RESULT_FIELDS>-/BIC/ZSTATU  'L' .

           endif.

 

         else.

 

           READ TABLE LT_AZLMS_D0300 INTO LS_AZLMS_D0300 WITH KEY

                                 /BIC/ZMOBILE =

                                 <RESULT_FIELDS>-/BIC/ZMOBILE .

           if sy-subrc = 0.

             <RESULT_FIELDS>-/BIC/ZHE_YRSES = LS_AZLMS_D0300-HE_YRSES .

           if <RESULT_FIELDS>-/BIC/ZHE_LCYSE EQ <RESULT_FIELDS>-HE_YRSES

           .

             <RESULT_FIELDS>-/BIC/ZSTATU  'N' .

           else.

             <RESULT_FIELDS>-/BIC/ZSTATU  'L' .

           endif.

           endif.

 

         ENDIF  .

 

         CLEAR : LS_AZLMS_D0300 .

       ENDLOOP .

 

     endif .


Thanks,

Kunal


Short Dump - "Runtime Errors - MESSAGE_TYPE_X

$
0
0

Hi Guru's/Experts,

I am Getting a Short dump when iam loading the data from DTP to Cube. I know its long query to post- but no choice left.

1) Error message as below.

Runtime Errors       MESSAGE_TYPE_X

2) Error analysis
    Short text of error message:
    Internal error: invalid call       - Contact SAP

    Long text of error message:

    Technical information about the message:
    Message class....... "RSTRAN"
    Number.............. 000
    Variable 1.......... "invalid call"
    Variable 2.......... " "
    Variable 3.......... " "
    Variable 4.......... " "

3) How to correct the error

"MESSAGE_TYPE_X" " "

"GP_MET_RSTRAN_SECTION_GEN" or "GP_MET_RSTRAN_SECTION_GEN"     

I can understand this error is throwing from SAP program which is not able to generate the Perform Class in Code.

When i compaired the code from Dev to Quality there the missing code i found the below Message

  $*$ end of global - insert your declaration only before this line   *-*
    METHODS
      new_record__end_routine
        IMPORTING
          source_segid             type rstran_segid
          source_record            type sytabix
        EXPORTING
          record_new               type sytabix.

My question is does this METHOD will create a short Dump. If not please gimme the alternate solution.

Your Help is highly appreciated

Thanks in Advance

Regarding ASSERTION_FAILED dump in Bi 7.0

$
0
0

Hi Gurus,

 

We are getting a dump called ASSERTION_FAILED in our BI 7 system.We have implemented the support packs upto the level 20.We have implemented the note 1282485.But still no luck.

 

Short text

    The ASSERT condition was violated.

 

 

 

What happened?

    In the running application program, the ASSERT statement recognized a

    situation that should not have occurred.

    The runtime error was triggered for one of these reasons:

    - For the checkpoint group specified with the ASSERT statement, the

      activation mode is set to "abort".

    - Via a system variant, the activation mode is globally set to "abort"

      for checkpoint groups in this system.

    - The activation mode is set to "abort" on program level.

    - The ASSERT statement is not assigned to any checkpoint group.

 

 

 

What can you do?

    Note down which actions and inputs caused the error.

 

 

    To process the problem further, contact you SAP system

    administrator.

 

    Using Transaction ST22 for ABAP Dump Analysis, you can look

    at and manage termination messages, and you can also

    keep them for a long time.

 

 

Error analysis

    The following checkpoint group was used: "No checkpoint group specified"

 

    If in the ASSERT statement the addition FIELDS was used, you can find

    the content of the first 8 specified fields in the following overview:

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

 

How to correct the error

    Probably the only way to eliminate the error is to correct the program.

    -

 

    If the error occures in a non-modified SAP program, you may be able to

    find an interim solution in an SAP Note.

    If you have access to SAP Notes, carry out a search with the following

    keywords:

 

    "ASSERTION_FAILED" " "

    "CL_RSTRAN_GEN_GROUP===========CP" or "CL_RSTRAN_GEN_GROUP===========CM00M"

    "SET_ATTRIBUTS_BY_RULE_"

 

  Termination occurred in the ABAP program "CL_RSTRAN_GEN_GROUP===========CP" -

   in "SET_ATTRIBUTS_BY_RULE_".

  The main program was "RSAWBN_START ".

 

  In the source code you have the termination point in line 57

  of the (Include) program "CL_RSTRAN_GEN_GROUP===========CM00M".

 

Please help.

 

Thanks,

Jagadish

different types of infocube?

$
0
0

as i know there are different types of info cube(standard, transactional ,virtual cubes(remote,sap remote,with services))

but which scenario we need which cube? in real life work  when we need the different infocubes ?

 

 

thanks

Runtime Error "Assertion_Failed" in BW 7.3

$
0
0

Hi All,

 

We were trying to install BW Admin Cockpit in SAP Netweaver BW 7.3 Version.

However, we are facing below runtime error & it gives Dump everytime -

 

"ASSERTION_FAILED"

Terminated Program "CL_RSSH_DTP_PROXY============CP"

 

 

Same Error is being faced even by entering T Code RSA1 as well....

 

Kindly let me know if anybody has solution for this Issue.

 

 

Thanks

Swapnil

SAP BW 7.3 SP 5 - Issue with transport of transformation

$
0
0

Hi,

    When I transport a transformation from Dev environment to Q environment, the transformation stays inactive in the QA environment.

 

The Scenario:

 

Datasource - db connect. Added a few new fields to the datasource. The change are made in the SAP BW system and data load to the DSO is successful. When the data elements - Datasource, DSO, Transformation and DTP were transported to the Q system, the transformation in the Q system was inactive.

First time when all the elements were transported in the same request, the request got failed with a message that the transformation was inactive.

Later when the transformation was transported to Q system, the transport request was successful. But the transformation was still inactive. When we analyzed the transport logs, the routines associated with the transformation was successful, but there was no mention about the transformation in the logs.

 

System details : SAP BW 7.3 SP 5

 

Alternatives tried:

 

1. Activated the transformation through the program - RSDG_TRFN_ACTIVATE. The transformation was activate. But the new fields mapping was missing.

 

2. The Logical system mapping was missing. So added that through Tools --> Conversion Logical system names.......

 

3. Transported the data elements individually --> Datasource and DSO first in one request and then Transformation in a separate request.

 

4. Deleted the transformation in the Dev system and assigned it to a Transport request and transported it to the Q system. The transformation in the Q system got deleted. Re-created the transformation in the Dev system and transported it to the Q system. Only the T-version of the transformation was available in the RSTRAN table. A-version of the object was not present in the RSTRAN table.

 

I guess this must be a SAP system issue.

I searched in the internet for any OSS notes related to this, but was not able to find anything till now.

If any of you have come across this kind of situation, please share your experience.

 

Thanks and Regards

Premnath

9980894400

Regarding ASSERTION_FAILED dump in Bi 7.0

$
0
0

Hi Gurus,

 

We are getting a dump called ASSERTION_FAILED in our BI 7 system.We have implemented the support packs upto the level 20.We have implemented the note 1282485.But still no luck.

 

Short text

    The ASSERT condition was violated.

 

 

 

What happened?

    In the running application program, the ASSERT statement recognized a

    situation that should not have occurred.

    The runtime error was triggered for one of these reasons:

    - For the checkpoint group specified with the ASSERT statement, the

      activation mode is set to "abort".

    - Via a system variant, the activation mode is globally set to "abort"

      for checkpoint groups in this system.

    - The activation mode is set to "abort" on program level.

    - The ASSERT statement is not assigned to any checkpoint group.

 

 

 

What can you do?

    Note down which actions and inputs caused the error.

 

 

    To process the problem further, contact you SAP system

    administrator.

 

    Using Transaction ST22 for ABAP Dump Analysis, you can look

    at and manage termination messages, and you can also

    keep them for a long time.

 

 

Error analysis

    The following checkpoint group was used: "No checkpoint group specified"

 

    If in the ASSERT statement the addition FIELDS was used, you can find

    the content of the first 8 specified fields in the following overview:

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

 

How to correct the error

    Probably the only way to eliminate the error is to correct the program.

    -

 

    If the error occures in a non-modified SAP program, you may be able to

    find an interim solution in an SAP Note.

    If you have access to SAP Notes, carry out a search with the following

    keywords:

 

    "ASSERTION_FAILED" " "

    "CL_RSTRAN_GEN_GROUP===========CP" or "CL_RSTRAN_GEN_GROUP===========CM00M"

    "SET_ATTRIBUTS_BY_RULE_"

 

  Termination occurred in the ABAP program "CL_RSTRAN_GEN_GROUP===========CP" -

   in "SET_ATTRIBUTS_BY_RULE_".

  The main program was "RSAWBN_START ".

 

  In the source code you have the termination point in line 57

  of the (Include) program "CL_RSTRAN_GEN_GROUP===========CM00M".

 

Please help.

 

Thanks,

Jagadish

Runtime Error "Assertion_Failed" in BW 7.3

$
0
0

Hi All,

 

We were trying to install BW Admin Cockpit in SAP Netweaver BW 7.3 Version.

However, we are facing below runtime error & it gives Dump everytime -

 

"ASSERTION_FAILED"

Terminated Program "CL_RSSH_DTP_PROXY============CP"

 

 

Same Error is being faced even by entering T Code RSA1 as well....

 

Kindly let me know if anybody has solution for this Issue.

 

 

Thanks

Swapnil


Regarding ASSERTION_FAILED dump in Bi 7.0

$
0
0

Hi Gurus,

 

We are getting a dump called ASSERTION_FAILED in our BI 7 system.We have implemented the support packs upto the level 20.We have implemented the note 1282485.But still no luck.

 

Short text

    The ASSERT condition was violated.

 

 

 

What happened?

    In the running application program, the ASSERT statement recognized a

    situation that should not have occurred.

    The runtime error was triggered for one of these reasons:

    - For the checkpoint group specified with the ASSERT statement, the

      activation mode is set to "abort".

    - Via a system variant, the activation mode is globally set to "abort"

      for checkpoint groups in this system.

    - The activation mode is set to "abort" on program level.

    - The ASSERT statement is not assigned to any checkpoint group.

 

 

 

What can you do?

    Note down which actions and inputs caused the error.

 

 

    To process the problem further, contact you SAP system

    administrator.

 

    Using Transaction ST22 for ABAP Dump Analysis, you can look

    at and manage termination messages, and you can also

    keep them for a long time.

 

 

Error analysis

    The following checkpoint group was used: "No checkpoint group specified"

 

    If in the ASSERT statement the addition FIELDS was used, you can find

    the content of the first 8 specified fields in the following overview:

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

 

How to correct the error

    Probably the only way to eliminate the error is to correct the program.

    -

 

    If the error occures in a non-modified SAP program, you may be able to

    find an interim solution in an SAP Note.

    If you have access to SAP Notes, carry out a search with the following

    keywords:

 

    "ASSERTION_FAILED" " "

    "CL_RSTRAN_GEN_GROUP===========CP" or "CL_RSTRAN_GEN_GROUP===========CM00M"

    "SET_ATTRIBUTS_BY_RULE_"

 

  Termination occurred in the ABAP program "CL_RSTRAN_GEN_GROUP===========CP" -

   in "SET_ATTRIBUTS_BY_RULE_".

  The main program was "RSAWBN_START ".

 

  In the source code you have the termination point in line 57

  of the (Include) program "CL_RSTRAN_GEN_GROUP===========CM00M".

 

Please help.

 

Thanks,

Jagadish

Errors in source system Message no. RSM340

$
0
0

Hi Experts,

 

The below is the issue;

 

-


Error message from the source system

 

Diagnosis

An error occurred in the source system.

 

System Response

Caller 09 contains an error message.

 

Further analysis:

The error occurred in Extractor .

Refer to the error message.

 

Procedure

How you remove the error depends on the error message.

 

Note

If the source system is a Client Workstation, then it is possible that the file that you wanted to load was being edited at the time of the data request. Make sure that the file is in the specified directory, that it is not being processed at the moment, and restart the request.

-


 

This is delta load and it is failing daily from the recent times. A repeat of delta is successful. Again the next day normal delta is getting failed with the same error and again I have to repeat it. No short dump, no system log is generated in both the BW as well as R/3 system. The job in R/3 is in finished status. But it is not extracting any records.

-


1 LUWs confirmed and 1 LUWs to be deleted with function module RSC2_QOUT_CONFIRM_DATA

IDOC: Info IDoc 2, IDoc No. 12920038, Duration 00:00:00

IDoc: Start = 01/13/2012 01:44:56, End = 01/13/2012 01:44:56

Synchronized transmission of info IDoc 3 (0 parallel tasks)

IDOC: Info IDoc 3, IDoc No. 12920041, Duration 00:00:00

IDoc: Start = 01/13/2012 01:47:14, End = 01/13/2012 01:47:14

Job finished

-


 

I have seen only few related issues which said, there could be time inconsistencies, but did not find the exact solution. I have checked OSS note: 1576331 but could not resolve. Also the extractor check for this datasource is also giving the error "Errors occurred during the extraction - Message no. RJ012". We have this issue in production system only and this started from recent days.

 

Please help me on this.

 

Sunil

SAP BW 7.3 SP 5 - Issue with transport of transformation

$
0
0

Hi,

    When I transport a transformation from Dev environment to Q environment, the transformation stays inactive in the QA environment.

 

The Scenario:

 

Datasource - db connect. Added a few new fields to the datasource. The change are made in the SAP BW system and data load to the DSO is successful. When the data elements - Datasource, DSO, Transformation and DTP were transported to the Q system, the transformation in the Q system was inactive.

First time when all the elements were transported in the same request, the request got failed with a message that the transformation was inactive.

Later when the transformation was transported to Q system, the transport request was successful. But the transformation was still inactive. When we analyzed the transport logs, the routines associated with the transformation was successful, but there was no mention about the transformation in the logs.

 

System details : SAP BW 7.3 SP 5

 

Alternatives tried:

 

1. Activated the transformation through the program - RSDG_TRFN_ACTIVATE. The transformation was activate. But the new fields mapping was missing.

 

2. The Logical system mapping was missing. So added that through Tools --> Conversion Logical system names.......

 

3. Transported the data elements individually --> Datasource and DSO first in one request and then Transformation in a separate request.

 

4. Deleted the transformation in the Dev system and assigned it to a Transport request and transported it to the Q system. The transformation in the Q system got deleted. Re-created the transformation in the Dev system and transported it to the Q system. Only the T-version of the transformation was available in the RSTRAN table. A-version of the object was not present in the RSTRAN table.

 

I guess this must be a SAP system issue.

I searched in the internet for any OSS notes related to this, but was not able to find anything till now.

If any of you have come across this kind of situation, please share your experience.

 

Thanks and Regards

Premnath

9980894400

Regarding ASSERTION_FAILED dump in Bi 7.0

$
0
0

Hi Gurus,

 

We are getting a dump called ASSERTION_FAILED in our BI 7 system.We have implemented the support packs upto the level 20.We have implemented the note 1282485.But still no luck.

 

Short text

    The ASSERT condition was violated.

 

 

 

What happened?

    In the running application program, the ASSERT statement recognized a

    situation that should not have occurred.

    The runtime error was triggered for one of these reasons:

    - For the checkpoint group specified with the ASSERT statement, the

      activation mode is set to "abort".

    - Via a system variant, the activation mode is globally set to "abort"

      for checkpoint groups in this system.

    - The activation mode is set to "abort" on program level.

    - The ASSERT statement is not assigned to any checkpoint group.

 

 

 

What can you do?

    Note down which actions and inputs caused the error.

 

 

    To process the problem further, contact you SAP system

    administrator.

 

    Using Transaction ST22 for ABAP Dump Analysis, you can look

    at and manage termination messages, and you can also

    keep them for a long time.

 

 

Error analysis

    The following checkpoint group was used: "No checkpoint group specified"

 

    If in the ASSERT statement the addition FIELDS was used, you can find

    the content of the first 8 specified fields in the following overview:

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

    " (not used) "

 

How to correct the error

    Probably the only way to eliminate the error is to correct the program.

    -

 

    If the error occures in a non-modified SAP program, you may be able to

    find an interim solution in an SAP Note.

    If you have access to SAP Notes, carry out a search with the following

    keywords:

 

    "ASSERTION_FAILED" " "

    "CL_RSTRAN_GEN_GROUP===========CP" or "CL_RSTRAN_GEN_GROUP===========CM00M"

    "SET_ATTRIBUTS_BY_RULE_"

 

  Termination occurred in the ABAP program "CL_RSTRAN_GEN_GROUP===========CP" -

   in "SET_ATTRIBUTS_BY_RULE_".

  The main program was "RSAWBN_START ".

 

  In the source code you have the termination point in line 57

  of the (Include) program "CL_RSTRAN_GEN_GROUP===========CM00M".

 

Please help.

 

Thanks,

Jagadish

Runtime Error "Assertion_Failed" in BW 7.3

$
0
0

Hi All,

 

We were trying to install BW Admin Cockpit in SAP Netweaver BW 7.3 Version.

However, we are facing below runtime error & it gives Dump everytime -

 

"ASSERTION_FAILED"

Terminated Program "CL_RSSH_DTP_PROXY============CP"

 

 

Same Error is being faced even by entering T Code RSA1 as well....

 

Kindly let me know if anybody has solution for this Issue.

 

 

Thanks

Swapnil

Viewing all 945 articles
Browse latest View live


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