Read and Modify the ITAB records without using the temporary work area or variables. It is possible with using the ABAP Table Expressions. Lets see more about them. Preface Let me start with begging your apologies for not publishing any article in long time. I had to take a pause . I w...
in the statement READ TABLE. The table key must be covered completely by specifying components and no components can be specified that are not part of the table key.If the table expression is specified as an argument of the predicate function line_exists or of the table function line_index,...
ABAP Work Area & Header Line - 1. Difference between Work Area and Header Line 工作区与标题行的不同之处 原文地址: http://www.sap-img.com/abap/difference-between-work-area-and-header-line.htm 我翻译下,嘿嘿 在对内表进行一些操作的时候,比如增加或者取回一条记录.我们必须暂时保存这条记录. 这...
SAP Managed Tags: ABAP Development Hi, I have a very basic question regarding the use of Internal table with headerline in ABAP OO. I consider the concept of Internal table with header as one of the most features of ABAP, which is not there in any of the other porgramming languages. ...
SAP Managed Tags: ABAP Development Hi Everyone, I have a module pool program with table control. I have used table control component top_line in PAI event. Based on the top_line value I am reading table control's internal table and throwing error msg. When I scroll in the table control...
Second problem: Changes in selection are not propagated automagically to the underlying table. I also know I could useget_selected_rowsto force this update manually, but again: is this really necessary? Can anyone explain the behavior why sorting etc. is propagated automatically to the underlying...
SAP Managed Tags: ABAP Testing and Analysis Thank you! Get sales order headers for message variable (SO number from ZRIV output) IF LINES( gt_cmfp ) IS NOT INITIAL. SELECT * FROM vbak INTO TABLE gt_vbak FOR ALL ENTRIES IN gt_cmfp WHERE vbeln = gt_cmfp-msgv2(10). ENDIF. But fo...
刚开始学ABAP的时候,学到iternal table时,感觉一阵混乱. 搞不清楚什么是work area,什么是header line,以及occurs是干什么用的. 今天终于差不多搞明白了(我还是太弱啊...BS自己一下) 所以还是记录下来..省得自己以后再忘记... 先是用TYPES关键字定义一个行(row)的类型.如下: ...
SAP Managed Tags: ABAP Development i think for table control property window one field is there for defining line selection <last field in the bottom> just uncheck line sel and delete the name you have given there as line sel field.. regards shiba dutta Reply Former Member In response ...
SAP Managed Tags: ABAP Development Hi Dharmesh Vyas, code like this in or PBO of screen. LOOP AT t_matdet " ur internal Table. INTO wa_matdet WITH CONTROL ztabcon " ur table control name. CURSOR ztabcon-current_line. MODULE ztabcon_disable. ...