Export as HTML to desktop ( outside Mobile App)

Hi all,
Right now we are in 4.1 SP2, Just checking whether there is any new feature added in the recent upgrade on
Export Dashboard ( Xcelsius ) as HTML to desktop ( outside Mobile App)

Hi RUC,
The Dashboard SDK provides developers to develop any type of Flex application or component into the dashboard designer. Please check the below link for more details on this.
Xcelsius SDK - Everything Xcelsius - The 'Xcelsius Gurus' Network
For more SDK development & tutorials check the below link in developer information:
SAP BusinessObjects Dashboards 4.1 – SAP Help Portal Page
Upgrading add-ons to Adobe Flex SDK 4.0 - Business Intelligence (BusinessObjects) - SCN Wiki
Dashboard SDK
Hope this helps!!!
--SumanT

Similar Messages

  • How to create and use Data Vault with HTML/JavaScript (SAPUI5) for Mobile Apps?

    Hello,
    I am creating a demo Enterprise Mobile App, for cross platform and I want to use the Data Vault.
    I am not able to figure out how to implement the Data Vault with HTML/JavaScript i.e. SAPUI5 for cross platform mobile apps I have a tutorial, but it is for Android based apps. Where as I want it for iOS as well. I guess, in this case, implementing the Data Vault using SAPUI5 over HTML and JavaScript would be  better.
    If anyone has any links or sample code to implement Data vault in HTML/JavaScript (SAPUI5) or specific for iOS apps, it would be great.
    Thank you.

    Hi,
    This is the "SAP Mobile Documents" community, so this seems to be the wrong place for asking your question related to Data Vault / SAPUI5.
    Maybe you should post your question here: http://scn.sap.com/community/developer-center/front-end.
    best regards,
    Ingo

  • Creating web page now, want mobile app later.  Best practices?

    I've been writing actionscript on and off for a long time now, but have always used the Flash IDE.  I'm hoping to build my next project using Flex Builder because I'm more of a code jockey than a designer.  I've got Flex Builder 3.
    I'm involved with a modest mobile game project.  We're hoping to build a simple game and it seemed logical to do a quick-and-dirty version of the game in actionscript so the project members and a select audience might be able to evaluate the game dynamics in a browser before we spend a gazillion dollars building the game for iPhone and Android platforms.
    It is my sincerest hope that I might develop my code in Actionscript and MXML and use this code to build mobile apps for iPhone, iPad, and Android without having to rewrite everything in Objective C or Java or whatever other language might be in play at the time we get it finished.
    Q1: Is this possible?
    Q2: Can anyone sketch out for me an overview of the process whereby one exports a Flex project to a mobile app platform?
    Q3: Can any seasoned developers tell me the big "gotchas" to watch out for?  For instance, I'd hate to incorporate a component that would not export to one of the mobile platforms.
    Any help would be greatly appreciated.

    Thanks for your helpful post.  That's encouraging to know that I might be able to get the Flex 4.5 SDK without upgrading my IDE.  I'm a big fan of Eclipse and am considering trying to just use Eclipse with a Flex plugin. I certainly hope I might be able to download the latest eclipse and install a 4.5SDK plugin.  Might as well shoot straight for the latest SDK, right?  It would be great to avoid the $300 investment.
    From your post, it sounds as though the Flex 4.5 sdk will be required for one to access the mobile phone features (gps, camera, accelerometer, etc.) which makes sense.  The ability to go actionscript->mobile was only recently announced.  Personally I think this capability is brilliant on Adobe's part.
    I'm still wondering about the "best practices" aspect. Obviously the idea of a mouseover does not apply in the context of a touchscreen.  As I recall, the events exposed by Cocoa Touch (or other touch screen APIs/libraries) don't have the same Mouse/Pointer events as the AS3 that I know.  The point of this post (which is working well so far thanks for the input) is to try and make sure that I avoid building an app which uses features unavailable in a mobile context.  I'm starting to wonder if skipping the web page advice is being given because they mobile and web page paradigms are so different.
    I still assert that the web page stage would be much easier to bring in testers -- meaning non-technical people who wouldn't know the first thing about installing an app on their phone. I'm talking about an audience of dozens or possibly hundreds and just can't provide them all guidance about getting the app installed.

  • Converting Burrito Flex Mobile App to Desktop

    Hi Guys!  Have just developed an app for Android using Burrito.  It works nicely on a phone but it is also great as a little 'widget like' desktop app.
    Is there any way to package it so that it may be distributed as an Air app that runs exactly like it does when run in emulation mode (adl) from Flash Builder?  If not, what is the simplest path to convert the <mobileApplication> to a <windowedApplication>?
    Thanks,
    Richard
    Update:  Surprised no one has answered this.  I am new to Flash Builder and I figured you guys would know.  Have been looking at viewstacks in standard Air apps and trying to figure how to use this to achieve the same effect as a mobile app.  Looks like quite a lot of work to rewrite the app to Air on the Desktop ... is there an easier route .... anyone?

    Hi Richard,
    I was able to complile and deploy my Android app using command line air/android packaging and adding required air swc's to my project. I used the following packageApplication.bat(downloaded from livedocs) to package my MobileApplication as both an air app and android:
    :: AIR application packaging
    :: More information:
    :: http://livedocs.adobe.com/flex/3/html/h ... ml#1035959
    :: Path to Flex SDK and ANDROID binaries
    set PATH=%PATH%;C:\Program Files (x86)\Adobe\Adobe Flash Builder Burrito\sdks\4.5.0\bin;C:\Program Files (x86)\Adobe\Adobe Flash Builder Burrito\jre\bin
    :: commented   set PATH=%PATH%;C:\PATH_TO_YOUR_ANDROID_SDK\android-sdk-windows\tools
    echo PATH Set to %PATH%
    :: Signature (see 'CreateCertificate.bat')
    set CERTIFICATE=testCert.p12
    set SIGNING_OPTIONS=-storetype pkcs12 -keystore %CERTIFICATE%
    if not exist %CERTIFICATE% goto certificate
    echo CERTIFICATE_FILE: %CERTIFICATE%
    :: Output AIR
    if not exist air md air
    set AIR_FILE=air/FlashClientMobile.air
    echo AIR_FILE: %AIR_FILE%
    :: Output APK
    if not exist apk md apk
    set APK_FILE=apk/FlashClientMobile.apk
    echo APK_FILE: %APK_FILE%
    :: Input
    set APP_XML=FlashClientMobile-app.xml
    set FILE_OR_DIR=FlashClientMobile.swf assets
    echo APP_XML: %APP_XML%
    echo FILE_OR_DIR: %FILE_OR_DIR%
    :: MEecho Signing AIR setup using certificate %CERTIFICATE%.
    echo AIR COMMAND adt -package %SIGNING_OPTIONS% %AIR_FILE% %APP_XML% %FILE_OR_DIR% 
    call adt -package %SIGNING_OPTIONS% %AIR_FILE% %APP_XML% %FILE_OR_DIR%
    if errorlevel 1 goto failed
    :: echo.
    :: echo AIR setup created: %AIR_FILE%
    :: echo.
    echo Signing APK setup using certificate %CERTIFICATE%.
    call adt -package -target apk %SIGNING_OPTIONS% %APK_FILE% %APP_XML% %FILE_OR_DIR%
    if errorlevel 1 goto failed2
    echo.
    echo APK setup created: %APK_FILE%
    echo.
    :: APK INSTALL
    echo Installing package... %APK_FILE%
    call adb install %APK_FILE%
    if errorlevel 1 goto failed2
    echo.
    echo Android setup installed: %APK_FILE%
    echo.
    goto end
    :certificate
    echo Certificate not found: %CERTIFICATE%
    echo.
    echo Troubleshotting:
    echo A certificate is required, generate one using 'CreateCertificate.bat'
    echo.
    goto end
    :failed
    echo AIR setup creation FAILED.
    echo.
    echo Troubleshotting:
    echo did you configure the Flex SDK path in this Batch file?
    echo.
    :failed2
    echo Android install FAILED.
    echo.
    :end
    pause
    //END BATCH FILE
    I then did a diff between a Flex Buritto Moblie/AIR project library swc's included and identified swc included in AIR and missing in mobile. I updated the project libraries by adding the following swc's:
    sparkskins.swc
    utilities.swc
    aircore.swc
    airframework.swc
    airspark.swc
    applicationupdater.swc
    applicationupdater_ui.swc
    Then performed a clean build and ran packageApplication from my bin-debug dir and was successfully able to install and run the mobile application on the desktop :-).
    Being new to supporting mobile phones, tablets, TV screens along with our web and desktop clients I am not yet sure how we will structure our projects and get maximum code reuse and UI consistancy across these form factors. I have already created a common library project containing all remote stubs, value objects and common utilities and am still trying to figure out how much mileage I can get out of my mobile views. I like the View Navigator and ActionBar navigation on all screens we support and am thinking to extend the ViewNavigator and add additional states along with the 'portrait' and 'landscape' currently offered, like 'portraitPhone', 'portraitTablet', 'portraitTV', 'portraitPC' and leverage my existing mobile views to use these states to adjust the UI layout to accomodate the new realestate... but still learning...
    Hope that helps!
    Cheers,
    Greg

  • Export Mobile App to Air Exe/Dmg

    I have an application for mobile devices that I want to export as an exe or dmg.
    I found online to use ADT. Problem is is that I get errors (different ones depending on if air SDK i use)
    If i use air 3.0:
    AIR file at [app path]/app.air could not be converted.
    The error was ""
    If I use air 3.1 or air 3.2 sdk
    SDK is missing file [my path to air]\lib\nai\bin\naip.exe
    I'm running
    java -jar [path to air]\lib\adt.jar" -package -target native app.dmg app.air
    I've also tried
    java -jar [path to air]\lib\adt.jar" -package -target native app.exe app.air
    Any ideas? Apparently there is an integrated Flash Builder 4.6 tool, but for some reason the option under export release doesn't exist for mobile projects - strange...

    What I ended up doing was creating a new Air for Desktop projects that used the source from the mobile project.   

  • InDesign png export for mobile app

    Dear All,
    I have put together a number of text boxes and images in InDesign Creative Cloud CS6 and exported them as one png (or jpeg) image for use in a jQuery mobile iPhone app that I'm creating in Dreamweaver.  Will this work?  Rather than inserting text box, image, text box, images, text box, images, etc. into a page of the mobile app, can I just create one png image in InDesign that includes everything, various text boxes, images, wrapped images, html active inserts, etc., and have people scroll through it as a page in the iPhone app?  The InDesign file for this one page is about 1.1 mb right now.  Will this png image be able to zoom and do everthing it needs to do in the iPhone app?  Creative Cloud CS6 - Mac - Lion 10.7.4.  Thanks.
    Small Town Gal

    Dear Jongware,
    My thinking is the same as yours.  If the iPhone app will allow you to zoom a single image, it must allow you to also zoom a compounded image.  I like the design format of InDesign better than the jQuery Mobile design page in Dreamweaver because InDesign allows you to do text wrap around images and just set things up in a more dynamic fashion.  We still want people to be able to zoom in on a single smaller image in order to view it up close, however so if the code in the iPhone app allows the viewer to zoom in on an individual image, it should allow a scroll and zoom in on a larger page that is also a png image -- makes sense to me. The scroll feature works in the multiscreen view and in Safari browser, but it doesn't allow a zoom preview -- I'll have to do that in the iPhone itself. 
    Anyone else out there have any ideas?  Thanks to Jongware.
    Small Town Gal

  • Include Air ( desktop app ) inside Mobile app permited by Apple / Android?

    Include Air ( desktop app ) inside Mobile app permited by apple / android?
    This is my question....:
    I need a "viewer" app run in a desktop machine... via p2p... ( done and working )
    I will like to include it in my iOS / Android Release, an then by example move it to the documents folder.
    Run iTunes and then copy the file from the shared document folder.
    Is this permited by apple / android / adobe ?
    Thanks....

    just tracing some kind of tests I'm doing.
    A couple of hours ago I left working 2 instances of my Application, leaving alone this computer: one instance is the Mac desktop version and the other one is the Web version. In this case both versions were running on the same computer (an iMac with OS X Mavericks):
    1) the AIR/Mac version have been recompiled yesterday with the new AIR4(.0.0.1619 - AIR 3.8 is used to fall in a equivalent way - no changes)
    2) the Web version have been compiled targeting FP 11.8 and it is running on Chrome browser with PepperFlash NOT disabled (which reports version MAC 13.0.0.80, the latest)
    I left working both the Mac and the Web versions of the Application opened on the pc screen (= not minimized) but kept totally behind some Terminal/ssh windows (= not on OS focus and the system is not asked to update any screen area of the app for sure).
    I came back after about 2 hours and I got the browser version connected&running (but it is not a rule) and I also found the AIR-based Mac version disconnected (uau, usually I found the app disconnected but with the screen freezed at last user look ->) which rapidly reconnects upon my click on the Apple dock icon (bring to front).
    Why these different behaviours? I ask to myself.
    The two versions of the software are TOTALLY the SAME application: except for the first Flash file (a 24kb swf file for the Web version and a 170kb dmg file for the Mac version), basically a platform-dependent loader, both versions loads the same remote swf modules. Of course t is AIR (or my first Flash file?).
    I attach the source code of the Mac version of the [first file] AIR-based application at the following url:
    http://92.63.230.100/others/others/wtstarter_mac.as.txt
    _Adobe_, is it a bug? isn't it?
    mc

  • IOS - Error - Playlists on desktop not showing up in mobile app

    Hi,I've upgraded to the latest ios app and have lost all the playlists I have on my desktop. DescriptionPlaylists on my desktop (mac) do not show up on my mobile app (ios) A more detailed description, using numbered steps1. I have done a clean reinstall of the app on mobile2. I have opened the app, then used the slide power off / home button exercise to close the app Have no idea what else to do.  What I expected to happenThat the playists I have saved on my desktop would be available on my ios app What actually happenedI go to Your Music > Playlists and there is no data. My iPad/iPhone modeliPhone 6 Device’s Operating SystemiOS 8.3 Is your device jailbroken?No Approximately how many playlists do you have?74 playlistsApprx 10 synced for offline mode My mobile Spotify versionVersion 3.3.0.1640 My desktop Spotify version (if applicable)Version 1.0.7.157.g2a6526f9 My provider and countryUK accountLiving in Australia My usernameSamuel Tait Do you have any screenshots you can attach to more clearly explain your issue?attached

    Hey there, can you confirm if there is any songs showing up in Your Music? Can you test if they are still syncing between the apps by creating a new playlist and seeing if that appears?

  • Mobile app to desktop air app

    How do I convert my mobile air app to a desktop air app.  I basically just want the app to look just like the emulator version but maybe with a 1024x768 view instead (tablet sized).

    When you build the release build of the application, you can choose "AIR for desktop" and the app looks exactly like in the emulator.
    Otherwise you have to port some of your application components to an AIR project (if you want the full AIR desktop functionality).

  • How to implement OData based BASIC Authentication using HTML, JavaScript for Mobile Apps using Apache Cordova/PhoneGap and datajs-1.1.1.js library

    Hello,
    I have an issue with OData based BASIC authentication for iOS App created using HTML, JavaScript, SAP UI5, OData and Apache Cordova/PhoneGap.
    Please check the post here http://scn.sap.com/thread/3527245
    Request you to kindly reply on the above given link.
    Thanks and Regards,
    Suraj Kumar

    Hello Prathik,
    The code which I am using for OData based BASIC Authentication, for my Mobile App is as below.
       var onSuccess = function(data) {
       alert("We are Through"); //Just to check that the OData request was sucessful
       var onError = function(err) {
       switch(err.response.statusCode) {  
       case 403 : {
       window.alert("Error Code - 403, Service unreachable ");
       break;
       case 401 : {
       window.alert("The credentials are incorrect or missing!");
       break;  
    // dataUserName and dataPassword are the two variables, in which I am storing my Username and Password, respectively.
       var connectionRequest = {
       requestUri: "ODATA SERVICE URL GOES HERE/",
       headers: { Authorization : 'Basic ' + Base64.encode(dataUsername + ":" + dataPassword) },
       method: "POST"
       OData.request( connectionRequest, onSuccess, onError);

  • Export offline mobile app datagrid to file able to open in Excel

    I created an offline mobile app using Flash and I have a datagrid I would like to export/save as a file (csv maybe) that can later be opened by Excel.  I appreciate any help.

    My datagrid looks like this...
    Time
    Description
    Duration
    00:03
    Loud
    4
    00:28
    Smatter
    7
    00:50
    Medium
    10
    01:06
    Loud
    6
    02:07
    Loud
    8
    I used this code to create the datagrid...
    import fl.data.DataProvider;
    import fl.controls.DataGrid;
    import fl.controls.dataGridClasses.DataGridColumn;
    var historyArray:Array = [];
    historyArray = [];
    list_history.dataProvider = new DataProvider(historyArray);
    var list_history:fl.controls.DataGrid;
    list_history.addColumn("Time");
    list_history.addColumn("Description");
    list_history.addColumn("Duration");
    list_history.columns = ["Time", "Description", "Duration"];
    I tried modifying the code you shared with me, but I think I am confusing myself more. Do you see where I am making mistakes with the code below?
    var data:Array  = [];
       // data header
        data[0] = {a:'Time',b:'Description',c:'Duration'};
        // data body
         for (var i:int = 0;i<list_history.columns.length;i++)
    data[i] = {a:list_history.columns.dataField ('Time'),b:list_history.columns.dataField ('Description'),c: list_history.columns.dataField ('Duration')};
    //make a csv string
        var csv:String = '';
        for (var i:int = 0;i<list_history.columns.length;i++)
                   csv += data[i].a + ',' + data[i].b + ',' + data[i].c+'\n';
        //write to disk
         stage.doubleClickEnabled = true;
         stage.addEventListener(MouseEvent.DOUBLE_CLICK,writeCSV);
        function writeCSV(event:MouseEvent):void
             var file:FileReference = new FileReference();
             var bytes:ByteArray = new ByteArray();
             bytes.writeUTFBytes(csv);
             file.save(bytes,'test.csv');
    Thank you for your help on this.

  • Unable to attach debugger to mobile app running on desktop

    I've a mobile app (Burrito with Hero SDK) running on desktop as the launch method. I'm unable to connect the debugger to that. The progress just stuck at 57% waiting to connect to the app.
    Any idea what I need to set or where to look further?
    Thanks,
    k.c.

    If you're using the MAX preview release then make sure both the device and your PC are on the same network and connected.

  • USB communication AIR desktop and AIR mobile app

    Hi! Does somebody know the possibilites of USB communication between and AIR desktop app and an AIR mobile app. I need to send files from an desktop application to the external memory on an mobile device. Is it possible for the desktop app to recognise when the mobile is connected. And is it possible for the mobile app to send commands the desktop app? So I need a two way communication. Anybody who has any ideas?

    Really old thread, checking in.

  • Can't receive calls on Lync 2013 mobile app on iPad Air while signed into Lync 2013 Basic desktop client.

    Is there a setting I can change on mobile app or desktop app that will allow this to work?
    I like to stay signed into the desktop client so I can manage my contacts as well as chat with co-workers, but I don't have a camera or microphone so I need to answer calls on my iPad. 

    Normally, both client on Ipad and computer can receive the call.
    Can you test it on your mobile phone?
    I tested on my Android mobile phone and computer, I could receive the video call on both.
    Please try to update your Lync client to the latest version.
    Lisa Zheng
    TechNet Community Support

  • 2FA mobile-app outside US?

    When will be the Two Factor Authenticaiton be available outside US, Germany and few other selected countries? In my case this is Poland, but there are just few countries that have it available. While I may understand you don't have SMS or hardware token based 2FA available everywhere, I completely don't get why it is not available for mobile app. What is the difference for PayPal if I live in Germany or in Poland, both are in EU, and actually neighbours.

    Ideally the problem should get resolved by enabling push notification. But I'm little confused here with your comment -
    The user currently does not have a registered mobile app on any devices.  This is his first attempt at activating the mobile app.....?
    I would suggest you refer this thread link with similar issue:
    https://social.msdn.microsoft.com/Forums/en-US/064fd957-c1fe-405f-866e-3e76715a2a6a/mobile-app-activation-fails?forum=windowsazureactiveauthentication
    Let me know if that helps!
    Thanks,
    Sadiqh

Maybe you are looking for

  • Urgent help required for a fresher in Flash

    Hi Everyone, I am given a swf file, which contains a streaming video flash file..... I need to change the swf file so that it points to another steaming vido file.... I opened the swf file in Flash and went to DEbug -> List Variables... There i saw V

  • How do I get SD video (4:3 aspect ratio) to fill the entire screen?

    Any 4:3 video I stream has black bars on either side of the picture. I have a Samsung HDTV, and I can stream content using its own pc to tv streaming software and 4:3 videos fill the entire screen. Or if I play a DVD with 4:3 aspect ratio that will a

  • Tree View through JSP and Java Script

    Hi, I am looking for code or ideas of a Tree Structure as shown in in the left side frame of admin console of Sun App server 7 on the browser. I need to create a tree structure which will work on the browser like it works on the Sun App Server 7 admi

  • Slow 3d acceleration Catalyst

    Hi, I have an ATI Radeon 3650 HD AGP. Performance inside awesome wm using xcompmgr is OK, and so are playing flash videos etc. But when playing games like assaultcube or sauerbraten I get only 10-20 fps, which is really low even for this card(should

  • GetInputStream() function of OrdHttpUploadFile

    Hi all, I encounter a problem of using interMedia. I hope someone can help me cause the problem is quite urgent. I use "OrdHttpUploadFile" as the file type for the uploaded image from "OrdHttpUploadFormData"'s "getFileParameter()". The file is ok and