This question is asked by Dr. Lin.

Issue

For example, settype COM_COMMERCIAL could be opened via tcode COMM_ATTRSET:

However COMM_PRFREEATTR could not be opened:

The error message is raised in line 48:


Compare the variable value for success case COM_COMMERCIAL:


Root cause is, the correct settype and persistence table name should be COMM_PRFREEATTR, unfortunately, when you enter tcode COMM_ATTRSET, the last character R of name is truncated:

Workaround

Manually add the missing R in debugger:



After that the settype could be opened in transaction code.

The set type was not created using the Maintain Set Types and Attributes transaction in the product master (COMM_ATTRSET), or it is a standard SAP set type that was created manually (not generated).
Make your changes using the transaction originally used to create
the set type. Standard SAP set types that were created manually cannot be displayed using a set type transaction as the COMC_SETTYP_ATTR
entries required to do this do not exist.
The following settypes cannot be displayed in transaction
COMM_ATTRSET. The following settype haven't been created by the
generation tool of transaction COMM_ATTRSET but they are manually
created. At that time the generation tool development was under way.
This settypes have no entry in COMC_SETTYP_ATTR. So we don't allow to
display them in COMM_ATTRSET:
COMM_PR_CONFIG, CRMM_PR_REFOBJ, COMM_PR_MAT, CRMM_PR_TAX,
CRMM_PR_SALESG, CRMM_PR_SALESA, COMM_PR_SRV, COMM_PR_UNIT,
COMM_PR_SHTEXT, COMM_PR_LGTEXT, CRMM_PR_SALESH, CRMM_PR_BTR,
CRMM_PR_SRVRR, CRMM_PR_SRVDUR, COMM_PR_GTIN, CRM_CAT_SAL, CRM_CAT_PUR,
COMM_PR_COND, COMM_PROD_VAR, COMM_PR_CM, COMM_PR_STATUS.

要获取更多Jerry的原创文章,请关注公众号"汪子熙":

有些CRM settype用事务码COMM_ATTRSET打不开的原因的更多相关文章

  1. 中间件事务码R3AC1里Block Size的含义

    在中间件事务码R3AC1可以为一个中间件的适配器对象维护Block size的大小. 以上图的尺寸为50为例,假设在ERP系统里有110个设备(equipment)需要下载,那么CRM中间件会自动生成 ...

  2. SAP中查询用户操作日志的事务码

    事务码:STAD 注意:查询的时间跨度范围不要太大,否则会很慢! 事务码:ST03N 工作负载和性能统计

  3. 事务码 ListSchema:查看Cube星型结构Schema

    声明:原创作品,转载时请注明文章来自SAP师太技术博客( 博/客/园www.cnblogs.com):www.cnblogs.com/jiangzhengjun,并以超链接形式标明文章原始出处,否则将 ...

  4. 存放事务码及其描述的TABLE是TSTC、TSTCT。

    存放事务码及其描述的TABLE是TSTC.TSTCT.

  5. [SAP ABAP开发技术总结]ABAP常用事务码

    声明:原创作品,转载时请注明文章来自SAP师太技术博客( 博/客/园www.cnblogs.com):www.cnblogs.com/jiangzhengjun,并以超链接形式标明文章原始出处,否则将 ...

  6. 如何通过一个SAPGUI屏幕反查这个屏幕对应的事务码

    假设我通过某种跳转方式打开了下图这个SAPGUI的屏幕,但我想搞清楚用哪一个事务码可以直接到达这个屏幕,而不通过繁琐的点击,应该怎么做? 步骤1,点击Order字段,按F1打开帮助界面, 点上图的图标 ...

  7. 另一种方式实现事务码SE16里的结果集修改

    注: 这种方法不同于网上流传的在调试器里修改fcode的那种解决方案. 使用场景:我们需要直接在开发系统的事务码SE16里修改某些结果集的值,但是在SE16的工具栏里看不见修改按钮: 解决方案 使用/ ...

  8. 如何使用事务码SMICM分析ABAP代码发起的HTTP请求的错误ICM_HTTP_SSL_PEER_CERT_UNTRUSTED

    当我用CL_HTTP_CLIENT往一个外网的url发请求时,遇到错误:ICM_HTTP_SSL_PEER_CERT_UNTRUSTED 错误是从这段ABAP代码里抛出来的: CALL METHOD ...

  9. ABAP常用事务码

    开发----------------------------------------------- SE51  屏幕制作 SE91  MESSAGE OBJECT SE80  对象浏览器(可以建开发类 ...

随机推荐

  1. echars 饼状图 轮循 水平翻转

    code: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF ...

  2. python中使用redis模块, 设置过期时间

    # 链接数据库self.handle = redis.Redis(host=host, port=port, db=db, password=password, decode_responses=Tr ...

  3. 洛谷 P1910 L国的战斗之间谍

    洛谷 P1910 L国的战斗之间谍 传送门 思路 二维背包模板题 三维肯定会爆掉,所以换二维 代码 #include <bits/stdc++.h> #define N 1111 usin ...

  4. convert decimal to binary

    public class Solution { public static void main(String[] args) { ; String str = ""; ) { ; ...

  5. nodejs的作用【转】

    来源地址:https://www.zhihu.com/question/33578075/answer/56951771 如果你去年注意过技术方面的新闻,我敢说你至少看到node.js不下一两次.那么 ...

  6. oracle--dump 块与块分析 (dump 深入实践二)

    一,建立测试环境 01,一个oracle数据库环境 02,具体数据库实验环境配置 SQL> create user test1 identified by kingle; User create ...

  7. [原创]浅谈在创业公司对MVP的理解

    [原创]浅谈在创业公司对MVP的理解 目前自已所处的公司类似一个创业平台,我们内部会不断的去孵化不同方向的产品,产品经理经常谈到的一个词就是MVP,所以有必需要去了解下什么是MVP? 1 什么是MVP ...

  8. Java代码中对IP进行白名单验证

    来自:https://www.cnblogs.com/shinubi/p/6723003.html public class ipUtil { // IP的正则,这个正则不能验证第一组数字为0的情况 ...

  9. Sql server锁

    SQL Server锁粒度 1.锁粒度是被封锁目标的大小,封锁粒度小则并发性高,但开销大,封锁粒度大则并发性低但开销小 2.SQL Server支持的锁粒度可以分为为行.页.键.键范围.索引.表或数据 ...

  10. Vue.js+vue-element

    Vue.js+vue-element搭建属于自己的后台管理模板:什么是Vue.js?(一)   Vue.js+vue-element搭建属于自己的后台管理模板:Vue.js是什么?(一) 前言 本教程 ...