最新文章列表

SAP WebClient UI创建Value help最详细的步骤

This document could be used for beginners for Webclient UI development who wants to know how to implement value help. Example: When clicking F4 on BusinessPartner ID,     a new window pops up a ...
JerryWang_SAP 评论(0) 有235人浏览 2020-12-21 10:01

使用ABAP创建QR Code(二维码)

In the previous blog we discuss how to generate QRCode to enable it be scanned via mobile phone. In that solution, the QRCode is generated and stored in a PDF file via ABAP webdynpro framework, we on ...
JerryWang_SAP 评论(0) 有335人浏览 2020-12-20 10:11

如何使用ABAP发送带有PDF格式附件的电子邮件

Created by Jerry Wang on Feb 15, 2014 the signature of CL_DOCUMENT_BCS~ADD_ATTACHMENT:     suppose we already have PDF binary source with type XSTRING, variable iv_pdf_content. i_attachment_type ...
JerryWang_SAP 评论(0) 有303人浏览 2020-12-20 10:10

如何找到一张ABAP配置表对应的事务码或者维护视图

Created by Jerry Wang on Feb 15, 2014 Case: you know the table name and you want to find the transaction code or maintenance view which could be used to maintain entries for that table For example t ...
JerryWang_SAP 评论(0) 有210人浏览 2020-12-19 10:35

如何处理ABAP DDIC_TYPE_INCONSISTENCY错误

Created by Jerry Wang on Feb 18, 2014 Issue: there are so many DDIC_TYPE_INCONSISTENCY dump in ST22. All scenarios related to table BUT000 are affected.     You can find detailed explanation in ...
JerryWang_SAP 评论(0) 有259人浏览 2020-12-17 11:08

使用ABAP代码创建透明表

Created by Jerry Wang on Feb 20, 2014 Report source code could be found below: REPORT ztable. PARAMETERS: tabname TYPE char32 OBLIGATORY. DATA: lt_new_object TYPE comt_gox_def_header, ...
JerryWang_SAP 评论(0) 有335人浏览 2020-12-16 10:03

使用ABAP代码生成二维码(QR Code)

Previously we have discussed how to generate QRcode with SAP standard functionality: (1) Generate QRcode with ABAP Webdynpro (2) Generate QRcode with ABAP Code plus Adobe form template Both solution ...
JerryWang_SAP 评论(0) 有433人浏览 2020-12-12 09:44

如何用代码动态生成ABAP类型

In one of my project the data type of the variable to hold service consumption result is not known in design time so I have to generate the data type dynamically via code, using ABAP RTTC( runtime typ ...
JerryWang_SAP 评论(0) 有307人浏览 2020-12-10 11:18

引起SAP WebClient UI页面出现超时(time out)错误的另一个原因

Sometimes you would see the following page if you are clicking anywhere in a page which is idle for quite a long time.     However, there are definitely some other causes which would also lead to ...
JerryWang_SAP 评论(0) 有265人浏览 2020-12-09 13:45

SAP WebClient UI component模型元数据解析工具

I use the issue in this blog to demonstrate the usage of this small repository parse tool: We need to know under which enhancement set the component usage “ZCUSTOM” is added to UI component BT116H_SRV ...
JerryWang_SAP 评论(0) 有228人浏览 2020-12-09 13:44

如何把一个ABAP视图添加到SAP GUI的收藏夹里

The idea comes from Sougata Chatterjee’s anwser in this thread: Suppose I need to add the maintenance view COMV_PARTNER_FCT to my favorite list. I expect once the entry in the favorite list is double ...
JerryWang_SAP 评论(0) 有294人浏览 2020-12-08 10:59

SAP CRM产品主数据ID的生成逻辑介绍

You can choose to let the system determine the product ID automatically according to number range or you can choose to assign the product ID manually. a. If you would like to go with the number range ...
JerryWang_SAP 评论(0) 有291人浏览 2020-12-08 10:56

SAP CRM note创建按钮被禁用的原因分析

Issue The creation button for note assignment block is disabled in overview page as below:     First check the text Object assignment settings via customizing below:     Figure out the text ...
JerryWang_SAP 评论(0) 有200人浏览 2020-12-07 10:44

如何快速定位SAP CRM订单应用(Order Application)错误消息抛出的准确位置

In my blog Six kinds of debugging tips Fabian Geyer raised a very good point about the trouble during ERP Application trouble shooting. Let me just quote his good statement: “Several ERP applications ...
JerryWang_SAP 评论(0) 有332人浏览 2020-12-06 09:46

如何动态修改SAP CRM WebClient UI表格栏的宽度

Achievement By clicking down or up button, the table width could be changed dynamically - each time the button is clicked, the width increases or shrinks at 10 px interval.     (1) Create a tabl ...
JerryWang_SAP 评论(0) 有232人浏览 2020-12-05 10:02

如何在SAP CRM WebClient UI里创建web service并使用ABAP消费

In this blog I will create a web service which is exposed via Genil model PROD in CRM web client UI and consume it via a simple ABAP program. Create web service in CRM Webclient UI (1) log on CRM We ...
JerryWang_SAP 评论(0) 有223人浏览 2020-12-05 09:58

如何处理SAP CRM Web Service错误 - Virtual Interface Method XXXX not supported

Issue description The web service PROD_WS. Details could be found in this blog. When consuming the web service via an ABAP program, the following error message is raised:     This error could al ...
JerryWang_SAP 评论(0) 有231人浏览 2020-12-04 13:59

如何开启SAP CRM基于WORD模板创建附件的功能

(1) log on CRM web UI via business role SERVICEPRO, work center Service Operations->Search Document Templates:   (2) Create a new document template:     Specify Object type BUS1178 - Produ ...
JerryWang_SAP 评论(0) 有271人浏览 2020-12-02 10:07

如何创建ABAP的text table

(1) create a main table as usual:     define the key field CHANNEL:     (2) create another table which will be used as text table. Ensure a field with data element SPRAS is included as prima ...
JerryWang_SAP 评论(0) 有262人浏览 2020-12-02 10:05

如何查询当前SAP用户所属的组织单元(organization unit)

Created by Jerry Wang, last modified on May 03, 2016 Approach1 Menu->Business Workplace:     then click "Display organizational assignment":     The "IC Inbox ( Test for ...
JerryWang_SAP 评论(0) 有321人浏览 2020-11-30 13:05

最近博客热门TAG

Java(141744) C(73651) C++(68608) SQL(64571) C#(59609) XML(59133) HTML(59043) JavaScript(54919) .net(54785) Web(54514) 工作(54118) Linux(50905) Oracle(49875) 应用服务器(43289) Spring(40812) 编程(39454) Windows(39381) JSP(37542) MySQL(37267) 数据结构(36424)

博客人气排行榜

    博客电子书下载排行

      >>浏览更多下载

      相关资讯

      相关讨论

      Global site tag (gtag.js) - Google Analytics