sap

SAP UI5和angular里的常量定义

ぃ、小莉子 提交于 2020-03-03 19:35:02
SAP UI5 以我们以前负责的Opportunity为例,直接创建一个新的js文件,然后用所有字段为大写格式的JSON对象来模拟constant。UI5 framework也是用的这种方式。 Angular 用constant方法注入: app.constant('MONGOLAB_CONFIG', { baseUrl: '/databases/', dbName: 'ascrum' }); 在要使用这个常量的地方直接声明依赖,然后使用: Angular的常量注入有三种方式 // 在provider的构造器函数中直接声明常量依赖 module.provider('b', function BProvider(a) { this.$get = function() { return 'constant: ' + a; }; }); // 在service中声明常量依赖 module.service('aService', function(a) { // ...... }); // 定义在最后也没关系:常量注入任务会通过unshift操作放到任务队列的头部 module.constant('a', 'aConstant'); 要获取更多Jerry的原创文章,请关注公众号"汪子熙": 来源: https://www.cnblogs.com/sap-jerry/p/12403954

ABAP Netweaver, SAP Cloud Platform和Kubernetes的用户区分

我的未来我决定 提交于 2020-03-03 19:21:09
ABAP (1) Dialog: Individual, interactive system access. (2) System: Background processing and communication within a system (such as RFC users for ALE, Workflow, TMS, and CUA). (3) Communication:Dialog-free communication for external RFC calls. (4) Service: Dialog user available to a larger, anonymous group of users. (5) Reference: General, non-person related users that allows the assignment of additional identical authorizations, such as for Internet users created with transaction SU01. No logon is possible. SAP Cloud Platform Business user vs technical user: Kubernetes 也有User Account和Service

[systemcopy][TMS mgmt]SAP Transport Request Import Queue is Empty

a 夏天 提交于 2020-03-03 11:38:23
after system refresh ,i found the import queue is empty as i change the setting ctc from 0 to 1. i restore it as copy the old sid in /usr/sap/trans/buffer/<sid> lesson and learn backup the /usr/sap/trans/buffer directory before next fresh and if change the tms settings 来源: https://www.cnblogs.com/tingxin/p/12400926.html

2019年终总结-浅谈SAP S4 HANA CLOUD项目

a 夏天 提交于 2020-03-03 08:38:06
从2015年陆续发布,2018年落地中国,伴随着2019年第一个Cloud项目的成功上线,SAP首推的SaaS产品S/4 HANA Cloud(简称S4HC)正式进军中国云ERP市场。SAP将其目标市场定位于中小型企业,这对于金蝶、用友、智邦等国内本土ERP供应商来说形成巨大的挑战,当然目前国情如此,开放市场鼓励创新,就如特斯拉Model3上海量产,对于本土企业未尝不是颗活力丸。 扯远了,言归正传,本人有幸较早接触了S4HC这个产品,对于这款产品我就不做多余赘述了,网上有很多概念性介绍。正值春节,很多项目都已成功上线,值得庆幸的是我所在的项目也在其中。这篇文章旨在基于S4HC产品,结合2019年经历的几个Cloud项目,对整个项目实施过程包括客户沟通、实施方法、快速交付等做出探研和总结。以下一切意见纯属个人观点,仅供参考与交流。 一、 实施方法 既然S4HC定位中小型企业,那么单个项目的收入相对本地版SAP(On-premise,简称OP)必然缩减,所以若想获得较高毛利,S4HC项目必需具有短周期、流水化、人员精简化的特点(简而言之用最少的人最少的时间流水线一样的挨个完成多个项目),其项目周期官方推荐3+1。 S4HC实施路线共分为六大部分: Discover(发现)、Prepare(准备)、Explore(探索)、Realize(实现)、Deploy(部署)、Run(运行)

Does SAP PowerDesigner have an API?

倖福魔咒の 提交于 2020-03-03 03:05:31
问题 Does PowerDesigner have an Java/Python etc. API that can be called so that I can retrieve a physical table's columns and data types programmatically? Googling did not help me locate a documentation and possibly a tutorial. Any directions would me extremely helpful. Best regards. 回答1: The basic API for PowerDesigner uses OLE Automation. This API is readily accessible from VBScript, .NET languages, PowerShell... PowerDesigner comes with a helper jar named pdj2com*.jar. You should have a

