Hi experts,
I need help to understand HOW to Implement BW IP on HANA.
I have gone through many notes and pages but could not get the complete information.
Will appreciate the help.
Regards
Praveen Kumar
Hi experts,
I need help to understand HOW to Implement BW IP on HANA.
I have gone through many notes and pages but could not get the complete information.
Will appreciate the help.
Regards
Praveen Kumar
Hi.
I have a simple scenario I like to use SQL Script in transformation.
Scenario
There are two tables (header with 3.000.000 rows and items with 40.000.000 rows) I like to join (LEFT JOIN) in expert script routine. This is because I have to read columns from header table to items table.
Problem
Do so with SQL Script I run into a "search table error" due to memory restrictions in HANA. I know this from Composite Provider but with SQL Script in transformations I thought the package size setting is used for a package oriented behaviour. So is this a misunderstanding that the data is even packaged on HANADB?
Regards
Nils
Hi Experts,
Can anyone guide and explain what is delta merge.
Thanks in Advance,
Vineet
Hi All,
We've encountered an error with a planning function. The function is executed on an aggregation level which is based on a Composite Provider. It copies data from IP-cube1 to IP-cube2. If IP-cube1 contains yellow APO-requests:
We recieve the error (Error in BW: -1-):
If there are no yellow APO-requests in IP-cube1 the function works fine. We use BW on HANA 7.4 SP 14.
Any ideas?
Thank you in advance,
Dmitry.
Hi There,
I need your expertise in Addressing a requirement:
I have table in X - Source system (Client-300) in Development Environment Where the table name is ABC300 (300 - Client Number)
The same table in Quality and Production is with ABC100 (100 - Client Number).
Now we need to build a generic extractor on top of this table.
Need your guidance in addressing this requirement.
Thank you,
Dear Experts,
One of my client is having ECC and BW7.4. Now They want to migrate their ecc to S4 hana.
If they migrate to S4 hana what will be the impact on existed BW.
In S4 major tables are chaning in FI and Logistics. New tables introduced like ACDOCA and MATDOC.
Our standard LO and FI extractors are depended on Old tables like BSEG, MSEG .... After migrating to S4 new table will come.
Is our extractors will fetch the data, is there any changes...Is there any SAP provided sloution... Please guide me.
Thanks,
Nag
Hi Experts,
We are currently undergoing planning phase in project,can anyone suggest either i should use HANA optimized real time infocube or Direct update DSO in integrated Planning.
Thanks in Advance ,
Vineet.
Hello Gurus,
I am working BW 7.5 and I receive an error while activating 0LANGU object from Business Content Library.
What I receive as an error is just obscure to me.
Master data read "CL_RSMD_RS_0LANGU"
Error Code: R7B355
I would really appreciate it if anyone could give a hand on that.
Regards.
Eddy
Can anyone please help me that we are unable to create an universe on top of composite provider. Currently we are in SAP BW 7.4 powered by HANA SP13.
Hi everyone,
hope you can help me with the following question:
The documentation about the different ADSO types points out that for the template "Data Warehouse Layer - Delta Calculation" which is in fact a standard DSO this type does not provide a stable navigation during reporting.
Data Warehouse Layer - Delta Calculation - Using the SAP HANA Database - SAP Library
Can someone please explain me, what it means? If a use a standard DSO as reporting layer and put it in a composite, what does not work?
Thank you,
Björn
Hello,
I am looking to create an Open DSO View in eclipse based on a BW DataSource. When I attempt to specify the source system nothing is available. What is necessary to configure and make available the Same BW System as a Source System that I am creating the Open DSO View on?
Thanks for any help,
Hi Experts,
For working on a POC - our plan was to use already existing Classical DSO as source for Advanced DSO.
While creating the Transformation i'm getting an error message.
The transformation specified by transformation ID , source and target , does not exist.
Is it so that we cannot create a Transformation between Classical Objects and Advanced Objects? Please let me know if anyone has faced this issue and pointers to overcome this issue would be much appreciated
Thank you in Advance!
Regards,
Arun
Hi All,
We have created Composite Provider on Calculation view with single union operation. But composite provider data display we are getting error. Please find error screenshot.
Please suggest if you have any idea.
Thanks,
Girish
Hi All,
I'm trying bit to understand the features of SAP BW7.3 on HANA and how possible we can make use of 7.3 objects .
on Weekly users will upload some four flat files in application server ( al11 ) and from AL11 our process chains picks and load it to DSO and info cube. But every time is an drop and reloads data.
So, Is it possible that we can achieve this type of scenario through VPs via direct access DTP ?
If yes, I can handle some business logic in VPs transformation level ? also I need to change the all info objects type as master data access as remote ? and if it so how about the attributes for that object.
And how do i do reporting on VPs ?
Please suggest and I have read all the document related to VPs via direct access,
Thanks,
Siva
Hi, We have created CompositeProvider consisting of InfoObject and HANA calc. view and it is successfully validated. When trying to activate CompositeProvider in HANA Studio BW Modelling perspective we got error message: "Active version of SAP HANA View 'our_view_name' does not exist." Calculation view in question is recently created and added to CompositeProvider so the problem is not there. It seems like BW does not have access to HANA view or cant see it for some reason. Is there any setup needed in BW to be able to access HANA artifacts? We are having BW 7.5 and multi-tenant database, HANA DB is on one db (HDB) and BW on HANA (HBW) on other. Please advise. Kind regards
Hello all
I want to enhance 0FI_AR_4 Data source to include field SPART, GSBER, VKBUR. I have used Table VBAK also I have created and add those fields in append and wrote below ABAP code, I have uncheck both check boxes and double checked the data activation but still field remains empty.
WHEN '0FI_AR_4'."Customers: Line Items with Delta Extraction
TYPES:BEGIN OF ty_VBAK,
VBELN TYPE VBELN,
SPART TYPE SPART,
GSBER TYPE GSBER,
VKBUR TYPE VKBUR,
END OF ty_VBAK.
DATA: it_vbak TYPE STANDARD TABLE OF ty_vbak,
it_data TYPE STANDARD TABLE OF DTFIAR_3.
FIELD-SYMBOLS: <FS_VBAK> TYPE ty_vbak,
<fs_data> TYPE DTFIAR_3.
IF not c_t_data[] is INITIAL.
*--Copy data to Temp Table
it_data[] = c_t_data[].
CLEAR c_t_data[].
*--Fetch the cus. Sales. Org Details
SELECT VBELN spart gsber vkbur from vbak
INTO TABLE it_vbak FOR ALL ENTRIES IN it_data WHERE VBELN = it_data-VBELN.
IF sy-subrc EQ 0.
*--Populate the data to output
LOOP AT it_data ASSIGNING <fs_data>.
READ TABLE it_vbak assigning <fs_vbak> WITH KEY VBELN = <fs_data>-VBELN.
IF sy-subrc EQ 0.
<fs_data>-ZZSPART = <fs_vbak>-spart.
<fs_data>-ZZGSBER = <fs_vbak>-gsber.
<fs_data>-ZZSALESOFFICE = <fs_vbak>-vkbur.
APPEND <fs_data> to c_t_data[].
ENDIF.
ENDLOOP.
c_t_data[] = it_data[].
FREE it_data[].
ENDIF.
ENDIF.
Please let me know if there anything I have written incorrectly?
Thanks
Ebi
Hello!
I've got two big tables that i need to join and load to ADSO. Tables have N to M ratio and will be join on few fields. I' ve got calculation view with the join, but join is too big and failing with the error. I want to partition tables by one of the characteristics during the load to target adso to reduce size of joining tables.
I made a calculation view2 on one of the joining tables where i select distinct values of one of the characteristic from table1. On the top of the CV2 there are a composite provider. I want to load data from composite provider to target DSO using hana expert script which will be selecting data from my CV1. I need package size near 100 lines. The problem is when package size is smaller that 1000000, the data partitioning on packages after executing hana expert script instead of partitioning at the moment of extraction data from composite provider.
Hello everybody,
Has anyone did long text modeling on SAP BW 7.5 ?
Is there a workaround that one can apply the advised way?
Thanks in advance.
Regards
Eddy
Hi Friends,
I created a open ods view on HANA analytical view and assigned aggregation types correctly in view.
still i am facing error "feature not supported: key figure can't be defined without aggregation" while displaying data from RSA1.
please help me.
Regards,
Suresh
Hello everybody,
My intention is to employ LOOKUP function. The scenario in question: selecting one DSO(DSO1) based on the two field combination values from PSA (PSA1) and write the relevant datas into the target DSO (DSO2) considering the key structure in target DSO. However it does not work somehow. Plus I am having only one line after activating target DSO.
The picture regarding scenario and the code are available as attachment.
I would be appreciate it if you could shed a light on the topic.
Kind regards
Eddy