sap

【ABAP系列】SAP ABAP系统变量及注释

烂漫一生 提交于 2020-03-09 04:29:44
公众号: SAP Technical 本文作者: matinal 原文出处: http://www.cnblogs.com/SAPmatinal/ 原文链接: 【ABAP系列】SAP ABAP系统变量及注释 前言部分 大家可以关注我的公众号,公众号里的排版更好,阅读更舒适。 正文部分 常用的系统变量如下: 来源: https://www.cnblogs.com/SAPmatinal/p/11176407.html

【ABAP系列】SAP ABAP WRITE字段隐藏的方法

巧了我就是萌 提交于 2020-03-09 04:28:20
公众号: SAP Technical 本文作者: matinal 原文出处: http://www.cnblogs.com/SAPmatinal/ 原文链接: 【ABAP系列】SAP ABAP 字段隐藏的方法 前言部分 大家可以关注我的公众号,公众号里的排版更好,阅读更舒适。 正文部分 ​ *数据库表spfli相关 TABLES: spfli, sflight. START-OF-SELECTION. SKIP. *输出 ULINE AT /(91). WRITE: / sy-vline,(15) '航线承运人', sy-vline , (15) '航班连接', sy-vline, (15) '国家代码', sy-vline,(15) '起飞城市', sy-vline, (15) '起飞机场',sy-vline. ULINE AT /(91). *输出 SELECT * FROM spfli. WRITE: / sy-vline,(15) spfli-carrid,sy-vline, (15) spfli-connid,sy-vline, (15) spfli-countryto,sy-vline, (15) spfli-cityfrom,sy-vline, (15) spfli-airpfrom, sy-vline. * 隐藏关键字 HIDE: spfli-carrid

【ABAP系列】SAP ABAP获取域(domain)值的方法

有些话、适合烂在心里 提交于 2020-03-09 04:27:01
公众号: SAP Technical 本文作者: matinal 原文出处: http://www.cnblogs.com/SAPmatinal/ 原文链接: 【ABAP系列】SAP ABAP获取域(domain)值的方法 前言部分 大家可以关注我的公众号,公众号里的排版更好,阅读更舒适。 正文部分 1、可以通过表DD07L获取 2、通过函数获取 ​ DATA: fs_taba TYPE dd07v. DATA: it_taba TYPE STANDARD TABLE OF dd07v, it_tabb TYPE STANDARD TABLE OF dd07v. CALL FUNCTION 'DD_DOMA_GET' EXPORTING domain_name = 'XFELD' langu = sy-langu withtext = 'X' TABLES dd07v_tab_a = it_taba dd07v_tab_n = it_tabb EXCEPTIONS illegal_value = 1 op_failure = 2 OTHERS = 3. IF sy-subrc <> 0. MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. ENDIF.

FAR-SAP Fiori App Recommandation Report

半腔热情 提交于 2020-03-08 14:34:21
FAR(SAP Fiori App Recommandation Report) 首先,它是报告,一个免费的可交互报告(当然前提你要是SAP的有效客户),一个为客户现有的系统量身定制的专注于业务线的报告;是一个工具,是一个帮助客户识别对客户的企业最有价值的Fiori应用程序的一个工具。 SAP用户提交最新的ERP或SAP S/4HANA系统数据和每月的事务工作量(TCODE: ST03N),上传后5个工作日内收到SAP回复FAR报告。 取决于用户当前使用的系统,是SAP ERP还是SAP S/4 HANA,这个报告有三种版本形式: 适用于ERP系统 适用于ERP向S/4 HANA转换 租用于S/4 HANA系统 步骤: 生产系统中(SAP ERP或S/4 HANA),执行TCODE: STC03N,下载负载文件 SAP官网注册 注册地址:www.sap.com/FAR Sample pdf 来源: CSDN 作者: xiayutian_c 链接: https://blog.csdn.net/xiayutian_c/article/details/104720584

一步步学习如何安装并使用SAP HANA Express Edition

