最新文章列表

如何使用SAP CRM中间件从ERP往CRM下载Service Master

(1) Create service master in ERP using tcode AC01:     Once saved, the service master header data will be saved to table below:     (2) Create a download request in CRM via tcode R3AR2 with ...
JerryWang_SAP 评论(0) 有308人浏览 2021-03-14 08:59

显示SAP CRM Product hierarchy的一个小工具

Recently I start to study SD and I found the product hierarchy in transaction code V/76 could not be viewed in tree style and it is not so convenient to check:     So I wrote a simple report to r ...
JerryWang_SAP 评论(0) 有363人浏览 2021-03-14 08:58

使用事物码SAT检测SAP CRM中间件的传输性能

(1) Create service master in ERP using tcode AC01:     Once saved, the service master header data will be saved to table below:     (2) Create a download request in CRM via tcode R3AR2 with ...
JerryWang_SAP 评论(0) 有288人浏览 2021-03-13 08:55

SAP Repository Information System查找Message ID的一个小技巧

Normally if we see a message in SAPGUI and we can just double click the message icon to get its technical detail like message id and number displayed.     However in some case the icon is not ava ...
JerryWang_SAP 评论(0) 有359人浏览 2021-03-13 08:53

SAP WebClient UI component context node class单元测试方法

Prerequisite for reading this blog: you should be familiar with how to work with ABAP unit test framework. Requirement is to write unit test for this method below:     In this blog, I copy the st ...
JerryWang_SAP 评论(0) 有305人浏览 2021-03-12 09:58

如何使用ABAP代码创建SAP Product Category

In ERP we can create new material type by copying from existing one using tcode OMS2:     This new type could be downloaded into CRM system via customizing download. A product category with prefi ...
JerryWang_SAP 评论(0) 有446人浏览 2021-03-12 09:57

在SAP ABAP里使用注解@Inject模拟Java Spring

Recently I will deliver a session regarding dependency inversion principle to my team. As Java Spring is already widely used in all other Java development teams in my site, some ABAPers are not well ...
JerryWang_SAP 评论(0) 有378人浏览 2021-03-11 11:03

使用javap分析Java字节码的一个例子

I have the following source code in Java: class Outer { Nested nested; Nested getNested() { return nested; } } class Nested { Inner inner; Inner getInner() { ...
JerryWang_SAP 评论(0) 有397人浏览 2021-03-10 09:17

SAP CRM Product hierarchy,Category和Application三个问题

All of these three questions are raised regarding the customizing below via tcode COMM_PRAPPLCAT:     Question1: Product search supports “search by category id”.     However, we can assign d ...
JerryWang_SAP 评论(0) 有312人浏览 2021-03-10 09:16

ABAP数据库表的元数据

For project reason I need to fill some excel.     The content of each column comes from content in SE11:     In order to avoid such boring task, I write a small ABAP class to automate it. T ...
JerryWang_SAP 评论(0) 有335人浏览 2021-03-09 09:18

如何找到ABAP里被动态调用的update function module

In this SCN discussion, Find a Function Module in Update Task dynamically called, a question is asked. For example, if the update function module CRM_PRODUCT_I_UPDATE_DU is called statically as: CALL ...
JerryWang_SAP 评论(0) 有322人浏览 2021-03-09 09:18

无法添加某个relationship给SAP CRM Product category的一个可能原因

For example, I would like to test relationship type STRSET and then I plan to add it to product category 00001.     However, in available drop down list, I could not see relationship type STRSET. ...
JerryWang_SAP 评论(0) 有387人浏览 2021-03-08 10:01

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

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: In table this fie ...
JerryWang_SAP 评论(0) 有267人浏览 2021-03-08 10:00

SAP CRM 中间件Request download里,遇到/SAPPSPRO/S_MAT_ENHANC_COMM 错误的解决办法

SAP CRM 中间件Request download里,遇到/SAPPSPRO/S_MAT_ENHANC_COMM 错误的解决办法 When I perform product request download, I found that the bapistructures sent from ERP only contains one entry with tabname = /SAPPS ...
JerryWang_SAP 评论(0) 有346人浏览 2021-03-07 09:18

SAP CRM中间件Material Sales Organization和distribution channel的映射逻辑

For example, I have created a material with the following sales organization and distribution channel id in ERP:     In tcode SMW01, I observed the following sales organization and distribution c ...
JerryWang_SAP 评论(0) 有335人浏览 2021-03-07 08:57

如何用SAP CRM中间件从ERP下载material division到CRM

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:     ...
JerryWang_SAP 评论(0) 有322人浏览 2021-03-06 09:10

SAP CRM Product Sales status在中间件中的处理逻辑

Example: I have a material in ERP maintained with status: 10     According to SAP help: If a material has technical defects or is to be discontinued, you can block the material. If you set a blo ...
JerryWang_SAP 评论(0) 有322人浏览 2021-03-06 09:10

两种使用代码获得SAP CRM product sales status的办法

Requirement: I would like to get Product sales status id via ABAP code. The test product id: 1467     In TJ02T, we know the status id is: I1050     Approach1: use function module CRM_STATUS_ ...
JerryWang_SAP 评论(0) 有331人浏览 2021-03-05 10:10

SAP ABAP字符和字符串变量隐式转换的一些规则

One new colleague in my team asked me that some code does not work as he expected. The confuse could be summarized into following source code: DATA: lv_i TYPE int4 VALUE 1, lv_s TYPE strin ...
JerryWang_SAP 评论(0) 有318人浏览 2021-03-05 10:09

ABAP Debugging Script(调试器脚本)使用的一些实际例子

例子1:Use ABAP debugger script to view BOL entity content in an efficient way In CRM, if we could like to review a BOL entity content in debugger, for example consider the following sample code which f ...
JerryWang_SAP 评论(0) 有420人浏览 2021-03-04 10:29

最近博客热门TAG

Java(141747) C(73651) C++(68608) SQL(64571) C#(59609) XML(59133) HTML(59043) JavaScript(54918) .net(54785) Web(54513) 工作(54116) Linux(50906) Oracle(49876) 应用服务器(43288) Spring(40812) 编程(39454) Windows(39381) JSP(37542) MySQL(37268) 数据结构(36423)

博客人气排行榜

    博客电子书下载排行

      >>浏览更多下载

      相关资讯

      相关讨论

      Global site tag (gtag.js) - Google Analytics