"BW BEx - IDT - BO" or   "BW export to HANA view - IDT - BO"

Hello Gurus,
The customer I work for is planning on moving to a BW on HANA environment. One of the questions that came up was around usability of BO in the post-hana world. Unfortunately I could not get hold of any customer experience to get to a logical conclusion.
Option 1 ) We continue to use the standard approach. Consume data from BW BEx queries via BICS connection into Business OBjects
Option 2 ) The second option comes with the feature that BW on HANA provider. You could export an Infoprovider into a view inside HANA(it has a setting to be enable during activation). This would mean we the same data could be consumed from a column-view via a normal RDBMS connection.
In terms of better performance and a stable architectural approach, what could be a better suggestion  and why ...
Thanks,
Prabhu DC

Hi, Prabhu.
I wish I had an answer, but I just have a similar question.  We have a customer considering moving from a BEX environment to HANA, and wants some use cases that would justify the move, and perhaps some customer stories.  So far, I have come up dry.
If you should trip over anything that would help us, please let me know, and I will do the same for you.
Thanks, Prabhu.
Steve Phelan (not a guru)

Similar Messages

  • Error exporting reports while viewing the exact same report works fine!

    Greetings,
    We are using Visual Studio 2008 and Crystal Reports 2008 (with the service packs etc. installed). When setting the parameter values of a ReportDocument and then passing docuemtn to the viewer everything works 100%, when calling the ExportToDisk method I keep getting the ParameterFieldCurrentValueException being thrown. We are using a bespoke C# application as a reporting tool. All of the reports run off stored procedures. Please can someone help me?
    I have included teh code for setting the database parameters, the parameter values themselves and the calling of the export function.
    Thanks in advance,
    Robert Lancaster
        private void SetReportLoginInfo(ReportDocument _rdReport)
          try
            // Must set the ConnectionInfo for all the tables in the report
            // Get the ConnectionInfo Object.
            TableLogOnInfo tlTableLogOnInfo = new TableLogOnInfo();
            foreach(Table ReportTable in _rdReport.Database.Tables)
              if(ReportTable.Name == IMAGE_TABLE)  // Do not set login info for this table.
                continue;
              tlTableLogOnInfo = ReportTable.LogOnInfo;
              // Set the Connection parameters.
              tlTableLogOnInfo.ConnectionInfo.ServerName = dmDBManager.ServerName;  // Physical server name
              tlTableLogOnInfo.ConnectionInfo.DatabaseName = dmDBManager.DatabaseName;
              tlTableLogOnInfo.ConnectionInfo.UserID = dmDBManager.UserName;
              tlTableLogOnInfo.ConnectionInfo.Password = dmDBManager.Password;
              ReportTable.ApplyLogOnInfo(tlTableLogOnInfo);
              // Set the location for the report to the correct value.
              string[] sTemp = ReportTable.Location.Split('.');
              int iLength = sTemp.Length;
              if(iLength >= 2)
                // Location will usually be in the form: DBName.Owner.Object
                // E.g. FleetData.dbo.crpt_AlarmsRpt;1
                // Change the name of the database to the correct value
                ReportTable.Location = dmDBManager.DatabaseName + "." + sTemp[iLength - 2] +
                  "." + sTemp[iLength - 1];
              //          // DO NOT delete the following line of code!
              //          // For an explanation see:
              //          // http://support.crystaldecisions.com/forums/message.asp?fid=76&mid=94272
              //          ReportTable.Location = ReportTable.Location;
            }  // End foreach that steps through all the tables in the report
            // Must now check to see if there are any subreports in the report.
            // If there are, must change their login info as well.
            for(int iRptObj = 0; iRptObj <= _rdReport.ReportDefinition.ReportObjects.Count - 1; iRptObj++)
              if(_rdReport.ReportDefinition.ReportObjects[iRptObj].Kind  == ReportObjectKind.SubreportObject)
                string sName = (_rdReport.ReportDefinition.ReportObjects[iRptObj] as SubreportObject).SubreportName;
                // Create a new reportdocument from the subreport
                ReportDocument rdSubReport = _rdReport.OpenSubreport(sName);
                // Call function recursively
                SetReportLoginInfo(rdSubReport);
              }  // End if that checks for subreport object
            }  // End for that steps through all the objects in the report
          catch(Exception ex)
            string cError = "[ReportEngine][SetReportLoginInfo] " + ex.Message;
            Debug.WriteLine(cError);
            EventLogWriter.WriteErrorToEventlog(cError);
        }  // End function SetReportLoginInfo
        private void AssignReportParams(ReportDocument _rdReport)
          ParameterFieldDefinitions pfParameterFieldDefinitions = _rdReport.DataDefinition.ParameterFields;
          ParameterFieldDefinition pfParameterFieldDefinition;
          ParameterDiscreteValue pvParameterDiscreteValue;
          ParameterValues pvParameterValues;
          // Assign the values to all the params
          for (int iParam = 0; iParam < rpParams.Length; iParam++)
            // Get the correct element from the array and clear any existing values
            pfParameterFieldDefinition = pfParameterFieldDefinitions[rpParams[iParam].ParamName]; // ,""];
            pvParameterValues = pfParameterFieldDefinition.CurrentValues;
            pvParameterValues.Clear();
            // Create a new value for the parameter and assign it
            pvParameterDiscreteValue = new ParameterDiscreteValue();
            pvParameterDiscreteValue.Value = rpParams[iParam].ParamValue;
            // Add the new value and apply it
            pvParameterValues.Add(pvParameterDiscreteValue);
            pfParameterFieldDefinition.ApplyCurrentValues(pvParameterValues);
        }  // End function AssignReportParams
        private bool ExportReport(ReportDocument _rdReport,
                                  CrystalDecisions.Shared.ExportFormatType _ftType,
                                  out string _sError)
          try
            string sExpName = rpParameters.ReportExpName;
            DiskFileDestinationOptions diskOpts = ExportOptions.CreateDiskFileDestinationOptions();
            diskOpts.DiskFileName = sExpName;
            ExportOptions exportOpts = new ExportOptions();
            exportOpts.ExportFormatType = _ftType;
            exportOpts.ExportDestinationType = ExportDestinationType.DiskFile;
            exportOpts.ExportDestinationOptions = diskOpts;
            _rdReport.Export(exportOpts);
            //_rdReport.ExportToDisk(_ftType, sExpName);
            _sError = "";
            return true;
          catch (ParameterFieldCurrentValueException)
            _sError = ReportRunParam.sERROR_PARAMCURVALUE;  // THIS ALWAYS FIRES ON EXPORT
            return false;

    Hello, Robert;
    The code to logon, set parameters and export appears fine. Can you send me the code that defines the report, calls these functions and passes the report to the viewer? I would like to see the order in which it is happening.
    Does the application have rights to the folder you are exporting to?
    Can you export from the viewer successfully?
    Elaine

  • How to export all the views in one schema?

    Hi,
    I have more than 1000 views in one shcema.
    How to export all the views in one schema?
    Amy

    Hi,
    It's not a very easy question, I have develop a script wich create a script to create view from old database to new database :
    /* &1: Oracle SID Source
    /* &2: Oracle Schema Source
    SET HEAD OFF
    SET VERIFY OFF
    SET PAGESIZE 0
    SET LONG 40000000
    SET LONGCHUNKSIZE 2000
    SET LINESIZE 2000
    SET FEEDBACK OFF
    CREATE TABLE RECREATE_VIEW(VIEW_NAME VARCHAR2(30), TEXT LONG);
    /* Selection du texte de la vue */
    DECLARE
    w_text long;
    w_text_debut long;
    w_text_column long;
    w_view varchar2 (30);
    w_schema varchar2 (8):='&2';
    CURSOR w_cursor IS
    SELECT a.view_name, a.text
    FROM dba_views a
    WHERE a.owner = w_schema;
    CURSOR w_column IS
    SELECT DECODE (ROWNUM,
    1, 'CREATE OR REPLACE FORCE VIEW ' || '&' || '1..'
    || a.table_name || chr(10)
    || '('
    || a.column_name
    || DECODE (ROWNUM, nbcolumns, ')' || chr(10) || 'AS' || chr(10), ',' || chr(10))
    FROM (select column_name,table_name
    FROM dba_tab_columns
    WHERE owner = '&1'
    AND table_name = w_view
    order by column_id ) a,
    (SELECT COUNT (1) nbcolumns
    FROM dba_tab_columns
    WHERE owner = '&1'
    AND table_name = w_view
    GROUP BY owner, table_name) b
    order by rownum;
    BEGIN
    OPEN w_cursor;
    LOOP
    FETCH w_cursor INTO w_view, w_text;
    EXIT WHEN w_cursor%NOTFOUND;
    w_text_debut := NULL;
    w_text_column := NULL;
    OPEN w_column;
    LOOP
    FETCH w_column INTO w_text_column;
    EXIT WHEN w_column%NOTFOUND;
    w_text_debut := w_text_debut || w_text_column || ' ';
    w_text_column := NULL;
    END LOOP;
    CLOSE w_column;
    w_text := w_text_debut||w_text||';';
    insert into RECREATE_VIEW(VIEW_NAME, TEXT) VALUES (w_view, w_text);
    COMMIT;
    w_text := NULL;
    w_view := NULL;
    END LOOP;
    CLOSE w_cursor;
    END;
    SPOOL scripts_views_&1..sql
    PROMPT SPOOL scripts_views_&1..log
    PROMPT
    SELECT TEXT
    FROM RECREATE_VIEW;
    PROMPT
    PROMPT SPOOL OFF
    PROMPT
    SPOOL off
    PROMPT /* Formattage du fichier SQL */
    !sed 's/[ ]*$//' scripts_views_&1..sql > aprilia.tmp
    !rm scripts_views_&1..sql
    !mv aprilia.tmp scripts_views_&1..sql
    DROP TABLE RECREATE_VIEW;
    EXIT
    I hope that help you.
    Nicolas.

  • EXPort (without Mat view logs)

    Hi
    Oracle10g, Win2003
    Is there a way to take EXPort without "materialized view logs", as these logs cause error in IMPort and some time even terminate IMPort.
    It will be equally well for me if i got a way to completely exclude "materialized view & materialized view logs" from EXPort.
    Some one please guide me the way to exclude them from IMP or EXP?
    Wishes

    Additionally when ever I IMPort a user some objects appear in non-compiled state, I compile them with my client tool, but I have to drop and recreate materialized view every time.
    Can come one have an improved way to get IMPort with materialized view?
    Wisehs

  • Can we import Bex query, SPO, MP, INFOSET, OHD to HANA studio

    Hi all,
    Can we import Bex query, SPO, MP, Infoset, OHD to hana studio ?.
    If yes then how ?.
    Note: We are already on BW on HANA, SP6 pack.
    Please can any one provide some light on it.
    Regards
    Pavnete Rana

    Can we import Composite provider, Hybrid provider, Virtual Porvider, Advance DSO, Transient Provider to HANA Studio?

  • How to Export/Import HANA table data.

    Hello,
    I try EXPORT HANA table.
    I try to export a table by using the HANA Studio on the client PC.
    but does not work.
    the following steps:
    HANA Studio
    <table> > Export > Select tables for export > Next >
    Error message : "Choose a location"
    There is the question
    Export possible? HANA database table by using client PC(HANA Studio).
    Best regards,
    Hosoya

    Hi Hosoya,
    Which version of the HANA server/studio you are using? I checked in Revision 24 and was able to do the table export as follows:
    Quick Launch>Export>SAP HANA Studio>Tables>'Select the server'>'Select the table'>Export table options
    In Export Table options screen we can specify either the Server Location as 'Export Tables on Server' or to the client location
    as 'Export tables to current client'
    Note: The server and studio I use are on different servers.
    Regards, Rahul

  • How to Export from table view to Excel (not BI query)?

    There is a 'How to' document explaining how to export from an iView using a BI query:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/47fe4fef-0d01-0010-6f87-ed8ecb479123
    However:
    This 'How-To' document is using an example of a BEx query. I am not using a BEx query, therefore I do not have an "Info port". How can I download to Excel from a table view that is not an iView of a BI query? (It is just a internal table coming from a BAPI).

    keenneth,
    i am using the query from SQL server, i am having the same problem of not having info port. so did you find a work around for exporting to excel with filters for non sap queries ?
    any body who had come across this situation , plz guide me.
    thanks in advance
    ravi

  • How can i export (render) or view a composition without background

    I have a 3D moving object composition with a black background.
    I need to export only the object with no background.  Like the gray\white checkers background, that allows you to export only the object.
    So after that i can plant it in an editing software (without using chroma-key)
    In other words - How do i get the gray\white  squares neutral background?
    Thank you.
    Lola

    You have an preset in your render cue for Lossless With Alpha. That's all there is to it. If you open the video in a media player it will show a black background, but if you import it into a NLE it will have transparency. These are basic AE skills. Please read the help files or search transparent background in the Search Help field at the top right corner of AE to learn more.

  • Bug: Can't view photos in a slide when Exporting to PDF viewing files on XP

    Hi,
    I'm completely new to the discussion forum.
    So hope this hasn't been covered, but the bug is there none the less.
    When Exporting a Keynote 09 slide or slides that use some of the
    new Layout themes(Kyoto style etc), nothing shows up when the
    PDF is opened on Windows XP machines.
    I have tried it on several machines at work and at schools,
    and cant get photos or text to show up.
    This never happened in 08, as i often have to use PDF to do presentations
    at schools that dont have powerpoint no their pcs. PDF exporting
    is really important in my daily work with keynote.
    I really hope there is a fix or that Apple can release a fix
    for this bug, as I would love to use the new layout themes
    in presenting.
    Strangely older themes have no problem opening and show all text and
    photos as they should when exported using keynote 09 to pdf...
    so i assume its an issue with the newer themes only ;(
    wierd.. (cries)
    Thanks in advance to anyone that can help me here. Apple!!! I luv you
    but this issue is annoying the heck out of me.
    D

    Wow, thank you so much for quick replies!
    Ok ill try and explain more.
    1) I used to the Export feature (now I used SHARE > Export > choose PDF > save to desktop... view it.. its all good)
    2) I then save the file onto a flash drive and put in a XP OS run PC
    3) The slide background only shows up.. i.e. no content just the template itself
    4) This only happens to the newer templates.
    5) This happens when dragging a picture into the preset template picture boxes,
    the picture just doesnt show up on the pc
    6) havent checked file sizes, because i could do this process on keynote 08.. so i assumed its a BUG and not the fault of mine
    7) Most importantly, i can do the same process and it works with the keynote 08
    backgrounds and themes within 09.. but i cant get my PDFs on an XP to show when using the newer themes... just shows blank themes.. even for Kyoto theme, the tea pot picture isnt there.. its just the background
    i am thinking of taking my mac into a mac store,
    but im almost certain this is a bug.
    to view the PDF on both my macbook and on XP i just double click
    whats on the desktop and it usually shows.. but since buying 09,
    as i said before, i can only get this to work for slides that use
    the old 2008 keynote templates ;( ;(
    i have not tried exporting using the print feature.. i will give that a shot today. but its so wierd that it shows up for some templates and not for others.
    thanks again for your kind help. i really appreciate the time and effort
    you are all putting in in helping.
    D

  • Best export format for viewing on external TV?

    I have a small project that I'd like to show via hooking my laptop up to a TV. What's the best Quicktime format/setting for exporting for doing this? Any suggestions?
    Thanks,
    Kristin.

    Hi(Bonjour)!
    The problem relies on the application that you will use to output your movie to the TV monitor.
    If you use iDVD in full screen, outputed to TV set, simply burn your movie with iDVD and play it.
    If you use quicktime player, in full screen mode,the image may be outputed to TV (I do not know).
    May be with a presentation softwares like Keynote or powerpoint ?
    TV format is NTSC interlaced 29.97 fps ( or PAL in Europe), but even if you export to this format, how will you play it on TV ?
    Michel Boissonneault

  • Export for QT viewing.

    I recently completed a 2-minute movie that I wanted to share over the internet. I exported using QuickTime conversion, using the standard (default) settings. The result was a 31MB file which looks fine when viewed with the QT viewer. However, I thought that a movie exported as a self-contained QT movie in DV encoding would produce a higher-quality image, so I did that, getting a 421MB file (much too large for internet sharing), which I intended to record as data on a DVD-R to send to those who want the best quality. The problem is:
    The smaller file, highly-compressed movie looks much better than the large file when played on the QT viewer! This is not what I expected. I checked the clip properties with the video files loaded into QT and verified that the MPEG file (H.264) looks better than the DV file.
    What's wrong here?
    867 MHz PowerPC G4   Mac OS X (10.3.9)  

    Thanks Tom,
    I did find the setting for high quality in QT and it made a huge difference. However, I don't see a lot of difference between the DV and the MPEG versions, but this could be because the image is not complex (it's a video of the recent eclipse in Turkey) and compresses well with both codecs.
    867 MHz PowerPC G4 Mac OS X (10.3.9)

  • Problem exporting for TV viewing

    I am finding FCPX most frustrating and  have the following problems with exporting and saving to a USB HDD then viewing on a HD pal TV.   If there are any Ken Burns effects in the project then the file won't play on the TV. Without the ken burns it plays.  I had an MP3 audio track which also caused the TV to reject it as Invalid File.  I change the audio for a wave file and the file played on the TV but suffered lots of drop outs.  The exported file plays normally on my MacBook with QuickTime player.
    The settings are 1080x1900 50p. Computer  H264 audio AAC. I tried also audio and video prores 422 and the audio was ok  on the TV but there was no video.
    The project is mainly still pictures with some MTS video clips.
    The same project created and exported from iMovie works perfectly.
    Thanks for any help.
    Ray

    Thanks Luis for your help. I don't think that the frame rate is the problem as the video plays correctly on the TV without Ken Burns effects in the timeline.
    I just did a trial project with about 30 images at 8secs each with 3 sec transitions and a wave file . The video played fine but the audio suffered dropouts. I read on another post that someone fixed this by deleting the transitions so decided to give it a try. So I end up with 30 images  with a wave file attached no transitions. Exported and the setting was Computer 1080 x 1900 50p H.264 high quality and audio shown as AAC.IThere doesn't appear to be anyway to modify these settings without compressor.
    Result - the file would not play oon the TV just an invalid file message. The only difference in this file and the one that worked ok was the absence of transitions.
    It seems a bit strange. As I mentioned previously the same project recreated in iMovie works perfectly but I notice that that one shows the audio as pcm.

  • PDF Export problems when viewing with Preview 4.2

    Hi Everyone,
    I'm an Indesign novice for sure, so this may be fairly basic to a lot of you, but I'm having problems with a document of mine. I've built my portfolio in indesign using PNG images from my book. In Indesign I've applied the gradient feather to each image to give it a reflection. When I export the book with no compression, it's too large, so I've tried regular JPEG compression (at maximum) and JPEG 2000 compression at lossless and I get better file sizes, however when I view the PDF in preview there's 2 problems:
    1. The images look like crap no matter what with any compression applied. Very blurry, pixelated... generally looks like crap. In Acrobat, everything looks sharp and beautiful.
    2. The reflections don't exist at all. There's just an upside down version of the image there with no transparency whatsoever.
    I need it to look good in both programs because it's impossible for me to control who's viewing my book in what program. It's so odd because a year ago when I built my portfolio in keynote, it looked beautiful in preview, but like crap in Acrobat.
    Any ideas?
    Thanks!

    I can understand the gradient feather not appearing properly, and I can build the reflections into the original PNG if I must, but any idea why the images look so bad? They look fuzzy, and far from sharp with ANY any compression. The only way an exported PDF looks ok in preview is if I export it with no compression at all. Yet when looked at in reader, they look sharp (even with compression).

  • Font size difference in preview/export vs. design view

    In a very simple  project (Xcelsius Engage 2008) I've begun, I have noticed that upon previewing the project in Xcelsius or exporting to HTML, the font size is not the same as what I see when I am specifying/seeing in design mode.  Incidentally, I am using embedded fonts in Document Properties, and the font in question is Trebuchet MS (which does exist on my workstation).
    Edited to add: Never mind, it appears that you sometimes have to re-do the font settings in Document Properties again.  I might be mis-interpretting the conditions that lead up to what I saw, but if my assumption is correct I didn't realize this step needed to be repeated when new objects are added.

    In a very simple  project (Xcelsius Engage 2008) I've begun, I have noticed that upon previewing the project in Xcelsius or exporting to HTML, the font size is not the same as what I see when I am specifying/seeing in design mode.  Incidentally, I am using embedded fonts in Document Properties, and the font in question is Trebuchet MS (which does exist on my workstation).
    Edited to add: Never mind, it appears that you sometimes have to re-do the font settings in Document Properties again.  I might be mis-interpretting the conditions that lead up to what I saw, but if my assumption is correct I didn't realize this step needed to be repeated when new objects are added.

  • Error during the export of HANA using SWPM

    Hi,
    I'm trying to build a new test BW on HANA system by using system copy method from another test system. While trying to take the export, i'm getting the below error. I dont see any other info about the error in the sapinst logs. Any suggestions on how to fix this error
    ERROR      2014-04-21 11:15:56.207 [iaxxejsbas.cpp:211]
    FJS-00003  TypeError: user.getLoginEnvironment(sidAdm.password).get("PATH") has no properties (in script NW_Export|ind|ind|ind|ind, line 25406: ???)​

    Hi Javier,
    In our case, both <DB_SID>adm and <SAP_SID>adm are same as both HANA DB and SAP SID has the same name. Below is the env variable for <DB_SID>adm in the HANA DB server.
    PATH=/usr/sap/<DB_SID>/<DB_instancename>/server:/usr/sap/<DB_SID>/<DB_instancename>:/usr/sap/<DB_SID>/<DB_instancename>/exe:/usr/sap/<DB_SID>/<DB_instancename>/exe/Python/bin:/usr/sap/<DB_SID>/<DB_instancename>/exe/dat_bin_dir:.:/usr/sap/<DB_SID>/home:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib64/jvm/jre/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/opt/ibm/saphana/bin:/usr/lpp/mmfs/bin
    CPU=x86_64
    Thanks & Regards,
    Saravanan

Maybe you are looking for

  • Hi, can anyone please tell me if it is possible to download Google chrome (or similar) on the New Ipad... Thanks!

    Hi, can anyone please tell me if it is possible to download Google chrome (or similar) on the New Ipad... I keep getting an a message that reads "Safari cannot download this file" ... is there any other browser that can run on the New Ipad Thanks!

  • Customer aging & sales

    Hai expert How Show the customer  the aging 0-30, sales, sum (customer aging 0-30 + sales) = totaly Thx

  • Commodity code & does not exist

    Hi Experts, We modify the length of your commodity codes (from 11 to 8). So I decided to add all new commodity codes (length 8) in the T604 / T604t, and to keep all existing commodity codes (length 11) until we modify all Master Data with new commodi

  • IDVD menu music

    Hello Hope you can help me out here After having set up my menus, the theme music was replaced by the audio track from one of the movies I have on the DVD. Doesn't work well with the particular movie it picked, though. How can I choose which specific

  • Service order conformation

    Hello All, In service order conformation for the service order SM03 under goods movement screen i am getting special indicator S by default and if i do the Post good issue the inventory is not reducing but material doc is creating with out accounting