SAP CRM页面assignment block动态显示与否的控制逻辑

2020-02-02
阅读 1 分钟
1.2k
我们在product overview page里能看到很多的assignment block。但是runtime的时候真正显示出来的内容只是configuration里面看到内容的一个子集。

数据库表CRMD_ORDERADM_I里字段OBJECT_TYPE的计算逻辑

2020-02-02
阅读 2 分钟
834
In order to resolve one issue I need to figure out the logic how field OBJECT_TYPE is populated in table CRMD_ORDERADM_I.For example, I have the following opportunity line item:

SAP settype COMM_PR_BATCH的下载方式

2020-02-02
阅读 2 分钟
800
Prerequisite: for the highlighted three objects below, the initial download for them must be done successfully. This could be checked in tcode R3AM1.

如何把SAP CRM产品主数据隐藏的batch ID字段显示出来

2020-02-02
阅读 1 分钟
852
According to SAP help, it is by default hidden: We have to manually set it as visible in WebUI component workbench: It looks like below: 要获取更多Jerry的原创文章,请关注公众号"汪子熙":

Data exchange of settype COMM_PRFREEATTR

2020-02-02
阅读 4 分钟
1.1k
(1) in ERP, use tcode SM30, view name: MATERIALID, configure an external long material number for material created in MM01:in my example, it is AAAAA

How to download material division to CRM

2020-02-02
阅读 1 分钟
942
In ERP, I have created one material with division = 01: In CRM, activate division handling in this customizing: And also create one customizing entry for Division 01 in CRM: Now download material into CRM, you could observe the division 01 is downloaded and stored in CRM table: Keyword division, ...

SAP CRM One Order的事件注册机制

2020-02-02
阅读 1 分钟
974
There are huge number of function modules which are called in one order runtime as event callback.If you want to research by yourself, set a breakpoint on the function module below, which is a central entry point to call event handler function module:

SAP CRM 事务码CRMV_EVENT的用法

2020-02-02
阅读 2 分钟
1.1k
how can I know the business scenario about CRM_PRODUCT_I_A_CHANGE_ORGM_EC an

如何用ABAP读取CDS view association的数据

2020-02-02
阅读 2 分钟
1.6k
AG3, view name Zorder_Sys_Status.This view has an association named _statushelp:

如何隐藏SAP CRM搜索页面的某些搜索条件

2020-02-02
阅读 2 分钟
1.1k
And we can see the entries in search attribute drop down list is rendered via this method in controller:

Product advanced search implemented in Industry solution

2020-02-02
阅读 2 分钟
1k
For example, I would like to check whether my user has enough authorization defined by authorization object s_carrid with value actvt = 03.

如何检查某用户是否分配了某ABAP权限对象

2020-02-02
阅读 2 分钟
1.4k
For example, I would like to check whether my user has enough authorization defined by authorization object s_carrid with value actvt = 03.

错误消息Parent objects have not been downloaded

2020-02-02
阅读 2 分钟
922
ERP, BOM, BOMHED, BOMITM, SMOF0_READ_SMOFSUBINT, CRM_BOM_ERP_CHECK_FOR_FATAL

如何把SAP CRM WebClient UI上某个字段高亮加粗显示

2020-02-02
阅读 1 分钟
906
如果你仅仅想把UI上某一个field的字体增大,可以做,但是从UI guideline为了保持CRM application 统一的look and feel来说不推荐这样做:

How to download BOM from ERP to CRM

2020-02-02
阅读 2 分钟
1k
(1) In ERP, create one material 1468 "JVM": And another material 1469 "JDK 1.8": (2) Create BOM via tcode CS01 based on material 1468 with the following settings: Add 1469 as line item: Once saved, there is one entry generated in table MAST: (3) Create one download request in CRM via tcode R3AR2:...

SAP CRM get_children 方法里面参数 iv_as_copy 有什么用?

