- 浏览: 1043504 次
- 性别:
- 来自: 成都
最新评论
-
cs6641468:
检查每个Java版本特有的class是一种思路,你这个例子是, ...
如何通过Java代码判断当前的环境是否支持JRE 9 -
JerryWang_SAP:
aa00aa00 写道看见了我的影子哈哈,厉害
SAP成都研究院的体育故事 -
aa00aa00:
看见了我的影子
SAP成都研究院的体育故事 -
柳絮飞祭奠:
666111
让SAP云平台上的Web应用使用destination服务 -
JerryWang_SAP:
masuweng 写道这是java代码吗?您好,都是JavaS ...
CRM WebClient UI的浏览器打印实现
文章列表
I have the following source code in Java:
class Outer {
Nested nested;
Nested getNested() {
return nested;
}
}
class Nested {
Inner inner;
Inner getInner() {
return inner;
}
}
class Inner
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 different categories with same id on different product hierarchies. See example below:
Quest ...
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.
This class will first read corresponding database table name based on CRM settype id, then call funct ...
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 FUNCTION ‘CRM_PRODUCT_I_UPDATE_DU’ … Then we can easily find all calling places where this function ...
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. Why?
When debugging the backend logic to render relationship type drop down list entries, ...
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 field is marked as BUS20000130. How this value is determined?
First of all, the item category OPPT i ...
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 = /SAPPSPRO/S_MAT_ENHANC_COMM without any actual material data. As a result no product is created in CRM.
...
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 channel mapped in settype CRMM_PR_SALESA in CRM.
In ERP, these two fields are maintained in ...
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 t ...
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 block, orders, deliveries and invoices containing this material cannot be created at all, or only with ...
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_READ.
METHOD read_prod_sales_status.
DATA(lv_guid) = get_g
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 string,
lv_s2 TYPE string VALUE '1',
lv_ss TYPE sstring,
lv_s3 TYPE char18.
lv_s ...
例子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 fetches line item product of a given one order document:
DATA:
lo_collection TYPE REF ...
There is an interface IF_CRM_PRODUCT_PROXY in CRM which declares almost all function modules from function group COM_PRODUCT_API for product master access.
This interface is implemented by three classes below.
CL_CRM_PRODUCT_PROXY will delegate the call to MOCK_PROXY( for unit test ) ...
Requirement
When you maintain Opportunity line item and try to maintain a product, you can enter the alternative ID of a given product instead of the product ID. It is expected that the corresponding product identified by the alternative ID could be determined successfully.
Detail steps to achieve ...