Dead URL at sapui5 sdk

Hello friends!
A couple of days ago I was reading about MVC at the Developers guide. Now it seems that some links has stopped working, for example this one: https://sapui5.hana.ondemand.com/sdk/docs/guide/MVC.1.html
Does someone know what happened to this page? Is it moved? Where can I find the same information?
I'm aware of that there's some information here : SAPUI5 SDK - Demo Kit, but it's not at all as well documented as the first page i mentioned.

Hi Stefan,
Yes recently restructuring of documentation happened. refer OpenUI5 Blog - New OpenUI5 version 1.20 released!
you can find same information as of now at SAPUI5 SDK - Demo Kit
Regards,
Chandra

Similar Messages

  • Blog & Podcast pages link to dead URL Page

    I've published my new website to a folder, uploaded the data to a non .mac website. Everything works fine, except the blog and the podcast. The blog and podcast main page both appear, but when I click on a story or media selection, I get a URL not found. Checking my site with an FTP client, I can see all the files. However, no matter what I do, the links always go to a dead url page and states Not Found. I find it odd that the whole site works but the blog and podcast archive.
    Any work arounds or suggestions?
    G5   Mac OS X (10.4.4)   1.6 G5 2gig Ram

    Oooooh but URL length does make a difference. Thanks for your help.
    I did fix one podcast, but what an undertaking. See link:
    http://www.cops-clan.org/web/Podcast/D7CDDCDEAD27.html
    Now I must rant:
    Alpha-numerical URLs automatically generated by iweb for the blog & podcast archives are to long for some non .mac websites. This causes a Not Fond error message. Since I bought iweb for its simplicity, this software cannot fix the inherent problem either. What I have to do, is use Adobe GoLive 6 to shorten the automatically generated URL number strings of all my blog messages and podcasts. However, I'm still not done. I further more have to go into each blog & podacst HTML file and shorten all the links found there too. Quite an undertaking just to post a message. On my other website located on the same server, I run a Serendipity Blog which runs trouble free. Also, the Serendipity Blog is free and has more functionality.... Go figure. Since all I wanted was a simple cookie cutter website and a no fuss blog, the work around is not worth the effort. I think I will have to dump iweb... this is very disappointing.

  • Unclickable links / dead urls in Mail drafts

    Before a recent software update, all links in the preview window of my drafts were clickable. Now they are not. Once drafts are sent, the links become clickable in the sent folder, both in preview and the actual message window. Also, links seem clickable in all other folders.

    You should be able to add interaction on data list just from FC, you require no other software. Just come into the normal state of the application, select the list item, choose "Add Interaction" in Interactions panel. Here you may choose any action like "Play Actions sequence/Play transition to state/Go to URL/etc". Make sure that you choose this interaction only when specific item of the list is selected like item 0/1/2/... .
    Hope it helps.

  • 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.

  • SAPUI5 XML views

    Hi Experts,
    In SAPUI5 SDK demo kit, the same codes are in XML view. I tried to search the API or library for XML view i could not find. The data binding in XML views are not clear.
    e.g. Table.view.xml
    <mvc:View
      controllerName="sap.m.sample.Table.Table"
      xmlns:l="sap.ui.layout"
      xmlns:mvc="sap.ui.core.mvc"
      xmlns="sap.m">
      <Table id="idProductsTable"
      inset="false"
      items="{
      path: '/ProductCollection',
      sorter: {
      path: 'Name'
      }">
      <headerToolbar>
      <Toolbar>
      <Label text="Products"></Label>
      </Toolbar>
      </headerToolbar>
      <columns>
      <Column
      width="12em">
      <Text text="Product" />
      </Column>
      <Column
      minScreenWidth="Tablet"
      demandPopin="true">
      <Text text="Supplier" />
      </Column>
      <Column
      minScreenWidth="Tablet"
      demandPopin="true"
      hAlign="Right">
      <Text text="Dimensions" />
      </Column>
      <Column
      minScreenWidth="Tablet"
      demandPopin="true"
      hAlign="Center">
      <Text text="Weight" />
      </Column>
      <Column
      hAlign="Right">
      <Text text="Price" />
      </Column>
      </columns>
      <items>
      <ColumnListItem>
      <cells>
      <ObjectIdentifier
      title="{Name}"
      text="{ProductId}"
      class="sapMTableContentMargin" />
      <Text
      text="{SupplierName}" />
      <Text
      text="{Width} x {Depth} x {Height} {DimUnit}" />
      <ObjectNumber
      number="{WeightMeasure}"
      unit="{WeightUnit}"
      state="{
      path: 'WeightMeasure',
      formatter: 'sap.m.sample.Table.Formatter.weightState'
      }" />
      <ObjectNumber
      number="{Price}"
      unit="{CurrencyCode}" />
      </cells>
      </ColumnListItem>
      </items>
      </Table>
    </mvc:View>
    jQuery.sap.require("sap.m.sample.Table.Formatter");
    sap.ui.controller("sap.m.sample.Table.Table", {
      onInit: function () {
      // set explored app's demo model on this sample
      var oModel = new sap.ui.model.json.JSONModel("test-resources/sap/ui/demokit/explored/products.json");
      this.getView().setModel(oModel);
    How can we bind multiple data sources in xml
    SAPUI5 Explored
    Thank You
    Regards
    Senthil Bala

    Hi Sethil,
    Have you tried loading a second model (datasource) and set to the view. Something like this:
    var oModel = new sap.ui.model.json.JSONModel("test-resources/sap/ui/demokit/explored/products.json");
    this.getView().setModel(oModel,"firstmodel");
    var oModel2 = new sap.ui.model.json.JSONModel("whatever url to your second data");
    this.getView().setModel(oModel2,"secondmodel");
    And then have your controls binding to the source of your choice like this:
    text="{firstmodel>/ProductId}"
    regards
    Sven

  • Nighlty Build 4.0.0.10193 link is dead

    Hi,
    the link for the download of the Build 4.0.0.10193 is dead:
    Not Found
    The requested URL /pub/flex/sdk/builds/flex4/flex_sdk_4.0.0.10193_add-on.zip was not found on this server.
    Martin Zach

    Its fixed,
    Thank you!
    Martin
    Zitat von "Peter deHaan (Adobe)" <[email protected]>:
    Thanks Martin,
    I believe this has been fixed this morning. But if you see any other 
    issues with the build downloads, please let us know.
    Peter
    >

  • 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

  • SAPUI5 XML vs JS example gist

    Hello,
    I created a gist where you can see a simple app-page example created with JavaScript and at the bottom the corresponding XML if it would be a view (without controller.
    Maybe this helps how to understand and "switch" mentally between the JavaScript syntax examples (for example here for a button SAPUI5 SDK - Demo Kit) and the now preferred XML notation of the views (SAPUI5 Explored).
    Here is the gist:
    https://gist.github.com/denisenepraunig/5a2049f13f8342f5608f
    The example on jsbin is here:
    JS Bin - Collaborative JavaScript Debugging
    How do I get from JavaScript code...
    var oSimpleForm = new sap.ui.layout.form.SimpleForm({ ...
    to a XML view notation:
    <mvc:View xmlns:f="sap.ui.layout.form" ...
    <f:SimpleForm ...
    or vice versa.
    Hope this helps someone, at the beginning it was a mind-challenging exercise to switch between those two notations.
    BR, Denise

    exactly what I searched for
    Working with XML views is simpler when you are not a native javascript developer !
    <mvc:View xmlns:f="sap.ui.layout.form"
    was my missing link - for defining all f: as linked to library sap.ui.layout.form
    Thanks for sharing

  • Flex SDK Download server is down.

    Incase no one at Adobe is aware, none of the downloads work for any of the files found at:
    http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4
    Select an item to download, click the checkbox and once you click on the "Download Zip" link you get an error everytime, regardless of which file you are trying to download.  I've tried off and on all morning and have had the same result each time.
    Here is the error message for the latest full nightly build:
    The requested URL /pub/flex/sdk/builds/Flex4/4.0.0.7573/flex_sdk_4.0.0.7573.zip was not found on this server.
    Apache/2.0.52 (Unix) Server at download.macromedia.com Port 8000

    Thanks!   I noticed the whole site was down for a bit and is now back up.    Just wanted to be clear that this was not my initial problem - it was just the flex sdk 3.1  - which is still not available, at least for me.

  • Facing dead links in Webclipping and Omniportlet (wwwc - 44234)

    Hi all,
    I�am deploying webclipping and omniportlet. It is nice stuff and works very well (sometimes performance is bad).
    But, when a clipped Webpage is deleted, then in my nice webclipping-portlet an error occurs:
    Error: Page not found (wwwc - 44234).
    This looks somehow ugly. So, is there a way of detecting dead links and offer an alternativ content in the webclipping-content? Or, is there a way of getting notified, when portal detected a dead link / displayed the (wwwc - 44234) - Error?
    Many thanks,
    Michael

    Hello Tugdual Grall,
    thanks for inviting me, to contribute my experience and wishes with webclipping and omniportlet.
    Here is, what I would like to see:
    A Edit Default Section
    =======================
    1. Field: notify eMail:
    eMail to post dead-link occurrence to (including: dead url, time, date, name of the portlet, page-path, owner etc.):
    2. Field: Alternative content (when error occurs):
    "The content does not show up in the moment, please click [[email protected]] and visit us again later. Apology for the inconvienience."
    3. Fiel: Alternative link (if an error occurs):
    error-in-webclipping-page-on-myportal.html
    --> it would be groovie, if this alternative link could also be clipped!
    4. Field: Message for Time Out:
    "Please press the refresh button on your browser - thanks!"
    5. The error-detector should work, when a timeout occured, a dead link (wwwc - 44234) or some other error occured.
    B New Administering Portlet for the Portlet Provider of Webclipping / Omniportlet:
    ==================================================
    Similar to the Notification Portlet, there could be a portlet, which shows all the dead links / errors in omniportlet and webclipping portlets on one sight. Therfore the error-detector should be adding the dead link and connected information (including: dead url, time, date, name of the portlet, page-path etc.) into a table, which can be deployed by an omniportlet/webclipping-dead-link portlet for administering:
    date | dead url | page-path | portlet-name | owner | etc
    ===============================================================================================
    24.11.03 | www.yahoo.com | /pagegroup1/clippings/myYahooClipp | Yahoo_2 | Michael |
    The Page-Administrator can therefore easyly view errors and manage them.
    Thanks for asking me.
    With regards,
    Michael

  • SPLIT APP in SAPUI5 MOBILE View have some problem

    Hi All,
    We are facing problem in Split App ( sap.m.splitapp) in mobile view.
    In Desktop and Tablets we can able to see master page view. But in mobile,we are not able to see master page.
    In Desktop and Tablets :
                                                  fig 1:                                                                                                                     fig2
    fig1 : On click of that icon we can able to see our master page( fig2). This is possible only in Desktop and Tablets.
    When I run this same app in mobile, I am not able to see master page. I want same output in mobile. If you have any idea please share with us.
    Thanks,
    Karthik A

    I guess you have mis understood Master view to Detail view and vice versa. Please look at the design patterns in this link
    SAPUI5 SDK - Demo Kit
    UI5 is responsive in nature and changes accordingly with screen resolution.
    and split control is of a similar nature.
    Try and play with a split control application from
    'sap.m.SplitApp' Demo Application
    If you wanna see how it looks in mobile , change the resolution of the browser or use the emulation option in Google Chrome.
    Mobile emulation - Google Chrome

  • Artifact not found while installing SAPUI5 evaluation edition

    Hello Experts
    We downloaded the SAPUI5 SDK 1.16 from UI Development Toolkit for HTML5 Developer Center and tried to install it from the local hard disc and received  the following errors
    The same occurrs in hana studio 1.00.68 and 1.00.70.
    However the manual update from the disc works for SAPUI5 sdk 1.12. As the project requires the SAPUI5 ABAP repository which comes with 1.16. We need to update to the SAPUI5 1.16.
    Would you know how to come around this issue?
    SAP Development Tools for Eclipse - Juno Software Repository is not accessible within our network to install the SAPUI5 from there.
    Any help would be greatly appreciated
    Regards
    Casper

    Hi,
    I am installating Mobile Repository server 2007. All the requirments mentioned in Inst_guide are completed. .net frame work 2.0, Java j2sdk 1.4.2_09, cheked on CMD, SQL 2005 sp2 installed as per Inst-Guide latin1.
    Working on Windows 2003 64bit
    Now when I start installation pop up error window come
    Error:
    at InstAssist.InstAssistMain.startProcessing (String[]args)
    at InstAssist.InstAssistMain.mai.(String[]args)
    & installation couldnot move.
    Thanks & Regards,
    Darshan..

  • Websites developed in sapui5¿?¿?¿?

    Hi, I'm developing in sapui5 and I would like to see final websites developed in sapui5.
    Anyone know websites developed in sapui5?
    Thanks,

    Hi Jose,
    I have developed some applications but I am not supposed to share any client's site.
    The site below has been developed in SAP UI5.
    SAPUI5 SDK - Demo Kit
    You will have all the options that can be implemented for SAP UI5.
    Regards,
    Ashvin

  • Fragments in sapui5

    Hi ,
    I have multiple sap.m Bars in my Page,  i want to use one fragment to reuse the bar instead of having multiple bars.
    Please help me on this.
    Thanks & Regards,
    Jayasree.

    Helpful links.
    SAPUI5 SDK - Demo Kit
    https://sapui5.hana.ondemand.com/sdk/docs/guide/454b208d49cb4f169d483e4223674cfd.html
    Regards,
    kk

  • 7911 - Idle URL file format

    Hello,
    I've been able insert custom background for the user to choose, in 7911 (Cisco Call Manager 5.1.2).
    I would like too to use Idle URL Option, but i dont know how to do it (ive been able to put idle url background with sdk in 7940-60-70 series, but it is not working with 7911, giving me always XML Error(5)).
    Can you help me please?

    Hi Met,
    Here is the format for the 7911;
    List.xml Example
    FTP:Desktops/95x34x1/TN-Mountain.png"
    URL="TFTP:Desktops/95x34x1/Mountain.png" />
    FTP:Desktops/95x34x1/TN-Ocean.png"
    URL="TFTP:Desktops/95x34x1/Ocean.png" />
    The PNG files for background images must meet the following requirements for proper display on the Cisco Unified IP Phone:
    Full size image-95 pixels (width) X 34 pixels (height).
    Thumbnail image-23 pixels (width) X 8 pixels (height).
    Color palette-For best results, set to monochrome (1-bit) when you create a PNG file.
    (Cisco Unified IP Phone 7906G and 7911G)
    Customizing the Cisco Unified IP Phone
    http://www.cisco.com/en/US/docs/voice_ip_comm/cuipph/7906g_7911g/4_2/english/administration/guide/11cust_ps379_TSD_Products_Administration_Guide_Chapter.html#wp1088046
    Hope this is what you were looking for,
    Rob

Maybe you are looking for

  • Maxl : ASO Filters and users

    Hi, I will like to create a MaxL script that will list all the users/groups and the filters assigned to each of them. I'm planning to use the following commands, but I can't find the command that will help me link the user (or group) to his assigned

  • Loading XSD Schemas as External Definition

    Hi all, I am trying to load an XSD Schema into XI. As part of this schema is another external reference. I have also loaded this into XI. Looking at the 'External References' tab of the first message, I can see the reference to the second message. Th

  • HOW DEFINE INNER JIONS FOR MULTIPLE TABLE-FIELDS

    HI I  HAVE THE IMMEDIATE ISSUE TO RESOLVE... data: begin of it_jtab occurs 0, gsber like tgsb-gsber, gjahr like coss-gjahr, kostl like csks-kostl, posid like prps-posid, plfaz like proj-plfaz, plsez like proj-plsez, estat like tj30t-estat, perbl like

  • Cin configuration is not possible at 000 client of sap4.7

    how i can configure cin at 000 client of sap4.7 as i could not create my own enterprise structure with reference to 0001 or 1000 co.code. kindly help me with sugession. kaushik

  • LMS Prime 4.2 instalation fail

    Hi, I have problem with Cisco LMS 4.2 Prime installation. My system specification: Freash instalation of Windows Server 2008 R2 Enterprise Edition 64Bit on VMware vSphere Hypervisor 4.1 (ESXi server 4.1). Hardware: 16GB RAM, 256 GB HDD, CPU E5420. Wh