Using BPC with Design Studio 1.4

Hello,
We have recently upgraded to Design Studio 1.4, and are running BPC NW 10.0. I am trying to create a simple dashboard in Design Studio that will allow for dynamic filtering (based on the selected value of a radio button). Below is the script I have created that would be run on selection of a time period:
if (RADIOBUTTONGROUP_1.getSelectedValue()=="2014.TOTAL") {
  DS_2.setFilter("/CPMB/RSDIEQ7","HIERARCHY_NODE/\/CPMB\/RSDIEQ7/2014.TOTAL")
I removed the backslashes (in red above) and received a warning message:
Value "HIERARCHY_NODE/CPMB/RSDIEQ7/2014.TOTAL" does not exist for "/CPMB/RSDIEQ7" in connection "cuid:AQV3Qrc3W5lJuDTpLd4PrpU".
My question -
1 - Is it possible to filter BPC dimensions in Design Studio 1.4?
2 - If it is possible, how do I apply the filter so that the filter value is recognized?
Thank you for your help!
Beth

Hi Beth,
please try "setFilterExt" instead of "setFilter" and it will works.
The syntax should be like this: DS_2.setFilterExt("/CPMB/RSDIEQ7","2014.TOTAL")
I hope it works.
Daniel

Similar Messages

  • Combine Analysis with Design Studio

    Greetings,
    I know it's possible to export an Analsys Application from Analysis for OLAP. You can then open it in Design Studio to edit it.
    However, is it possible to "embed" an analysis in Design Studio?
    We would like to be able to swap the axis, drilldown, change the members, etc. and combine it with Design Studio layouts.
    If not, is there anything on the roadmap? This is preventing us to move from Bex WAD 3.x...

    Hi Nadim,
    with Design Studio and the scripting you are able to add so much functionality within your dashboards that I don't see that big gap between these two applications.
    For exampe: You can add a filter panel where you are not only able to set filter but additionaly chose which measures should be displayed and whether they will be added as columm or row.
    So it is possible within Design Studio to swap axis, change the members and do (little) drilldown.
    But for drilldown-functionality you will have to use scripting and it is indeed still not as good as in Analysis. So one of my wishes for a future release is to enhance the drilldown-functionality (without much scripting or using multiple data sources) like in Analysis.
    But you are right, DS is a tool to consume the data, many of these functionalities to analyse data have to be scripted which is some effort for each dashboard and every used query.
    Some more integrated analysis functionality would be great.
    (Maybe a better solution than to "embed" an anaylisis?)
    Nevertheless I would like to see some export/switch function to open a query in Analysis (for Office), too. You are able to integrate links to an external URL so why Design Studio is not able to add a link to the Analyis-Application?
    I know that some customers want to see their data in Excel, they would really appreciate the possibility to press a button to jump directly to Analysis for further survey of their data.   
    Regards
    Steffen

  • Requirements to use SAP BO Design Studio 1.2

    Hello,
    What are the hardware and software requirements for create and publish application by SAP BO design studio 1.2 with BI4.1 platform?
    I have installed the BO Design studio client 1.2 and I am able to create the reports, but I am not able to publish the reports or add these reports to the BI Launch pad so that the end users can access it.
    Here are the details
    - BusinessObjects Version (SP Level): 4.1 SP2
    - Deployment (Standalone/Clustered): Standalone
    - Server OS (SP Level): Windows 2012
    - CMS Database: SQL 2008
    - Application Server (IIS/Tomcat/Others): Tomcat
    - Authentication type: AD
    Thanks in advance.
    Regards.
    Mahesh

    Did you install the BIP Add on?
    See How to Install BI Platform Add-on For Design Studio 1.1
    BusinessObjects Design Studio 1.1 SP01 is now GA - Installation
    You will need to download the 1.2 BIP add on to the BI platform

  • Core dump using iostream with Sun Studio 8

    I'm running on Solaris 9 using C++ compiler Sun Studio 8, and encoutered a very strange problem.
    My application failed with a core and here is the stack.
    [1] t_splay(0x3774b470, 0x387a0ec0, 0x389aec60, 0x39e5ef1f, 0x3774b470, 0x1), at 0xfc347930
    [2] t_delete(0x387a0ec0, 0x80, 0x39be9748, 0x20, 0x383ccd20, 0x0), at 0xfc347698
    [3] mallocunlocked(0x80, 0x0, 0x21b08, 0xfc3bc000, 0x10, 0x20), at 0xfc346d40
    [4] malloc(0x80, 0xfbaa7400, 0x1, 0x759c40, 0x0, 0x0), at 0xfc346b74
    [5] operator new(0x80, 0x0, 0xd3a18, 0x759c74, 0x0, 0x8345fc), at 0x760c10
    [6] strstreambuf::overflow(0xf41f6e28, 0x29, 0xf41f6e28, 0x39fe0e88, 0x39fe0e88, 0x8345fc), at 0x75bb1c
    [7] streambuf::xsputn(0xf41f6e28, 0xfee00bc0, 0x1, 0x0, 0x81010100, 0x1), at 0x75ab94
    [8] unsafe_ostream::outstr(0xf41f6e78, 0xfee00bbf, 0x0, 0x0, 0xf41f6e7c, 0xfffffffe), at 0x757bac
    =>[9] unsafe_ostream::operator<<(this = 0xf41f6e78, _s = 0xfee00bbf ")"), line 1211 in "iostream.h"
    [10] ostream::operator<<(this = 0xf41f6e74, _s = 0xfee00bbf ")"), line 1350 in "iostream.h"
    [11] CorInterfaceEntity::ifState(this = 0x1bc3de78, newState = MISMATCH_OF_INSTALLED_AND_EXPECTED, needToSendEvent = false
    Can somebody help me giving a direction of investigation ?
    Is there perhaps known problem with iostream on Sun Studio 8 running on Solaris 9 ?
    Thanks for any tips.
    Yaakov Berkovitch
    [email protected]

    But sorry for my insistence, but do you think that
    purify or/and runtime are not able to detect any
    corruption of the heap ?They can detect some kinds of corruption, such as some uses of an invalid pointer.
    But a wild pointer that changes the value of data that is part of your program cannot be detected by RTC or Purify. Those programs can't know whether that change is intentional.
    >
    BTW, we are not using any volatile declaration, and weIf non-local data is shared among threads, it should be declared volatile. For example, suppose you have
    x = foo;
    ... // code not changing foo
    y = foo;
    If foo is not marked volatile, the compiler is allowed to assume its value hasn't changed, and assign to y the same value assigned to x. If foo was changed by another thread, y will not have the current value of foo. The "volatile" declaration says that the variable's value might change without any obvious reason, and the compiler should generate code to load a fresh value each time it is referenced.
    are using the rwtools library packaged with the
    compiler, and are not using the STD library.OK, you are not running into a std::string synchronization bug.
    >
    Also about the compiler option -xarch=v8, is probably
    not relevant for us because we are running Solaris 9.
    So the relevant compiler is probably -xarch=v9. Do you
    advise us using this option ?I think you misunderstand. The -xarch values refer to the kind of processor your program will run on.
    The -xarch=v8 option generates 32-bit code that will run on all SPARC chips, including the chips found in very old SPARCstations. This option is the default for compilers prior to Sun Studio 9 (which ships this week).
    The -xarch=v8plus option generates 32-bit code that runs only on UltraSPARC chips, found in Ultra workstations. These are the only kinds of workstations shipped by Sun since about 1996. Unless you need to support the ancient SPARCstations, we recommend compiling with -xarch=v8plus, to get smaller and faster code.
    The -xarch=v9 option generates 64-bit code that runs only on UltraSPARC chips, an only on Solaris 7 or later. Unless your program requires a very large address space, you generally don't want to generate 64-bit code. On SPARC, 64-bit code is larger and slower than 32-bit code. (Type "long" and all pointers are 64 bits instead of 32 bits.)
    >
    Also I want to return you two new questions:
    1) I read in another discussion,
    http://forum.sun.com/thread.jsp?forum=5&thread=18124&me
    sage=47854#47854
    that another memory manager can be more efficient in
    multi-threaded environment (libmtmalloc.so), and also
    an alternate threads library (/usr/lib/lwp) that
    reduced CPU usage. Do you advice us using this
    alternate library ?The libmtmalloc library usually has better performance in MT programs than the default version of malloc. It also can result in more memory fragmentation. In that case, the larger working set can sometimes have a large negative effect, more than offsetting the MT efficiency. You have to experiment to see whether it is appropriate for your particlular program. If you are running into heap corruption, the pattern of corruption will probably be different with libmtmalloc than with the default malloc. The differences might provide a clue to what is wrong.
    The alternative "T2" threads library was introduced in Solaris 8 as an option.
    In Solaris 9 it is the default, so you are already using it.
    >
    2) We are using the Rogue Wave library shiped with the
    compiler. Is it an up-to-date version ? Can we assume
    that is a good choice or it will be preferable to move
    to the STD library ?I assume you mean Rogue Wave Tools.h++. As explained in the compiler docs, this version of Tools is obsolete, and has not been supported for many years. We continue to provide it for customers who used it before the introduction of the C++ Standard Library in 1998, and who don't want to change their code. We do not recommend it for use in new code.

  • Using Qmaster with DVD Studio Pro OR Qmaster requires FCP on all machines?

    Greetings everyone,
    After a few days of tinkering I've finally managed to set up a managed cluster. However, I have a problem (surprise, surprise). When I submit a job to the cluster, Final Cut Pro suddenly opens up on all of the computers being used. I have Final Cut Studio 2 under an academic license, and all copies report that there is another copy running with the same serial number and that they must shut down. They render a few frames before suddenly quitting the job, regardless of whether I leave the message up or OK it away. I've done some reading from this thread which makes it sound like all systems must have a copy of FCP installed, or to use a slightly different method:
    http://discussions.apple.com/thread.jspa?threadID=375923&tstart=195
    It's a bit upsetting as I'd originally read that systems could aid in rendering with just QMaster installed, and that they didn't need FCP installed. Hence, having FCP open up was unexpected, and I get the feeling that uninstalling FCP from those systems wouldn't help me.
    But let me explain what I do normally, and perhaps some of you can guide me.
    My work has me converting hundreds of tapes to DVD. Without QMaster, I would import the videos in Final Cut Pro, set chapter markers and in and out points, and then export the video (with barely any processing - an export typically takes 4 minutes on a dual 800 Mhz G4). I'd then import it to DVD Studio Pro, handle the menus, and then do a build and format. That process would take ~2-3 hours per DVD, and that is the part that I'd like to optimize.
    The setup is such that I have one dual G5 wired to our hard drives (all Firewire 800), and then four other systems that connect to the G5 to access the HDs through a gigabit network switch. This has worked quite nicely in that it allows systems that only have Firewire 400 to work at Firewire 800 speeds regardless.
    I'd originally thought that DVD Studio Pro 4 would automatically be able to process jobs through Qmaster, but I couldn't find a setting for it and it didn't seem to do it on its own. Instead, I was planning to redo my work flow such that the encoding of the video (the most time-consuming part of DVD Studio Pro's build procedure) would be done in Final Cut Pro. Or more specifically, it would go through Compressor. However, as I mentioned above, attempting to work this way causes Final Cut Pro to open up on all nodes within the cluster. As they all have the same serial number, they become unhappy under such conditions. I can uninstall them from the systems as I only ever use one copy at a time anyway, but as I mentioned from the link above, it seems that rendering through FCP -> Compressor will require FCP to be installed on all participating systems.
    Does anyone have any advice for what to do? Is there a way to get around having FCP activate on all participating systems, or is there a way to do it directly through DVD Studio Pro (ideally in a manner that wouldn't cause DVD Studio Pro to activate on all participating systems)?
    Any advice is much appreciated. The distributed encoding is really the only reason why we upgraded to Final Cut Studio 2, so I'm going to feel rather foolish if this doesn't work out.

    A QCluster network isn't designed to distribute Rendering from FCP, rather it's designed to distribute encoding tasks.
    As mentioned in that thread you linked to, the best workflow I can think of in your situation is to export Quicktime reference movies from FCP, then bring those reference files into Compressor for distribution to the QCluster for the transcode to MPEG 2 for DVD. There is a wealth of good information in that thread.
    In short, if you attempt to use a Cluster to export from FCP, then all of your nodes will need to have separate licenses of FCP. But if you use the reference movie method, FCP is not required for the encoding.
    One question for clarification with your workflow, are you logging & capturing these clips then sending them directly to DVD? or are you editing them in a timeline prior to export to DVD?
    If you're just using FCP as your Log & Capture tool, then you can skip the reference movie step and just grab the captured clips in your Capture Scratch folder and send those directly to Compressor.

  • Using JDBC with Visual Studio J++ doesn't work.

    G'day all,
    I am trying to create an applet that extracts data from an Access 2000 database, which is then displayed to the applet. Currently I am using Visual Studio J++ 6.0 as my development platform.
    I am having trouble trying to connect to my Access 2000 database, and I'm searching for some example code on how to do this.
    I'm pretty much a Java newbie, so all my attempts have failed. Also since all the example code I have is for a JDK implementation I'm not sure if my J++ complier is throwing an error on the basis that the code is not Misro$oft.
    Does anyone know where I can source code for such a solution, for connection to an Access 2000 database under a J++ 6.0 compiler?
    Any details would be greatly appreciated.

    Ripperjack,
    You're limited by the lack of support for the java standard in Microsoft's J++ 6.0's VM. I tried to get JDBC to work for a while in J++ and was unable to. I finally broke down and wrote the thing using ADO. The ADO interface is very intuative for ADO programmers and in fact the syntax is similar to JDBC.
    Later I regretted using J++ because I wanted to make the code portable and relieve my reliance on the Microsoft libraries. I rewrote some of my applications using JDK 2 and JDBC, and am currently rewriting the rest. You can use the ODBC-JDBC bridge with JDK 2 and get to that Access database.
    -Ryan

  • Do you have to use Compressor with DVD Studio Pro?

    Hello,
    I'm trying to find a way to streamline bringing QuickTime Movies made in FCP6 into DVDSP.
    When I try to import QT Movies or movies compressed with H.264 into DVD Studio Pro, I get the error message: "Incompatible Format".
    Is there anyway to get QT Movies into DVDSP successfully without using Compressor?
    The least applications I have my students using for this, the better.
    It's odd to me because you can go directly from QT Movie into iDVD with no such problems.
    Thanks,
    Marc Griffin
    Message was edited by: Marc Griffin

    Hi Steve,
    Thanks for the quick response. The rationale of our workflow is to avoid using Compressor to simplify the process for our students making DVDs. But if we are going to have to use Compressor to change the frame rate, as you suggested, then we're just going to have to live with using the application.
    We'd consider burning High Def DVDs, but with the format war between BluRay and HDDVD, and a general lack of High Def players and Monitors on the general marketplace, we are going to have to stick with SD DVDs for the time being.
    Resultantly, we're going to be stuck with using Compressor in our DVD burning workflow.
    Thanks Everyone For Your Help!
    Marc Griffin

  • Odata services in Design studio 1.2 ?

    Hello All,
    I am exploring Design studio at the moment and I know that we can do scripting along with drag and drop functionalities.
    But I would like to know if it also possible to consume Odata services or send Odata requests to HANA database to get data back and display on charts or tables and so on.
    Any help would be appreciated.
    Thanks

    Hi Sangamesh,
    Based on what you've described, I'd say it's most likely you will need to create a Calculation View.  For more general information about using HANA with Design Studio you may find the following posts useful:
    Using Design Studio with SAP HANA end to end-Part 1
    Using Design Studio with SAP HANA end to end-Part 2
    Regards,
    Mustafa.

  • Design studio connectivity with HCP

    Hello, I am able to connect Lumira to HCP.
    Wanted to check if we are able to connect Design Studio to Hana Cloud Platform at this time?
    Cheers!

    My only experience with this is on AWS - and looking at the PAM https://service.sap.com/~sapidb/012002523100018972812014E I would lean towards AWS; this is what we used during the OpenSAP course with SAP's Jim Rapp
    Looking at this thread here HCP is possible with Design Studio but the poster gave up: Connect SAP Design Studio with HANA Cloud Platform | SCN

  • Problems with changings within Design Studio Report published on BI Mobile App

    Hello BI Mobile Experts,
    At the moment we are setting up a prototyp for BI Mobile reporting with SAP Business Objects Mobile and the BI Mobile App.
    We created a report with Design Studio and published this report without problems within the Mobile Category. This Report was displayed correctly on iPads we are working with.
    This week we made some changings within the report (new Crosstab, changings within css file). Unfortunatelly this changings were not displayed within the Mobile App. When we run the report local on the desktop within Design Studio everything works fine and is displayed correctly. It seems like the iPad is caching the report and doesn't get the new definitions, because after uninstalling the complete app from the iPad and installing it again, the report is displayed correctly.
    Does anybody of you have same issues and is knowing how to solve that?
    Thank you and best regards,
    Gerardo

    Hi Emre
    I recall when I installed DS on our BI 4.1 SP2 system, the Analysis Application Service is not added to the Adaptive Processing Server (APS) automatically, I had to manually include the service into the APS for it to work correctly.
    To make the dashboards visible to the BI Mobile applications, you must assign the category "Mobile" to the dashboards.
    Regards
    Derek

  • Design Studio BW SSO User not authorized

    Hi all,
    I have problem with BW SSO integration on Design Studio. We developed dashboards on top of BW. We have users and they are only authorized to see the data for their own companies and plants. To achieve that, we created OLAP connections with SSO enabled and we have BO/BW integration. The queries work fine in Analysis OLAP.
    However, we are having problems with Design Studio. Here is the problem.
    1. Create a dashboard lets say with a combo box and a chart.
    2. Populate the combo box with the script below:
    DROPDOWN_1.setItems(DS_1.getMemberList("0COMP_CODE", MemberPresentation.INTERNAL_KEY, MemberDisplay.TEXT, 20, "ALL"));
    3. In combo box, wirte the code below to filter values on chart:
    DS_1.setFilter("0PLANT__0COMP_CODE", DROPDOWN_1.getSelectedValue());
    4. Save it on the platform.
    5. Open the dashboard on the platform with SAP user
    6. By default, in combo box, "ALL" value will be selected. If the user has only authorized to see only 1 or 2 companies, then the chart give "User is not authorized" error message.
    7. Select a company from combo box, the chart shows values of the selected company.
    8. If the user wants to see the total of the companies authorized to see, then the chart doesn't show but the error message.
    Another issue is that each company has plants. If the user wants to seel the data for all plants then he receives the "not authorized" error.
    The user should be able the select "ALL" and be able to see the total of companies or plants authorized to see.
    If "ALL" is selected for a company:
    If a single company selected and ALL plants are selected:
    If a single company and a single plant is selected:
    BTW, the authorization works fine in BW and with Analysis OLAP tools. The user can see the total of the companies authorized to see.
    Thanks for your help in advance.

    Hi Zahid - this application has more than one query, correct?
    can you try if the authorization issue is occuring also when you have one query only per applications?
    Reason I ask is, when using design studio, all queries are executed with merged variables and then I belive the authorisation context is different. I assume you have some special customer exit in the system for the authorisation check - and in case of design studio this can get into a point where the constellation is not authorized.
    In such cases you would need to run authorisation trace (I would need to search the transaction).
    Regards, Karol

  • Design Studio 1.3 - Concern

    Hello Community,
    With the release of Design studio 1.3 - the client expectation has gone up. There are few question that need to be addressed.
    How feasible is Design Studio 1.3 over SAP Dashboard designer in adopting and in implementation ?
    If the client is having only BW with them without any BI/BOBJ landscape in picture, can design studio 1.3 be a wiser choice over Dashboard designer? If Yes then why ?
    In BW landscape what need to be done to get mobile access of design studio dashboard ?
    Does Design studio support Data caching for offline report access and for faster report access - considering back-end as BW not running on SAP HANA ?
    How complex is the coding with respect to custom development ?
    Awaiting detailed answers.
    Regards
    Kumar

    Kumar:
    How feasible is Design Studio 1.3 over SAP Dashboard designer in adopting and in implementation ?
    It depends on your requirements and needs.  SAP has said many times this year if your data source is BW, HANA or a universe that Design Studio supports, start with Design Studio.  Otherwise, per SAP, you have an automatic migration project.
    Q: "If the client is having only BW with them without any BI/BOBJ landscape in picture, can design studio 1.3 be a wiser choice over Dashboard designer? If Yes then why ?"
    A: How would they use Dashboard Designer in BW only?  Where would they deploy?  Not following.
    See previous answer re: automatic migration project if you start with dashboarding on BW.
    Q: In BW landscape what need to be done to get mobile access of design studio dashboard ?
    A: BW only? Question came up at ASUG Annual Conference. In the SAP Enterprise portal there is a Design Studio iview and a portal mobility pack
    Q: Does Design studio support Data caching for offline report access and for faster report access - considering back-end as BW not running on SAP HANA ?
    A: It does not support offline today.
    Q: How complex is coding?
    A: I am not a coding expert, but I am able to apply SDK components.  We heard customers at conference say they deploy without coding too.  If you know JavaScript, you will be comfortable with Design Studio is what I have heard.

  • Design Studio vs SAPUI5

    This thought has been bothering me and I just want to ask some experts what they think
    I was wondering regarding the difference between creating a Dashboard/Application in Design Studio or direct using SAPUI5. I have create some native application using OData and consuming it in a SAPUI5 application using the MVC. I am current facing a requirement to create dashboard application using Design Studio and I am finding it difficult to create the relation between the both if there is such a thing. What I find really difficult is to not have a fool view of the HTML5 and script. Instead I am required to input varies scripts in different section in order to manage the events. Are there any plan to make DS more like a wysiwyg of the SAPUI5 which has a lot more elements and give direct visibility in an editor to manage properties and events. It just feels harder to use DS even though you can drag and drop elements. With SAPUI5  you just go the public SAPUI5 SDK check an UI element snippet code paste and go to the API and start fixing in the way you want.

    Hi Carlos,
    in the context you describe - access to HANA models in native HANA environment, I am sure you can come quite far also with Native UI5 on top of ODATA. The difference is - in this path you are on your own (which is sometime better, sometimes not so good)...
    I know that there is a functionality of generating HANA Views based on BEx Queries, and this is improved in last SPs of 7.40 NW - nevertheless there will be still some restrictions. And this is the place where the difference starts:
    BEx Query variable handling - here you would need to code some prompt dialog on your self, which is delivered in design studio
    More complex functionality in BEx Queries - I do not know what is the delta, but I know there is some
    Hierarchy handling - is HANA already handling all cases of hierarchies, even then - there are small differences in comparison to BW.
    Visualization - I am not sure if you can get a real cross-tab component (perhaps you do not need it)
    Context Menu - also something you have to make on your own
    more others I do not have in my mind now...
    Basically this is also the question - is the HANA functional scope for your scenarios comparable and acceptable to those which you are running in WAD? For some customers this answer is YES, for some NO. If yes, you can look at other reporting possibilities (eg. plain UI5). If no, I would recommend to go with Design Studio as many functions which are complex to develop are available already in the framework.
    Personally, I am wandering about your WAD scenarios - as very often those are much more complex and bound to BW functionality which is already answering the question above to NO, but perhaps some can be answered to YES.
    In practice, I think a mixed solution is a the key - you can try to move to native HANA as much as possible, this brings value - in terms of the stack clarity and also in terms of performance as there is nothing between HANA and UI (almost).
    Btw, the statements above are as of TODAY - I am sure in few years those will be revised with new HANA releases and improvements in the HANA models.
    this was my private view on this topic.
    Karol

  • Error on opening Eclipse Indigo design studio

    Hi,
    I am receiving the below error when tried to open the Eclipse Indigo Design Studio for OSM 7.2.
    !ENTRY org.eclipse.osgi 4 0 2012-07-31 14:20:23.421
    !MESSAGE Application error
    !STACK 1
    java.lang.RuntimeException: Application "org.eclipse.ui.ide.workbench" could not be found in the registry. The applications available are: org.eclipse.ant.core.antRunner, org.eclipse.equinox.app.error, org.eclipse.equinox.p2.director, org.eclipse.equinox.p2.garbagecollector.application, org.eclipse.pde.junit.runtime.uitestapplication, org.eclipse.pde.junit.runtime.legacytestapplication, org.eclipse.pde.junit.runtime.coretestapplication, org.eclipse.pde.junit.runtime.coretestapplicationnonmain, org.eclipse.pde.junit.runtime.nonuithreadtestapplication, org.eclipse.update.core.standaloneUpdate, org.eclipse.update.core.siteOptimizer.
         at org.eclipse.equinox.internal.app.EclipseAppContainer.startDefaultApp(EclipseAppContainer.java:248)
         at org.eclipse.equinox.internal.app.MainApplicationLauncher.run(MainApplicationLauncher.java:29)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)
         at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
         at org.eclipse.equinox.launcher.Main.run(Main.java:1410)
    May I know the reason for this exception and the way to rectify it in order to use the indigo design studio?

    hi pratik
    is it windows or linux?
    check any of this solution works for you.
    try using executing with eclipse.exe -clean
    or
    conflict due to set of environment variable multiple times both in user & system
    Regards,
    Kaushal

  • Gmap plugins in Design studio

    Hello All,
    Would like to know whether it is possible  to use Gmap plugins in Design studio ?
    Have any one used Gmap in design studio?
    regards,
    Shweta

    In help.sap.com you can find documentation and samples for Design Studio SDK:
    http://help.sap.com/businessobject/product_guides/AAD13/en/DS_13_SDK_SAMPLES.zip
    Some components (a sample with GMAPs included)
    http://help.sap.com/businessobject/product_guides/AAD13/en/ds13_dev_guide_en.pdf
    Docs explaining how to setup your development environment, and how to load and modify the extensions.

Maybe you are looking for