
ABAP
文章平均质量分 81
skewen
java软件技术开发
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
IN Abap Loop , key words Unassign cant't be used
With the addition ASSIGNING, you assign the current line to a field symbol <fs>; within the loop, you are not allowed to assign a different memory area to the field symbol or cancel the assignme...原创 2011-09-22 11:18:36 · 185 阅读 · 0 评论 -
关于sy-subrc,我们不知道的
had this information so thought of sharing with you all. Values of SY-SUBRC on different ABAP statements 'sy-subrc' is a return code, set by the following ABAP statements.As a rule, if SY-SUBRC ...原创 2012-10-11 11:45:24 · 668 阅读 · 0 评论 -
(转)ABAP 程序性能 小技巧
1、使用where语句 不推荐Select * from zflight.Check : zflight-airln = ‘LF’ and zflight-fligh = ‘BW222’.Endselect.推荐Select * from zflight where airln = ‘LF’ and fligh = ‘222’.Endselect. 2、使用聚合函数不推荐Maxnu ...原创 2012-04-16 18:11:37 · 150 阅读 · 0 评论 -
一步步学习 Webdynpo OVS Search help
OVS (Object Value Selector) Search Help Steps to implement OVS search help 1. Create a new web dynpro component ‘zsimple_ovs’ 2.Give Description and Press Enter 3. ...原创 2012-11-01 13:57:08 · 300 阅读 · 0 评论 -
Call ABAP Webdynpro Application from a R/3 Transaction
Please find the Code Snippets to Call a Webdynpro ABAP Application from a R/3 TransactionCreate a ABAP Program from SE38 and associate a transaction to it and Call the same.REPORT ZWD1.***dat...原创 2012-05-31 00:35:18 · 262 阅读 · 0 评论 -
ABAP Dialog 为什么用自定义OK_code 而不用系统变量sy-ucomm
Reading Function Codes In each PAI event that a user triggers by choosing either a pushbutton on the screen or an element in a GUI status, the corresponding function code is placed into the syst...原创 2012-04-28 13:40:15 · 1447 阅读 · 0 评论 -
Reading Function Codes
Reading Function Codes In each PAI event that a user triggers by choosing either a pushbutton on the screen or an element in a GUI status, the corresponding function code is placed into the sy...原创 2011-12-21 13:16:04 · 194 阅读 · 0 评论 -
(转)流程处理命令(STOP,EXIT,RETURN,CHECK,REJECT)的说明
STOP 在以下事件中使用: INITIALIZATION, AT SELECTION-SCREEN, START-OF-SELECTION, GET, 1、当在INITIALIZATION事件执行该命令,系统将直接触发应用服务器和客户端屏幕元素的发送;2、在其他事件中将直接触发END-OF-SELECTION事件的执行,如果不想执行END-OF-SELECTION,请使用R...原创 2011-07-05 11:11:32 · 324 阅读 · 0 评论 -
abap常用系统变量
常用的系统变量如下: 1.sy-pagno当前页号 2.SY-DATUM当前时间 3.SY-LINSZ当前报表宽度 4.SY-LINCT当前报表长度 5.SPACE空字符 6.SY-SUBRC执行状态为0,表示成功. 7.SY-UNAME 用户名 8.SY-UZEIT当前时间 9.SY-TCODE当前的事务代码 10.SY-LSIND列表索引页 11.SY-LISTI上一个列表的索引 12.SY-...原创 2011-06-30 11:40:19 · 455 阅读 · 0 评论 -
Transporting Table Entries From One Client To Another Client
Today I want to teach you how to transport a table entries from one client to another, the technique is using a transport request just like when you transport programs. In this tutorial let’s create...原创 2013-02-20 10:05:15 · 184 阅读 · 0 评论