北城余情 提交于 2020-03-08 10:06:36
使用Jerry这篇文章 在Google Cloud platform上的Kubernetes集群部署HANA Express 里介绍的方法在Google Cloud Platform的Kubernetes cluster上安装SAP HANA Express. 文中介绍了一个yaml文件,里面声明了容器镜像文件store/saplabs/hanaexpress:2.00.033.00.20180925.2. 安装完成后,在启动的pod里有两个容器,分别运行着SQLPad和HANA Express. SQLPad是一个基于Nodejs开发的直接在浏览器运行SQL查询并对结果进行可视化展示工具。SQLPad支持的数据库非常多,比如:MySQL, Postgres, SQL Server, Vertica, Crate, Presto等。 使用kubectl get services拿到sqlpad的external IP: 在浏览器里输入刚才获得的IP地址,后面加上默认的3000端口,打开sqlpad的web控制台: 注册一个帐户并登录: 选择admin-Connections: 新建一个数据库连接: database driver从下拉菜单里选择SAP HANA: 回到Google Cloud Platform的cloud shell,使用kubectl get

Pricing in SAP CRM and Cloud for Customer

独自空忆成欢 提交于 2020-03-08 02:38:12
CRM的price determination C4C C4C的price分Internal Pricing和External Pricing两种。 Internal Pricing涉及到的工作中心:主要有下图中蓝色高亮的Price Lists和Discount Lists两个。 C4C计算一个Sales Order / Sales Quote价格时,依次采用下列的优先级进行计算: (1) 首先检查是否维护了客户专属的价格列表(customer specific price list ) (2) 如果没有,再检测是否存在客户组专属价格列表(customer group specific price list) (3) 检查是否存在基于特定的销售组织和分销渠道的价格列表(distribution chain specific price list) (4) 如果上述检测都检查不到对应的记录,最后使用Product工作中心中维护的基本价格列表(base price list)。 新建一个Document Type(也就是CRM的transaction type) Maintenance Mode为Internal,意思是只使用Internal Pricing. 维护price list: 最后,新建Sales Order时使用document type ZTA, 我添加了2个行项目

ASSIGN fails with variable from debugger path

夙愿已清 提交于 2020-03-04 15:35:35
问题 I am trying to assign the value of this stucture path to a fieldsymbol, but this path does not work because it has a table in it's path. But with in the debugger this value of this path is shown correctly. Is there a way to dynamically assign a component of a table line to a fieldsymbol, by passing one path? If not then I will just read the table line and then use the path to get the wanted value. ls_struct (Struct) - SUPPLYCHAINTRADETRANSACTION (Struct) - INCL_SUPP_CHAIN_ITEM (Table) -

ASSIGN fails with variable from debugger path

主宰稳场 提交于 2020-03-04 15:35:12
问题 I am trying to assign the value of this stucture path to a fieldsymbol, but this path does not work because it has a table in it's path. But with in the debugger this value of this path is shown correctly. Is there a way to dynamically assign a component of a table line to a fieldsymbol, by passing one path? If not then I will just read the table line and then use the path to get the wanted value. ls_struct (Struct) - SUPPLYCHAINTRADETRANSACTION (Struct) - INCL_SUPP_CHAIN_ITEM (Table) -

最大流(模板EK,dinic,sap,未优化)

假装没事ソ 提交于 2020-03-04 05:30:16
模板题 这三种算法基于寻找增广路径来求解最大流,当一个网络图中不存在增广路径时我们就得到了最大流; 1.EK: //直接使用bfs找最近的增广路径,每找到一条就更新残余网络,然后继续找,直到不存在为止,这个真好懂^ V ^ # include <bits/stdc++.h> # include <iostream> # include <algorithm> # include <cstdio> # include <map> # include <cstring> # include <queue> const int maxn = 10000 + 10 ; const int maxm = 100000 + 10 ; const int inf_max = 0x3f3f3f3f ; using namespace std ; typedef long long ll ; int n , m , head [ maxn ] , cnt , flow [ maxn ] ; struct EDG { int w , v , nxt , id ; EDG ( ) { } EDG ( int tv , int tw , int tn ) { w = tw , v = tv , nxt = tn ; } } edge [ maxm << 1 ] , pre [ maxn ] ; void