Design Studio 1.3 SDK - Are script contributions for SAPUI5 method functions supported?

All of the SAPUI5 SDK component examples provided with the Design Studio Samples demonstrate how to expose property getter/setter functions as script contributions.  Indeed, the SDK Developer Guide also just focuses on this.  However, UI5 controls may also include method functions that allow certain actions to be performed on the control.  In this context, I have the following questions:
1)  Is it possible to expose method functions via script contributions in the contribution.ztl file?  If yes, what is the correct syntax for doing so?  Based on my experimentation so far, it seems like method functions cannot be exposed directly via script contributions;
2)  If method functions are not supported for script contributions, are there any recommended approaches as a workaround?  One possible approach that comes to mind is as follows:
i)  Define an invisible "dummy" property of type boolean to correspond with each method function that we want to expose as a script contribution;
ii)  Define invisible properties to correspond to the parameters required by the method functions;
iii) In the contributon.ztl code, perform the following tasks:
(a) Set the invisible parameter property values that correspond to the desired method function;
(b) Invoke the dummy property getter or setter function by getting or setting the boolean value of the dummy property in the contribution.ztl code;
iii).  Override the corresponding dummy property getter or setter function in the component.js code with additional logic to read the invisible parameter property values and then call the method function.
Any feedback would be appreciated.
Thanks,
Mustafa.

Hi Mike,
Thanks very much for your suggestion.  Your mind-bogglingly creative solutions never cease to amaze me .
Reviewing the code, yes I did wonder about the use of the Math.random() function.  Then when I subsequently read your explanation about the state saving, the penny dropped as to the issue I was experiencing with the approach I had previously tried (as described in point form in my question), whereby I could not invoke the setter function multiple times from the BIAL script.  So I added a call to the fireDesignStudioPropertiesChanged() function, which has partially solved my issue but the parameter properties are out of sync.
I'll describe what I've implemented and hopefully you can shed some more light on how to resolve the issue:
In the contribution.xml file I've defined invisible properties for the method function and it's parameters as follows:
<component id="ActionLabel"
       title="Action Label"
       icon="res/com.infovizi.prototypes.actionlabel/icon.png"
       handlerType="sapui5">
      <jsInclude>res/com.infovizi.prototypes.actionlabel/js/component.js</jsInclude>
       <cssInclude>res/com.infovizi.prototypes.actionlabel/css/component.css</cssInclude>
       <property id="text" type="String" title="Text" visible="true" />
       <property id="showAlert" type="boolean" title="Show Alert" visible="false" />
       <property id="alertText1" type="String" title="Alert Text 1" visible="false" />
       <property id="alertText2" type="String" title="Alert Text 2" visible="false" />
       <initialization>
            <defaultValue property="SHOWALERT">false</defaultValue>
            <defaultValue property="TEXT">"Hello"</defaultValue>
       </initialization>
  </component>