PO配置调用SAP RFC

狂风中的少年 提交于 2020-03-01 19:55:30
直接调用SAP中的RFC 1、 导入RFC 2 在对应命名空间下面创建SI 选择出入站,同步或异步,并设置参数类型,选择对应的RFC. 3创建OM 选择两边的SI或者RFC,一定要点击保存(等待下面出现MT) 填写MM名称,选择命名空间,(同步有两个MM) 创建MM 配置MM字段对应 激活 SI OM MM 在对应的BC下面创建CC 选择通信类型 填写地址 激活CC 创建ID (选择系统,选择接口,选择命名空间) 选择入站CC 选择SAP 选择OM 选择出站 ERP CC 激活ID 总建立文件 来源: https://www.cnblogs.com/zengxh/p/12391169.html

SAP ABAP, Fiori, Android和Hybris里的异步操作

假如想象 提交于 2020-03-01 13:15:30
ABAP 其实ABAP的编程范式相对其他语言比较简单,没有太多异步操作。除了STARTING NEW TASK可以实现异步调用。 Use ABAP Multi-Thread programming to deal with a real performance issue: https://blogs.sap.com/2017/02/10/use-abap-multi-thread-programming-to-deal-with-a-real-performance-issue/ Fiori 我们做Fiori开发的时候,处理过performance的incident。一个simple operation的roundtrip number不能大于3。2个几乎同时发出的异步操作算1个roundtrip。Fiori的best practice也是尽量用异步操作。 Android 成都Android开发团队2011~2013参与了Customer Briefing app的开发。如果在UI线程里访问了web resource,容易遇到ANR Android Not response的exception。 我记得我当时编程时只要在UI线程做这些事情,API调用会立即报错。 Hybris 看Hybris log就知道了,Hybris服务end user请求通过一个线程池来完成

Java通过Axis2调用SAP的Webservice

你。 提交于 2020-02-29 15:38:19
1、设置环境变量 AXIS2_HOME = D:\JAVA\axis2\axis2-1.6.2 2、下载工具:(1.6.2生成的代理类存在BUG,建议用1.5.1版本) Eclipse: http://www.eclipse.org/downloads/ Tomcat: http://tomcat.apache.org/ Axis: http://axis.apache.org/axis2/java/core/download.cgi axis2-war: http://axis.apache.org/axis2/java/core/tools/index.html axis2-eclipse-codegen-plugin: http://axis.apache.org/axis2/java/core/tools/index.html axis2-eclipse-service-plugin: http://axis.apache.org/axis2/java/core/tools/index.html 安装JDK不用多说了吧。 3、安装Eclipse插件: axis2-eclipse-codegen-plugin和axis2-eclipse-service-plugin是Eclipse的插件,分别解压在Eclipse的根目录就可以了。 注意:Axis2 1.6.2有个BUG

RFC-enabled function module to update the table JEST

╄→尐↘猪︶ㄣ 提交于 2020-02-29 07:08:44
问题 I need to update some fields of Physical samples in SAP ERP: List of columns which are in the table QPRS : ABINF: Storage Information ABDAT: Storage Deadline ABORT: Storage Location List of fields which correspond to statuses (table JEST ): Sample Was Stored: status I0363 (short code in Status History: "STRD") Sample Consumed/Destroyed: status I0362 (short code in Status History: "USED") Is there a RFC-enabled function module to update these fields? Thanks. 来源: https://stackoverflow.com

Hybris service layer和SAP CRM WebClient UI架构的横向比较

扶醉桌前 提交于 2020-02-29 01:55:35
我把Hybris service layer理解成CRM WebUI的API layer. The Hybris ServiceLayer is an API for developing services for SAP Hybris Commerce. It provides a number of common services, while allowing you to extend these or develop your own. The main characteristics of the ServiceLayer are: - 我逐条和CRM WebUI框架比较 (1) It is based on a service-oriented architecture. Jerry: Hybris里的SOA架构和BYD不一样,后者支持不同的deployment unit部署在不同服务器上, cross unit的应用通过message通信。 Hybris是一个monolithic应用,所有的extension物理上都运行在一台server,一个session里(不考虑cluster mode) (2) It provides a clean separation of business logic and persistence logic. Jerry: CRM