分类目录归档:SAPUI5

SAPUI5,OPENUI5

  • 创建银行账号

    创建银行账号

    银行账号就是我们用来收款,付款时的银行账号了,比如我的银行卡号就是一个银行账号。此功能对应的SAP标准功能是FI12,在ECC版本直接可以在FI12上创建银行账号,但HANA S4时默认时FI12是不可创建的,需要修改配置(网络上可找到),S4推荐的维护银行账号的方法是使用FIORI,在项目中也使用了WEBDypro做了一个更复杂的功能来实现,但我觉得一般需求来说,使用FIORI应该是最好的选择, …
  • 调用工商银行API接口

    调用工商银行API接口

    在新的工商银行接口中时使用HTTPS的API,直接连接工商银行接口,可以不使用前置机,但增加RAS非对称加密,遇到了一些新问题,在这里记录下。 继续阅读 →
2019
08-27

Table sap.m.Table in SAPUI5 HOT

Table sap.m.Table in SAPUI5 Hello everyone, in this tutorial we will learn how to use tables in SAPUI5 applications or SAP Fiori Apps.In SAPUI5 UI elements library table can be found in two libraries one sap.m.Table and other sap.ui.table.Table. Both UI controls are used fo....Read More >
2019
08-27

Fragments in SAP Fiori Application HOT

Fragments in SAP Fiori Application In this tutorial, we will learn what are fragments and how they are defined, used in the Fiori app development. What are Fragments ? Fragments are reusable UI parts like views and can be used in any other app if they fits in.Fragments should only ....Read More >
2019
08-27

Create Local Class in OO ABAP HOT

In this tutorial, we will learn how to create a Local class in OO ABAP. In core ABAP, we modularize the ABAP code using function modules and subroutines. We can also modularize the same code in object oriented approach by creating local classes in the program. There are two parts involved while ....Read More >