In the contribution.ztl file I've defined a script method to invoke a method function for displaying an alert as follows:
class com.infovizi.prototypes.ActionLabel extends Component {
  /* Displays an alertbox */
  void showAlertBox(/* Text 1 */ String alertMsg1, /* Text 2 */ String alertMsg2) {*
  this.alertText1 = alertMsg1;
  this.alertText2 = alertMsg2;
  this.showAlert = true;
In the component.js file, to keep things simple I've chosen the UI5 Label control to extend with a custom method function that I want to invoke via the script contribution as follows:
sap.ui.commons.Label.extend("com.infovizi.prototypes.ActionLabel",{
  metadata : {
     properties : {
      "showAlert" : "boolean",
        "alertText1" : "string",
        "alertText2" : "string"
  initDesignStudio: function(){
  renderer:{},
  // Override ShowAlert setter to perform action
  setShowAlert: function(alertState){
  if(alertState == true) {
  this.displayAlert(this.getAlertText1(),this.getAlertText2());
  // Reset showAlert property value to "false" and call fireDesignStudioPropertiesChanged()
  // to allow setShowAlert function to be invoked multiple times via BIAL script
  this.showAlert = false;
  this.fireDesignStudioPropertiesChanged(["showAlert"]);
  return this;
// Alert method
  displayAlert: function(alertMsg1, alertMsg2){
  alert("Message: " + alertMsg1 + " " + alertMsg2);
I then created a DS app with the following script in the click event of a button to invoke the method function in the custom Label control:
ACTIONLABEL_1.showAlertBox("Hello", "World!");
After launching the application and clicking the button for the first time, the alert display function is displayed as expected but the parameters have not been updated, even though they are updated in the script contribution function, so the parameters are not displayed, as follows:
After the alert is dismissed and the DS button is clicked again, this time the parameters are passed correctly as follows:
So the parameter updates for alertText1 and alertText2 seem to be out of sync for some reason.  I'm sure I'm missing a nuance here.  Any ideas?
Conceptually, I'm just trying to achieve what Leandro Cardoso has done with the script contribution action function calls in his Notify component.  The only difference is that I'm implementing HandlerType "sapui5" instead of "div".
Any thoughts about the parameter syncing issue would be appreciated.

Similar Messages

  • Design Studio 1.4 SDK:  Issues when launching from the Eclipse IDE

    Hi,
    I am receiving various errors when launching Design Studio 1.4 from the Eclipse IDE for SDK development.  All of the components appear in the Component panel as expected but I can't drag and drop any of the SDK components (or standard components for that matter) onto the canvas.  When I launch Design Studio 1.4 independently of Eclipse everything works fine (event though I still see come errors in the Console).
    I'm hoping the community can provide some guidance to help resolve the issue.  The details are documented below:
    Environment:
    Design Studio Version: Release 1.4 SP0 Patch 1 (64-bit)
    Eclipse Version: Java EE IDE Luna Service Release 1a (4.4.1) - 64-bit
    Java Run-time Environment: Version 8 Update 25 (64-bit)
    Operating System: Windows 7 64-bit
    Eclipse Configuration for DS SDK:
    Target Location:
    Target Environment:
    Target Run Configuration (Main):
    Target Run Configuration (VM Arguments as per DS SDK Developer Guide):
    Steps to Reproduce Error
    1.  Launch Eclipse
    2.  Launch DS 1.4 from Run command in Eclipse
    The following screen appears immediately after launching DS from Eclipse:
    At this point the DS error log is as per the attached DS_Log_After_Eclipse_Launch.txt file.
    3.  Create a new blank Application from the Application -> New menu.  This time additional error messages appear as shown in the screenshot below:
    It's not possible to drop any standard or SDK components onto the canvas because the internal browser doesn't appear to have been instantiated due to the above errors.
    At this point the DS error log is as per the attached DS_Log_After_Eclipse_LaunchAndAppCreate.txt file.
    3. Return to Eclipse IDE
    The Eclipse Console displays the following errors:
    The Eclipse Console Log is as per the attached EclipseConsoleLog.txt file.
    4.  Launch DS 1.4 Independently
    The following errors also appear when I launch DS 1.4 independently of Eclipse but it in this case everything seems to work fine.
    Any assistance would be greatly appreciated.
    Thanks,
    Mustafa.

    Hi there,
    From My Experience you batter use older version of Eclipse - Helios:
    Eclipse IDE for Java EE Developers | Packages
    developers/heliossr2
    Good Lack

  • Design Studio 1.4 SDK samples

    I have issues with using the DS_14_SDK_SAMPLES.
    1. my laptop is on windows 7 32 bits. Following the instructions I successfully installed the DS_14_SDK_Samples. When I open the Eclipse and launch SDK, my Design Studio will open and the samples are shown. However, the other SDK I installed, such as the Utilities pack, Karol's components, etc.
    On the other hand, if I launch the Design Studio directly, I can see all the other SDKs but not the custom components from DS_14_SDK_samples. Does anyone have similar experience or know how to fix it?
    2.
    I have a separate issue on another PC: It is Windows 7 64 bit, so I installed Eclipse 32 bit and Design Studio 64 bit. The JAVA jre is 1.8. The Design Studio use 1.4 SDK, Utilities pack, Karol's components with no issue. However, when I installed the DS_14_SDK_samples, Eclipse failed to launch the Design Studio although I believe I did the same thing as I did on the laptop mentioned above?

    Hi there,
    From My Experience you batter use older version of Eclipse - Helios:
    Eclipse IDE for Java EE Developers | Packages
    developers/heliossr2
    Good Lack

  • Design Studio 1.2 SDK - How can standard UI5 themes be loaded for custom components?

    The SAPUI5 library that is embedded in the Design Studio framework includes standard themes such as the Blue Crystal theme.  When developing UI5-based SDK components with DS 1.2 SP00, I was able to successfully load the built-in Blue Crystal theme by simply including the following statement in the component.js file:
    sap.ui.getCore().applyTheme("sap_bluecrystal");
    However, as of DS 1.2 SP01 this approach no longer seems to work.  I don't receive any error messages either.  The theme simply doesn't load like it used to or sometimes might just load partially.
    The only difference I can see between SP00 and SP01 in terms of the UI5 framework is that it has been upgraded from version 1.12.7 to 1.14.6 but this shouldn't impact the validity of the above statement.
    I'd appreciate it if anyone has any ideas about why the applyTheme() method no longer works and how this issue might be fixed.
    Of course there is the workaround of manually including the theme files with a <cssInclude> tag in the contribution.xml file but this seems like a waste of resources given that technically, the theme is already included in the Design Studio framework.

    The SAPUI5 library that is embedded in the Design Studio framework includes standard themes such as the Blue Crystal theme.  When developing UI5-based SDK components with DS 1.2 SP00, I was able to successfully load the built-in Blue Crystal theme by simply including the following statement in the component.js file:
    sap.ui.getCore().applyTheme("sap_bluecrystal");
    However, as of DS 1.2 SP01 this approach no longer seems to work.  I don't receive any error messages either.  The theme simply doesn't load like it used to or sometimes might just load partially.
    The only difference I can see between SP00 and SP01 in terms of the UI5 framework is that it has been upgraded from version 1.12.7 to 1.14.6 but this shouldn't impact the validity of the above statement.
    I'd appreciate it if anyone has any ideas about why the applyTheme() method no longer works and how this issue might be fixed.
    Of course there is the workaround of manually including the theme files with a <cssInclude> tag in the contribution.xml file but this seems like a waste of resources given that technically, the theme is already included in the Design Studio framework.

  • How to view Script Source for  Execution Method type = "Spawned" ?

    I finded Concurrent Program Executable of "Actual Cost Worker"
    Concurrent Program Executable Information
    Executable :CMCTCM
    Sort Name : CMCTCM
    Apllication : Oracle Bills of Mateial
    Description Unified : Cost Manager
    Execution Method : Spawned
    Excution File Name CMCTCM
    Subroutine Name :cmltcm
    I want to view script source for CMCTCM.
    But. Before I have not view "Spawned' script source.
    I only have tech PL/SQL, Form, Report source.
    How to confirm script source of Spawned type ?
    Message was edited by:
    roseok77
    Message was edited by:
    roseok77

    Try raising metalink TAR asking for the PRO*C source code.

  • Upload of Design Studio SDK extension to BI platform failed

    Hi Design Studio (SDK) friends,
    I created my own extension via Design Studio 1.3 SDK. It works fine in local mode. Than I uploaded it to our BI platform by using the menu entry "platform extensions" in Design Studio. Nice, it works, even on iPad.
    Because of some changes we undeployed / removed this extension from the BI platform (vie Design Studio 1.3).
    Now, after correcting the extension we would like to upload it again, but it is not possible. Following error message is shown:
    "One or more extensions failed to install
    Failed to access plugin JAR file of extension "myOwnExtension" (id: de.mycompany.myOwnExtension)"
    Other extensions can still uploaded. System is going to undeploy them and reinstall them without any error.
    The extension, which could not be uploaded, works fine in local mode. The correction changes were small, like changes in css-file and in the component.js-file.
    Do you have any idea, why the system could not access to the plugin JAR file?
    Many thanks for your helping and support.
    Kind regards
    Patrick
    Following the complete Error-Log:
    com.sap.ip.bi.zen.connectivity.ConnectivityException: Failed to access plugin JAR file of extension "myOwnExtension" (id: de.mycompany.myOwnExtension)
        at com.sap.ip.bi.zen.backends.bip.BiPlatformSystem.deployExtensions(BiPlatformSystem.java:1999)
        at com.sap.ip.bi.zen.ui.internal.dialogs.sdk.PlatformExtensionsDialog.installExtensions(PlatformExtensionsDialog.java:278)
        at com.sap.ip.bi.zen.ui.internal.dialogs.sdk.PlatformExtensionsDialog$5.run(PlatformExtensionsDialog.java:196)
        at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
        at com.sap.ip.bi.zen.ui.internal.dialogs.sdk.PlatformExtensionsDialog.runInstallExtensionsAndShowWarning(PlatformExtensionsDialog.java:192)
        at com.sap.ip.bi.zen.ui.internal.dialogs.sdk.PlatformExtensionsDialog.installButtonClicked(PlatformExtensionsDialog.java:151)
        at com.sap.ip.bi.zen.ui.internal.dialogs.sdk.PlatformExtensionsDialog$2.installClicked(PlatformExtensionsDialog.java:98)
        at com.sap.ip.bi.zen.ui.internal.dialogs.sdk.SDKExtensionsTable$2.widgetSelected(SDKExtensionsTable.java:126)
        at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248)
        at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
        at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1057)
        at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4170)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3759)
        at org.eclipse.jface.window.Window.runEventLoop(Window.java:826)
        at org.eclipse.jface.window.Window.open(Window.java:802)
        at com.sap.ip.bi.zen.ui.internal.dialogs.ZenTrayDialog.open(ZenTrayDialog.java:112)
        at com.sap.ip.bi.zen.ui.internal.util.SdkHelper.showDeployExtensionsDialog(SdkHelper.java:75)
        at com.sap.ip.bi.zen.ui.backendspecific.BackendSpecificUiHandlerAdapter$2.widgetSelected(BackendSpecificUiHandlerAdapter.java:122)
        at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248)
        at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
        at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1057)
        at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4170)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3759)
        at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1113)
        at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
        at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:997)
        at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:138)
        at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:610)
        at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
        at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:567)
        at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
        at com.sap.ip.bi.zen.ui.internal.application.ZenApplication.start(ZenApplication.java:36)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
        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:354)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:181)
        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:636)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1450)

    Hello together,
    I could solve this issue by myself.
    I found following discussion:
    Issue with Design Studio SDK 1.2 Component development
    Because design studio uninstalled my own extension not correctly the *.jar file was missing in the folder:
    C:\Users\<myUser>\Analysis-config\plugins
    and could not found, while uploading the extension to BIP.
    Steps for solving:
    1. uninstalling the extension
    2. deleting all files in the folder (see above)
    3. reinstalling the extension
    4. uploading the extension to BIP (it work again)
    Kind regards and thanks to all, who thought about my problem.
    Patrick

  • Design Studio 1.3: include image, change textbox background colour, Data labels allingment

    Dear Community,
    I've been trying to rebuild one of my Analayis Office Workbooks within Design Studio.
    Attempting this, I've come across some questions I hope to find answers to, with your help:
    1. How can I include images, in a local application? I've inserted the "image" component, but I can't asign an Image file to this.
    2. How can I change the background colour of a textbox-component?
    3. I have a chart in my Dashboard. The bars I want to be labled. But defining, that data labels should be placed outside the bars, there is a mixed result. Some bars show the labels outside, some others display the lable somewhere within the bar.
    Who can help with those questions? Thanks a lot.
    Kind regards
    Sarah

    1. How can I include images, in a local application? I've inserted the "image" component, but I can't asign an Image file to this.
    When working in Local Mode, go to Application -> Open Repository Folder -> and open the folder that your BI Application is named.  Place your image file there.  Go back to your Design Studio Image component and set the src to the name of that image file.  It should show up.  This gets a little more involved when working on the BI Platform or NetWeaver Platform, as you'll want to publish the Image to a public folder on the CMS somewhere (for BI Platform), or the MIME Repository (for NetWeaver Platform).  But the concept is similar in that you have to know where to place the files once you are at that point.  Also as an approach that should work without any need to publish the image to the platform (as it's a little tedious), please read this document:
    How to embed images inside of a Design Studio App without uploading to server.
    Or, if you do not want to go through the base-64 encoding, consider the addon I blogged about here:
    Design Studio 1.2 SDK - An Image Component free of MIME Repository worries
    The deployable version can be downloaded from this blog:
    Design Studio 1.2/1.3 SDK - Design Studio Utility Pack
    2. How can I change the background colour of a textbox-component?
    You will have to write a CSS rule like this:
    .testbox {
        background : #009966;
    Then assign 'testbox' as the CSS Class to the text input box.
    3. I have a chart in my Dashboard. The bars I want to be labled. But defining, that data labels should be placed outside the bars, there is a mixed result. Some bars show the labels outside, some others display the lable somewhere within the bar.
    Not sure how much control the delivered chart components would give you here.  Maybe one of the third party addons listed in this post could help?
    List of Design Studio SDK Components

  • 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

  • How to set a BEx Query Condition in Design Studio (e.g. Net value GT 0)

    Hi experts,
    I have set a simple condition in my BEx Query...
    e.g. key figure "Net value" GT 0 to become only positive values in the query result.
    In the Query runtime the condition works successful, but in the Design Sudio view the defined Query condition doesn´t work.
    In my Design Studio crosstab I have tried to switch between the display setting "Conditional formating Visible" true/false, but without success.
    By the way, before I have posted this thread, I had a look at this two blogs...
    Design Studio 1.0: Create a Scorecard Using SAP BW BEx Query Exceptions
    Design Studio 1.2  - a Second Look
    Any ideas or experiences?
    Thanks and regards,
    Michael

    Hi Michael,
    I think you are mixing up two different BEx terms. Conditions are filters on key figures (show me only the results with a value bigger than 50). Exceptions do not filter the result set, but provide a formatting based on the values in the result set (if value is bigger than 50, make its cell red).
    The Conditional formatting setting in Design Studio refers to the BEx exceptions. For the BEx conditions there isn't such a setting available. You just have to activate the condition in your BEx Query and use that for your data source in Design Studio.
    If you want a workaround to enable/disable conditions from Design Studio, check this blog I wrote: HackingSAP.com - SAP Design Studio and Conditions It shows how you can use variables to adjust the conditions (and also activate) from within Design Studio.
    Cheers,
    Xavier

  • Unable to install design studio add-on onto BI Platform

    I try to install design studio add-on onto bı platform 4.0 sp9 and version of design studio is 1.2. because i can not use design studio client tool without installing add- on for deploy application server.here.By the way, login credentials are correct,  you can find errors details in the attachment.
    anybody help me about this issue?, thanks in advance,

    Hi Tammy,
    First of all, thanks for quick respond
    second image is no matter i will choose third ones.However, the next step, i try to get pass cmc login within the first image but i could not, i can login cmc with these login credentials which i used add-on process side, i do not think that this issue is related to login credentials,
    another way that i can deploy analisys application server within CMC ?

  • Business Objects Design Studio

    I am working on a report on Business Objects Design Studio,
    Please help me out with the below two issues,
    1. I want to display user name after Welcome message. The user name should be of the person who is logged into the SAP warehouse currently.
    2. The corresponding user should only view those option, reports that he has access to.
    Please suggest me the approach to work on this scenario

    Thanks Tammy for the reply. I have posted the same question in my second post, that's why I used the same thread.
    What I am trying to do is,
    I am trying to figure out a web item equivalent to role menu (of Web Application Designer) in Business Objects Design Studio.
    Currently we are using BW 3.5 role menu to display BW 7.0 web template links. As SAP will no longer support role menu web item, I have to find a similar alternative, I am trying to look for a similar authorization (role menu) in Design Studio. All this is required so that if one user has access to only 3 reports then he should get only 3 reports displayed in the index page for all reports i.e main page for accessing all reports.
    Also, i would greatly appreciate if you could please provide some more inputs on Design Studio Backend authorizations .

  • Limitations while conected HANA universe to design studio

    Hi All,
    Previously i have created number of dashboard reports in Design Studio using BEx quires. Recently we moved to HANA database. From HANA we have universe connected to Design studio. Here we are facing some problems. It is not accepting huge data. when i tried to see the data in edit initial view, it is showing "data is too large ". looking to know about if any limitations and performance tuning while using HANA universe to Design Studio.
    Kind Regards,
    Sud.  

    Hi - please see the SAP Help page 68
    http://help.sap.com/businessobject/product_guides/AAD14/en/ds14SP02_user_en.pdf
    It says "Maximum Result Set The result set has a fixed limit of 5000 rows or 50000 data cells. If either limit is exceeded, no data is displayed"
    Please also search SCN before posting per the SCN rules, as this has been asked before.
    Thank you

  • BW Integrated Planning in Design Studio 1.3

    Hello experts,
    This is regarding one of the newest features in the latest 1.3 release of Design Studio i.e BW integrated planning. i was going through the admin guide and i found the following sentence which suggests to me that planning applications are not mobile yet. Can anyone please shed some light on this? "With SAP BusinessObjects Design Studio you can create desktop browser applications for planning business data" .
    This suggests that the planning applications work only on desktop browser. With out current client, What we are trying to achieve is , try to somehow create an approval process with design studio as user interface. for example: user clicks on an approve button  which writes back data and approved a request.
    Regards,
    Rahul

    Hi Madireddy,
    there is currently no official Crosstab support for planning on mobile devices yet.

  • Design Studio 1.3 applications shows only white screen on Mobile BI App (iPad)

    Hello Design Studio friends,
    after upgrading or BI platform (4.1) Design Studio Add-On from version 1.2 to 1.3 we could no errors, everything works fine. But now we have the issue, that all of our Design Studio Applications do not work on iPad.
    All mobile Applications are listed correctly in the overview in the Mobile BI App. But after starting one application the loading screen is running and after loading only a white screen is displayed. No data, no components, no variables screen etc.
    Do you have any idea about the reason of our problem?
    Here some additonal information, what we have done:
    After upgrade we restartet the BIP and checked that all services are running.
    We saved new Design Studio 1.3 Applications on BIP.
    We run the Design Studio Applications local (everything works) over BIP on Desktop clients (everything workds), via Mobile BI App (iPad iOS7, newest iOS Version and newest App version) (only white screens are shown).
    We deleted all metadata on iPad and reconnected to our BIP.
    Our DataSources, integrated in the Design Studio 1.3 applications, are based on SAP BW Queries of a BW 7.4 system.
    Many thanks for help and your support.
    Kind regards
    Patrick

    Hi Tammy,
    I deleted the mobile BI App from my iPad and installed it again (newest version).
    No changes, after loading the Design Studio Application only a white screen is shown.
    I cannot find a relevant Part in the App protocol (Debug Mode).
    Thanks for your support.
    kind regards
    Patrick
    protocol:
    Application’s app store version:6.0.3
    Application’s internal version: 6.0.3
    SAP BusinessObjects Mobile server version:14.1.1.1036
    SAP BusinessObjects Mobile server internal version:3.0
    Work Offline:false
    iOS Version:7.1.1
    Device Type:IPad
    2014-06-15 20:12:15.060 SAP BusinessObjects Mobile[1331:707] |I|: [IPadActivityIndicator.m initWithMessage:andCancelButtonTitle: 59] initWithMessage(): init Custom Activity Indicator Alert View
    2014-06-15 20:12:15.065 SAP BusinessObjects Mobile[1331:707] |I|: [IPadActivityIndicator.m initWithMessage:andCancelButtonTitle: 64] initWithMessage(): init UI ActivityIndicator View
    2014-06-15 20:12:15.068 SAP BusinessObjects Mobile[1331:707] |T|: {[HomeScreenData.m openOnlineDocument:withOption:withOpenParams: 2173 Clicking on document in homescreen document to view online]
    2014-06-15 20:12:15.071 SAP BusinessObjects Mobile[1331:707] |T|: {[ConnectionUtils.m getNetworkReachability 345 network reachability = 1]
    2014-06-15 20:12:15.088 SAP BusinessObjects Mobile[1331:707] |T|: }[HomeScreenData.m openOnlineDocument:withOption:withOpenParams: 2192]
    2014-06-15 20:12:15.101 SAP BusinessObjects Mobile[1331:707] |I|: [IPadActivityIndicator.m initWithMessage:andCancelButtonTitle: 59] initWithMessage(): init Custom Activity Indicator Alert View
    2014-06-15 20:12:15.105 SAP BusinessObjects Mobile[1331:707] |I|: [IPadActivityIndicator.m initWithMessage:andCancelButtonTitle: 64] initWithMessage(): init UI ActivityIndicator View
    2014-06-15 20:12:15.109 SAP BusinessObjects Mobile[1331:707] |T|: {[ConnectionUtils.m getNetworkReachability 345 network reachability = 1]
    2014-06-15 20:12:15.193 SAP BusinessObjects Mobile[1331:707] |T|: {[ConnectionUtils.m getNetworkReachability 345 network reachability = 1]
    2014-06-15 20:12:20.391 SAP BusinessObjects Mobile[1331:707] |T|: {[ConnectionUtils.m getNetworkReachability 345 network reachability = 1]
    2014-06-15 20:12:26.615 SAP BusinessObjects Mobile[1331:707] |T|: {[MobiRootViewController.m showSettings: 2298 showing Applicaiton settings page]
    2014-06-15 20:12:26.622 SAP BusinessObjects Mobile[1331:707] |T|: }[MobiRootViewController.m showSettings: 2369]
    2014-06-15 20:12:27.498 SAP BusinessObjects Mobile[1331:707] |T|: }[ApplicationSetting.m tableView:didSelectRowAtIndexPath: 792]

  • Design Studio on HANA - HCP or AWS?

    Hello community,
    Has anyone had experience with hosting Design Studio on an XS engine in HCP?
    We are looking to host Design studio on HANA but are not sure which solution to pick to host it.
    This is our scenario:
    Data source: XML files through an external webservice, weekly upload, less that 1GB of data
    ETL Tool: Data services
    DB: HANA
    Reporting tool: Design Studio on HANA
    Display: External website connecting to Design Studio Dashboard and displaying it within an iframe.
    The solution will be public facing and therefore needs to be in a productive environment.
    From what I have read, it seems possible on AWS. However I am not sure if it is possible with HCP.
    Any experience on that?
    Thanks

    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

Maybe you are looking for

  • Lightroom won't open Import dialog box

    Lightroom was working fine, but recently started locking up as soon as I click on import to bring up the import dialog box.  Other than that, lightroom appears to be running fine and zippy, but as soon as I click the button or go through file menu it

  • How to perform subroutine form in an include program?

    Hi all, I would like to perform an external subroutine form residing in an include program from a customer function user exit. I tried using the following code, but it dumps: PERFORM <form name> IN PROGRAM (lv_program)            TABLES <a> <b> USING

  • Hyperlink to a file stored on a server

    Hi guys, I've created dynamic pdf in LCD. It allows creating hyperlinks, but unfortunately only to web locations. I'd like to create a link that connects to a file stored on a server based on the DFS file system. Is it possible to do something like t

  • Report 6.0 in PDF

    Hi, Can anyone help me out in this I want the report ouput in pdf when i call if from forms instead of saving to hardisk. I have tried using the following parameter destype - file desname - c:\test.pdf desformat-pdf It creates the file in c:\ drive b

  • Why doesn't Photoshop support read/write of .mpo files?

    I am actually blown away that I cannot find a single Photoshop plugin that reads and/or saves .mpo files. Does somebody know why? And why isn't anyone talking about this format? I find it hard to believe that no one in the entire Photoshop Windows fo