2020-02-02
阅读 2 分钟
728
lv_children = iv_account->get_children( iv_as_copy = abap_true ). 的参数啥意思 lo_children = iv_account->get_relation( iv_relation_name = <rel>

How R3 Sales Organization is mapped to CRM

2020-02-02
阅读 1 分钟
884
In this customizing below, you can define the mapping relationship between ERP sales organization and CRM org:

错误消息sales area is not assigned for the header product

2020-02-02
阅读 2 分钟
1.3k
When I try to download customer material info record from ERP, I meet with this error message in tcode SMW01:

SAP CRM customer material info record

2020-02-02
阅读 2 分钟
1.4k
Part1 and Part2 actually share the same assignment block COMM_PR_SHTEXT.That means if you change text in Part1 ( part2 ), the change will automatically be displayed in part2 ( part1 ). The only difference is in part2, you can maintain text with different language but in part1 you can only maintai...

SAP CRM里产品主数据的文本模型设计

2020-02-02
阅读 2 分钟
915
Part1 and Part2 actually share the same assignment block COMM_PR_SHTEXT.That means if you change text in Part1 ( part2 ), the change will automatically be displayed in part2 ( part1 ). The only difference is in part2, you can maintain text with different language but in part1 you can only maintai...

SAP Fiori里的Adapt UI按钮,神出鬼没的奥秘

2020-02-02
阅读 1 分钟
1.1k
Python 中的 class 体内定义方法时,如果没有显式地包含 self 参数,有时候依然可以被调用。这是一个非常有趣的话题,因为它涉及到对 Python 中类与对象之间关系的更深理解。要理解为什么这种情况下方法依然能够被调用,我们需要逐步拆解 Python 类的构造方式以及方法绑定的原理。

一步步把SAP GUI的事务码配置到SAP Fiori Launchpad里

2020-02-02
阅读 1 分钟
1.8k
Python 中的 class 体内定义方法时,如果没有显式地包含 self 参数,有时候依然可以被调用。这是一个非常有趣的话题,因为它涉及到对 Python 中类与对象之间关系的更深理解。要理解为什么这种情况下方法依然能够被调用,我们需要逐步拆解 Python 类的构造方式以及方法绑定的原理。

揭开SAP Fiori编程模型规范里注解的神秘面纱 - @OData.publish工作原理解析

2020-02-02
阅读 1 分钟
1k
Python 中的 class 体内定义方法时,如果没有显式地包含 self 参数,有时候依然可以被调用。这是一个非常有趣的话题,因为它涉及到对 Python 中类与对象之间关系的更深理解。要理解为什么这种情况下方法依然能够被调用,我们需要逐步拆解 Python 类的构造方式以及方法绑定的原理。

Error message Object BOM does not allow filter on MAST.STLNR

2020-01-30
阅读 1 分钟
890
When you try to define filter as below in request download to download the very BOM from ERP:

How to download sales BOM from ERP to CRM

2020-01-30
阅读 2 分钟
1.1k
In ERP, create a sales BOM via tcode CS01, BOM type choose 5 - Sales BOM

CRM中间件里parent not ok的错误消息如何处理

2020-01-30
阅读 2 分钟
868
You would like to download customer material info record via initial download ( R3AS ). You always see error message "Parent not O.K.: BUPA_MAIN".You can guarantee that the dependent business partner as parent has already been downloaded to CRM correctly.Why still see this error message?

SAP CRM settype的重要性

2020-01-30
阅读 4 分钟
982
Product settype acts as a very important role in CRM WebClient UI architecture.

为什么SAP GUI里的传统事务码能通过Fiori Launchpad启动

2020-01-30
阅读 1 分钟
1.1k
Python 中的 class 体内定义方法时,如果没有显式地包含 self 参数,有时候依然可以被调用。这是一个非常有趣的话题,因为它涉及到对 Python 中类与对象之间关系的更深理解。要理解为什么这种情况下方法依然能够被调用,我们需要逐步拆解 Python 类的构造方式以及方法绑定的原理。

SAP ERP的material type和group如何通过中间件下载

2020-01-30
阅读 2 分钟
1.3k
This material has 001 assigned as Material group, 001000010500000110 as product hierarchy.Type: HAWA

揭开SAP Fiori编程模型规范里注解的神秘面纱 - @ObjectModel

2020-01-30
阅读 1 分钟
1.2k
在 SAP 项目实施中,Brownfield 场景是一种迁移策略,尤其用于从 SAP ERP 系统升级到 SAP S/4HANA 的过程中。Brownfield 方法可以理解为“系统转换”模式,它是指在现有系统基础上进行优化和转换,而不是从头开始构建一个全新系统。这种策略可以让企业保留现有的业务流程和系统配置,最大程度地降低业务中断风险,同时利用...

使用SAT跟踪监控从浏览器打开的SAP应用的性能和调用栈

2020-01-30
阅读 5 分钟
1.4k
今天是农历鼠年大年初四,本文是鼠年第4篇文章,也是汪子熙公众号第203篇原创文章。 大家这几天在家里宅得如何了?貌似不少朋友都闷坏了。 我们继续学习。 Jerry之前的文章 SAP错误消息调试之七种武器:让所有的错误消息都能被定位 介绍的第五种武器孔雀翎SAT,曾经提到了下面这张SAT的截图: 大家最常使用SAT的方式,也...

实现ABAP条件断点的三种方式

2020-01-30
阅读 1 分钟
1.2k
Python 中的 class 体内定义方法时,如果没有显式地包含 self 参数,有时候依然可以被调用。这是一个非常有趣的话题,因为它涉及到对 Python 中类与对象之间关系的更深理解。要理解为什么这种情况下方法依然能够被调用,我们需要逐步拆解 Python 类的构造方式以及方法绑定的原理。

Meaning of Block size in tcode R3AC1

2020-01-30
阅读 1 分钟
1k
For example if you have 110 equipment to be downloaded from ERP, there would be 3 inbound queues generated in CRM, the first two will each import 50 equipment and the left 3rd queue imports the left 10 equipment.The transaction handling of each queue is isolated from each other, for example if th...

什么是SAP中间件的CSA queue

2020-01-30
阅读 2 分钟
902
Ross asked why there is strange queue with name CSA* in inbound or outbound queue monitor.

CRM PRODUCT_MAT, BDOC和customer product id修改

2020-01-30
阅读 2 分钟
1.1k
Product HT-1055 is downloaded from ERP. When you make changes in CRM for example change its customer product id: