Analytical Apps- Cannot Load Tile in Fiori Launchpage

Hi Experts,
Any idea on below? Fiori Fact Sheet and Transactional Apps are working all right. Few days back, we have started working on Analytical Apps but on Launch Page- getting error as Cannot Load Tile.
Please let me know if you have any clue?
Thanking you,
~ Mahendra

Hi Masa,
This SAP notes are already implement in our landscape. And per Inspect element- issue is different... see the screenshot below,
In other words, its like this-
2014-06-17 13:02:33 Error Preparing Query Service Uri using OData4Analytics Library : Missing parameterization request -  core-min-0.js:85ucore-min-0.js:85
2014-06-17 13:02:33 Arguments Passed to this function -  core-min-0.js:85ucore-min-0.js:85
2014-06-17 13:02:33 /sap/hba/r/sappl604/odata/fin/kpi.xsodata;o=hanasys,BankRiskQueryResults,CriticalAmountInDisplayCrcy_E,BankName -  core-min-0.js:85ucore-min-0.js:85
2014-06-17 13:02:35 Error Preparing Query Service Uri using OData4Analytics Library : Invalid parameter name P_EndDate -  core-min-0.js:85ucore-min-0.js:85
2014-06-17 13:02:35 Arguments Passed to this function -  core-min-0.js:85ucore-min-0.js:85
2014-06-17 13:02:35 /sap/hba/r/ecc/odata/mm/im/kpi.xsodata;o=hanasys,MaterialValStockValueTurnoverQuery,InventoryTurnover,null -  core-min-0.js:85ucore-min-0.js:85
2014-06-17 13:02:36 Error Preparing Query Service Uri using OData4Analytics Library : Cannot add filter condition for unknown property name 100 -  core-min-0.js:85ucore-min-0.js:85
2014-06-17 13:02:36 Arguments Passed to this function -  core-min-0.js:85ucore-min-0.js:85
2014-06-17 13:02:36 /sap/hba/apps/sofm/s/odata/sofm.xsodata;o=hanasys,SalesOrderFulfillmentIssueQueryResults,NmbrOfAllIssues,null -  core-min-0.js:85ucore-min-0.js:85
2014-06-17 13:02:37 Error Preparing Query Service Uri using OData4Analytics Library : Invalid parameter name V_SAPCLIENT -  core-min-0.js:85u
Is it something related to HDB? Backend?
Let me know if you have any suggestions.
Thanking you,
~ Mahendra

Similar Messages

  • Desktop Creative Cloud Apps cannot load!

    My desktop Creative Cloud Apps cannot load and it has been like this for months! I can't even log out of it. How do I get the Apps working?

    CloudiAudi what error message is preventing the use of the CC Cleaner Tool? 
    You are welcome to also work directly with our support team at Contact Customer Care and reference this discussion.

  • HT5188 Free VPP app - Cannot load VPP Codes into Configurator because app is Free.  Sister company developed the app for us at no cost and we are installing on our devices.  Will the app expire after a year without VPP codes?  Devices will not have connec

    This is strange Case!
    We have been authorized to download 40 copies of a VPP app.  The price tier is free.  We download the app through itunes and load it into configurator.  Because the App is free we are not given the option to load the codes which we rightfully own. 
    The devices we wish to configure will not have internet connectivity in the future and I need to know that the app on them will not expire!
    If I load the app with configurator (unsupervised!) will the app expire in a year and be disabled?  I cannot have that happen!
    Please advise!
    Best,
    Nelson

    This is strange Case!
    We have been authorized to download 40 copies of a VPP app.  The price tier is free.  We download the app through itunes and load it into configurator.  Because the App is free we are not given the option to load the codes which we rightfully own. 
    The devices we wish to configure will not have internet connectivity in the future and I need to know that the app on them will not expire!
    If I load the app with configurator (unsupervised!) will the app expire in a year and be disabled?  I cannot have that happen!
    Please advise!
    Best,
    Nelson

  • Flash AIR app cannot load child swfs on publish to device

    I have been struggling with this problem for WEEKS now and can't solve it. I have an flash AIR app (creative cloud, AIR 3.8) which is very simple: all it does is load external SWF movies on the click of a start button. It works FINE in test/PC but when I publish to device, the external swfs do not load.
    Here is the code on the main timeline that calls the external swfs:
    //start button
    start_button_TRI_desmatosuchus.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_02_3,false,0,true);
    import fl.display.ProLoader;
    import flash.events.Event;
    var fl_ProLoader_02:ProLoader;
    var fl_ToLoad_02:Boolean = true;
    function fl_ClickToLoadUnloadSWF_02_3(event:MouseEvent):void
              if(fl_ToLoad_02)
                        fl_ProLoader_02 = new ProLoader();
                        fl_ProLoader_02.load(new URLRequest("dinofilms/triassic_desmatosuchus.swf"));
                        fl_ProLoader_02.contentLoaderInfo.addEventListener(Event.COMPLETE,onComplete_02 )
                        addChild(fl_ProLoader_02);
                        fl_ProLoader_02.x = 0;
                        fl_ProLoader_02.y = 144;
              else
                        if (fl_ProLoader_02!=null) {
                                  removeChild(fl_ProLoader_02);
                                  fl_ProLoader_02.unloadAndStop();
                                  fl_ProLoader_02 = null;
              fl_ToLoad_02 = !fl_ToLoad_02;
    function onComplete_02(e:Event):void {
              e.currentTarget.content.addEventListener(Event.ENTER_FRAME,OEF_02);
    function OEF_02(e:Event):void {
              if (e.currentTarget.currentFrame==e.currentTarget.totalFrames) {
                        e.currentTarget.stop();
                        e.currentTarget.removeEventListener(Event.ENTER_FRAME,OEF_02);
                        removeChild(fl_ProLoader_02);
                        fl_ProLoader_02.unloadAndStop();
                        fl_ProLoader_02 = null;
    I am calling about 30 different movies on 30 different frames, so that's why I am using tags like "proLoader_01" so I don't duplicate them. All the external swfs are of course listed in the included files too.
    I would really appreciate the assistance, I am a reluctant coder!
    Message was edited by: Fiona Passantino

    OK, I replaced all the "ProLoader" instances with "Loader" and I am getting an error, below (see***)
        //start button
        start_button_TRI_coelophysis.addEventListener(MouseEvent.CLICK,
        fl_ClickToLoadUnloadSWF_01_3,false,0,true);
        import fl.display.Loader; **HERE, ERROR IS: 1172 fl.display:Loader could not be found**
        import flash.events.Event;
        var fl_Loader_01:Loader;
        //This variable keeps track of whether you want to load or unload the SWF
        var fl_ToLoad_01:Boolean = true;
        function fl_ClickToLoadUnloadSWF_01_3(event:MouseEvent):void
         if(fl_ToLoad_01)
              fl_Loader_01 = new Loader();
              fl_Loader_01.load(new URLRequest("dinofilms/triassic_coelophysis.swf"));
              fl_Loader_01.contentLoaderInfo.addEventListener(Event.COMPLETE,onComplete_01)
              addChild(fl_Loader_01);
              fl_Loader_01.x = 0;
              fl_Loader_01.y = 144;
         else
              if(fl_Loader_01!=null) {
                   removeChild(fl_Loader_01);
                   fl_Loader_01.unloadAndStop();
                   fl_Loader_01 = null;
         fl_ToLoad_01 = !fl_ToLoad_01;
        function onComplete_01(e:Event):void {
         e.currentTarget.content.addEventListener(Event.ENTER_FRAME,OEF_01);
        function OEF_01(e:Event):void {
         if(e.currentTarget.currentFrame==e.currentTarget.totalFrames) {
              e.currentTarget.stop();
              e.currentTarget.removeEventListener(Event.ENTER_FRAME,OEF_01);
              removeChild(fl_Loader_01);
              fl_Loader_01.unloadAndStop();
              fl_Loader_01 = null;

  • Tiles for Fiori Factsheets Apps

    Dear Experts,
              I am configuring Fiori on HANA DB for Fact sheets and Analytical apps. I Completed all the necessary configuration.
              But here i unable to get Tiles for all fact sheet apps on launch pad.
              In the Catlog designer URL, i able to see all fact sheet apps with only target mappings, butn't with tiles.
              Please Help me to move forward from this issue.
              Regards
              Prasanth SV

    Hello Prasanth,
    Factsheet apps are directly integrated with SAP Fiori search in launchpad. SAP has not provided any standard tile for any of the Factsheet app. To access a particular Factsheet app you have to use the SAP Fiori Search Input Field in the Launchpad. Suppose you want to access the Production Order Factsheet app, for this do the following steps:
    Select Production Order from the drop-down list and put * in the search field if you dont have any specific Production Order and press enter.
    You will have the list of all Production Orders available at your backend system.
    From the list select the required one and you will be navigated to the Production Order Factsheet app.
    Hope this will be helpful for you to understand how Factsheet apps work.

  • When I plug in my iPod and it syncs it says that a bunch of my apps cannot be loaded because my iPod does not have the latest software to support them, but I have done all of the iPod software updates and the same apps were working fine just weeks ago...?

    I plug in my iPod to charge from my computer and it syncs with my iTunes, but I've been getting a message that a list of 13 of my apps cannot be loaded onto my iPod because it doesn't have the latest software to support them. I have done all the software updates for my iPod and iTunes says it is completed up-to-date. Do I need to delete the apps and redownload them or what?
    Any help is appreciated! Thanks.

    ok well like lllaass said, most apps require 4.3 or later iOS software. chances are since the apps worked before, the apps themselves got updated and will no longer work with your software version.

  • Usage not calculating correctly.  Cannot load apps.

    Ipad2.  16Gb. ios7.1.2.  Am using under 2Gb on my apps (according) to General: Usage.  Says over 13Gb used. 
    What is is the size of iOS ?  Cannot load needed apps. 
    Have upgraded from ios7.1.1 to. iOS 7.1.2.  Have one video.  May  be just a purchase record as cannot play or delete it.
    Cannot use as is. No apps and unbearably slow..    Something is stuck somewhere!
    PPlease help.  Celia

    Thats a typical cause. Itunes sees that there's content on the device associated with another account and wants you to sign into that account on computer. It might be best to set up all devices as new, then sync with itunes, all with same computer, same itunes library, same account name.
    Since you're trying to set up several deivices in an enterprise environment, you may want to look into this:
    Enterprise/Business/Education
    Apple Configurator (multiple device configuration)
    https://itunes.apple.com/us/app/apple-configurator/id434433123?mt=12
    Mobile Device Management
    Amtelnet MDM
    http://www.amtelnet.com/mdm/mobile-device-management.php
    Meraki MDM
    http://www.meraki.com/products/systems-manager/
    Here's information regarding rolling out iOS devices across an organisation, business or educational establishment:
    http://www.apple.com/support/ipad/enterprise/
    And here's about bulk app purchasing:
    http://www.apple.com/business/vpp/

  • I cannot load an app for Adobe Flash Player on my iPad.  It says not supported on this equipment.  Is that right?  If so, is there a recommended sub that will satisfy that requirement?  Some programs say "adobe flash player"

    I cannot load an app for Adobe Flash Player on my iPad.  It says "not supported" on this equipment.  Is that right?  If so, is there a recommended sub that will satisfy that requirement?  Some programs specifically say "adobe flash player"

    What App? From where?
    You can only get Apps from the App Store. nowhere else.  If you are trying to download form a website you cannot do it.
    If you need Flash Support for websites, you can download a flash supporting browser from the App store.
    Examples are:
    Puffin
    https://itunes.apple.com/en/app/puffin-web-browser/id406239138?mt=8
    Photon
    https://itunes.apple.com/us/app/photon-flash-player-for-ipad/id430200224?mt=8
    There may be others in the store.

  • App cannot be loaded due to insuffiecient local memory

    My Ipad 2 has 3GB free space and I want to install a 1.5GB app (which was installed already some time ago).
    I cannot load and install it due to "insufficient local memory" (this is my translation since I am German).
    What can I do?

    You have to delete content. If you sync with iTunes - unsync some of your content - transfer any movies or videos back into iTunes via File>Transfer Purchases and do not sync them back to the iPad.
    You can also delete local content in Settings>General>Usage>Storage - you can delete apps (which deletes the app data as well) and videos in there.
    If you backup with iCloud - perform a backup before you start deleting apps.

  • Cannot load driver COM.ibm.db2.jdbc.app.DB2Driver

    Hi ,
    I need help on this matter and will really appreciate.
    I have installed Jdeveloper 11g and Weblogic 11gR1 on windows. I am trying to configure my weblogic server for JDBC-Datasourse to connect to DB2 and get this error.
    cannot load driver COM.ibm.db2.jdbc.app.DB2Driver
    This is how my classpath and path looks
    classpath :.;C:\Program Files\JDEdwards\BPMBroker\JRE\1.3\lib\ext\QTJava.zip;C:\Program Files\Java\jdk1.6.0_20\lib\tools.jar;C:\Program Files\Java\jdk1.6.0_20\lib\dt.jar;C:\Program Files\Java\jre6\lib\rt.jar;C:\Sun\db2java.zip;C:\Sun\COM\ibm\db2\jdbc\app\DB2Driver.class;C:\Program Files\IBM\WebSphere\AppServer\derby\lib\deprecated\db2jcc.jar;C:\Program Files\IBM\WebSphere\AppServer\derby\lib\deprecated\db2jcc_license_cu.jar;
    path : C:\Program Files\Java\jdk1.6.0_20\bin;C:\Sun\db2java.zip;
    I don't know what to do and everytime i try to test my connection i get this error .
    Please help.
    Thank you

    I added Driver Classname =com.ibm.db2.jcc.DB2Driver
    and now it no longer gives me cannot load driver COM.ibm.db2.jdbc.app.DB2Driver.
    But now i am getting
    Execution failed due to a distribution protocol error that caused deallocation of the conversation. A DRDA Data Stream Syntax Error was detected. Reason: 0x1 DB2ConnectionCorrelator: null
    com.ibm.db2.jcc.b.cb.l(cb.java:1207)
    com.ibm.db2.jcc.b.cb.c(cb.java:357)
    com.ibm.db2.jcc.b.cb.v(cb.java:1440)
    com.ibm.db2.jcc.b.db.a(db.java:42)
    com.ibm.db2.jcc.b.b.e(b.java:1165)
    com.ibm.db2.jcc.b.b.b(b.java:1090)
    com.ibm.db2.jcc.b.b.q(b.java:925)
    com.ibm.db2.jcc.b.b.a(b.java:665)
    com.ibm.db2.jcc.b.b.a(b.java:654)
    com.ibm.db2.jcc.b.b.<init>(b.java:293)
    com.ibm.db2.jcc.DB2Driver.connect(DB2Driver.java:165)
    com.bea.console.utils.jdbc.JDBCUtils.testConnection(JDBCUtils.java:505)
    com.bea.console.actions.jdbc.datasources.createjdbcdatasource.CreateJDBCDataSource.testConnectionConfiguration(CreateJDBCDataSource.java:450)
    sun.reflect.GeneratedMethodAccessor196.invoke(Unknown Source)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:597)
    org.apache.beehive.netui.pageflow.FlowController.invokeActionMethod(FlowController.java:870)
    org.apache.beehive.netui.pageflow.FlowController.getActionMethodForward(FlowController.java:809)
    org.apache.beehive.netui.pageflow.FlowController.internalExecute(FlowController.java:478)
    org.apache.beehive.netui.pageflow.PageFlowController.internalExecute(PageFlowController.java:306)
    Please help.
    Thanks

  • I cannot load new apps on my iphone 5s

    I cannot load new apps on my iphone 5s

    Any restrictions set up in Settings/General/Restrictions? If yes, disable them and try again.
    Are you logged into the AppStore with the correct and same Apple ID that has been used to set up the phone? If yes, log out of the AppStore in Settings/iTunes & AppStore, reset the phone by holding the sleep and home button for about 10sec, until the Appel logo comes back again, then log into the AppStore.
    You will not lose data by resetting, but it can cure some glitches as well.

  • My iphone 5 and ipad 4th generation having the same problem of connecting to wifi, cannot load app store and cannot connect to itune store... help !!

    my iphone 5 and ipad 4th generation having the same problem of connecting to wifi, cannot load app store and cannot connect to itune store... help !!

    Try this:
    1. Close all apps in the Task Bar. Double-click the Home button and hold apps down for a second or two. Tap the minus sign to close app.
    2. Hold the Sleep and Home button down until you see the Apple Logo.

  • Cannot load the Scrabble app for Facebook on my Mac laptop; was always glitchy, but now cannot load at all. Works fine on my PC, however - any suggestions?

    Cannot load the Scrabble app for Facebook on my Mac; it starts, then I get this error message:
    "FACEBOOK IS NOT RESPONDING. Facebook is taking longer than usual to respond. If this problem persists, refresh your browser or try again later."
    I used this app for a few weeks on this machine, but now no amount of time and no number of refreshes will get the page to load. My ancient PC with Windows XP loads the app just fine, however - any ideas?
    Thanks!!

    Any error messages ?

  • Cannot load app store

    I cannot load the app store onto my laptop & it is not shown under the apple logo top left.

    Which Mac OS X do you have installed?
    The App Store requires Snow Leoaprd v10.6

  • Cannot load programs they either have error or you open the app and it returns to main menu

    Cannot load programs they either have error 606 or you open the app and it closes and goes to main screen

    Best to do a soft restart, <Hold down the "off" key on top and the "home" button at the bottom until it resets and you see the apple logo. It usually helps with those issues.

Maybe you are looking for

  • QT doesn't open all the way...can't see the video

    I get a the thing to open but not all the way as a video would with at least the opening frame. I get just a narrow box that look like an audio file.

  • Iphone charger/docking station overheat

    From: Katherine.Chan@s**ll.com [mailto:Katherine.Chan@s**ll.com] Sent: Thursday, February 02, 2012 3:56 PM To: gerald.liu@s**w.ca; bryan_liu@s**w.ca; specialkarii@g**il.com Subject: FW: SAFETY MOMENT (HSSE): iPhone Charger Left Plugged Into Vehicle O

  • Table control on Tabbed selection-screen

    Hi All, My Requirement is: I have a tabbed selection-screen with 3 tabs. On one of the tabs I have to include a Table control. Currently I'm displaying Table control as Pop-up . But I want that on the screen itself. Please suggest me how to do this.

  • Add new manager field in SAP Query

    Hi All, I need to find manager for the employee. Is RH_GET_LEADING_POSITION right function module? After finding the manager I need to add new field 'Manger' in the existing SAP Query. Please can anyone help me inserting additional code into the SAP

  • HELP Can't install windows 7, drive is not mbr

    Hi all! Here's the thing. I wanted to install windows 8 on my 27" iMac. I partitionned my drive with boot camp, installed windowsm everything went great. My partition is a 30gb partition. I then added a third partition (I'm used to do this, all my wo