I was lately trying to find an HTML WYSIWYG editor for ABAP, but I failed. I though or this was not needed so far, or the solution was not posted anywhere. So I've tried several times and thanks to ...
Why I like to code ABAP in Eclipse? I was receiving this question very often in the past, but I really thought that most of the developers who can use AiE, are using it. But seems that I was wrong. ...
I think that any of us had meet the situation when we needed to create an Excel output from internal table in background. There is a really nice project called ABAP2XLSX which gives you to possibility ...
The changes of this parameter are only visible in edit mode and makes sense only for character or string fields. If it is set to ABAP_TRUE (‘X’), then the ALV grid stores in internal table the value in ...
As the description says, the meaning of that field is to set the internal length of the field in Bytes. During my whole career as ABAP Developer, I had never filled that field manually. Usually you’ll ...
... from TOOLTIP will be used as description used to describe the column in the change layout screen.
Figure 82 ZDEMO_AIN_CL34 ABAP Code for Tooltip
Figure 83 ZDEMO_AIN_CL34 Change ...
DO_SUM is very helpful when you want to assure that some of the numeric fields are summarized directly after the output, without interaction from the user side. In order to do so, just put the ‘X’ or ABAP_TRUE ...
... table. The corresponding field should be an CHAR4 field. You can use of course the domain ICON_D as well. In my example I’ve filled all rows with the same icon (ICON_ABAP) during the selection of data ...
The name of this field says almost everything about it. If you put an ‘X’ in it, then the column will be displayed as checkbox. The type of the field which is used as checkbox should be set to ABAP_BOOL ...
... really simple example. (As you may read it the abapGit version can differ from here)
Figure 1 ZDEMO_AIN_CL01 example of using CL_GUI_CUSTOM_CONTAINER
Of course in order to be able ...
...
* iv_fax_country = iv_fax_country " Country for Telephone/Fax Number
).
msg->set_main_doc(
exporting
iv_contents_txt = | TEST MESSAGE |
&& |sample from ABAPblog.com| ...
... and CL_SALV_TABLE. Both methods are created with new ABAP 7.40 SP05 syntax. LVC Field catalog definition class-methods lvc_fcat_from_internal_table
importing
it_table type any table
returning value(rt_fcat) type lvc_t_fcat. ...
I was playing a bit with CL_GUI_TIMER some time ago and I thought that this would be good to use it somewhere to have idea how it works. So I've created then a small game Battleships, which you for ...
This topic was raised many times, I always found it's not possible to (or at least to hard to try) to update components allocation for routing operations. Fortunately I had to do it somehow and I manage ...
... parameters: VALUE( C_XSTRING ) TYPE XSTRING -> I'll use that in next part Implementation: method chart_customizing.
*This is the code from http://abapblog.com.
data: ft_raw255 type solix_tab. ...
In previous post I've shown how to zip file directly on PC without using CL_ABAP_ZIP, this time I will show you how easy is to use OLE2_OBJECT to create an MS Outlook message with attachment and save ...