zoukankan      html  css  js  c++  java
  • 在SAP WebIDE里使用Fiori Elements快速开发SAP UI5应用

    (1) Create CDS view based on sample database table spfli and scarr

    Create two CDS views in ABAP development studio. The source code for both are listed below. You just need to copy them into studio and click activate button.

    @AbapCatalog.sqlViewName: 'zjerrySQL0309'
    @AbapCatalog.compiler.compareFilter: true
    @AccessControl.authorizationCheck: #CHECK
    @EndUserText.label: 'test 20160309'
    @ObjectModel: {
       createEnabled,
       deleteEnabled,
       updateEnabled
    }
    define view Zjerrytest20160309
    as select from spfli association [0..1] to scarr as _scarr
    on _scarr.carrid = spfli.carrid {
           key spfli.carrid,
           key _scarr.carrname,
           key spfli.connid,
           spfli.cityfrom,
           spfli.cityto
    }
    @AbapCatalog.sqlViewName: 'z20160316'
    @AbapCatalog.compiler.compareFilter: true
    @AccessControl.authorizationCheck: #CHECK
    @EndUserText.label: 'test odata publish '
    @OData.publish: true
    @ObjectModel: {
       type: #CONSUMPTION,
       compositionRoot,
       semanticKey: ['Actor'],
       createEnabled,
       deleteEnabled,
       updateEnabled
    }
    define view Zjerrytest20160316 as select from Zjerrytest20160309 {
        @UI.lineItem : [{position:10}]
        key Zjerrytest20160309.carrid as Jerryid,
        @UI.lineItem : [{position:20}]
        key Zjerrytest20160309.carrname as name,
        @UI.lineItem : [{position:30}]
        key Zjerrytest20160309.cityfrom as startLocation,
        @UI.lineItem : [{position:40}]
        key Zjerrytest20160309.cityto as target,
        @UI.lineItem : [{position:50}]
        key Zjerrytest20160309.connid
    }
    

    Once activated, there is a hint in studio to tell you the automatically published OData service name, and then tcode for service registration.

    (2) Use tcode /IWFND/MAINT_SERVICE to finish OData service registration

    Specify System Alias = LOCAL and search using the CDS name you get from step1, select the search result and click “Add Selected Services”:

    Once added, click “SAP Gateway Client” to test whether the OData service works:

    Make sure the metadata request returns 200 success code.

    (3) Create UI5 application using Wizard in WebIDE

    Open WebIDE, File->New->Project from Template, choose Smart Template Application and next:


    Select the destination for your backend where CDS view is created, and locate your OData service created just now:

    The annotation file is automatically identified, just click Next button:

    Choose OData Collection from drop down list and click Finish button:

    Once created, the project looks like below. Choose Component.js and click Run button in WebIDE Toolbar:

    From rendered application you could see the table is now filled with data fetched from CDS view:

    Build a Productive Fiori application in CRM Service area

    Would you like to use the introduced technology to build a more complicated and productive Fiori application in CRM Service area? Then follow the steps in this blog Create a CRM Service Order Fiori application within a couple of minutes.

    要获取更多Jerry的原创文章,请关注公众号"汪子熙":

  • 相关阅读:
    HTML CSS3 手风琴菜单
    python代码- post请求图片上传
    python 一行代码生成 二维码
    Jenkins 中定时任务构建
    Jenkins 常用插件
    window系统,GitLab 远程与本地 SSH 认证连接
    Jmeter+Maven+Jenkins+Git接口自动化流程
    jmeter 响应中有中文乱码问题,解决
    Excel文件导入功能 用例设计思路
    Jmeter01 -mac下的安装
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/13607763.html
Copyright © 2011-2022 走看看