2006 Jan 11
41 of 62 |
Dynamic WHERE Clause in ABAP/4 -
You can apply internal table of create dynamic where clauses.
ExampleDATA i_where(100) OCCURS 0 WITH HEADER LINE.APPEND ’vbeln LIKE ’’%1’’’ to i_whe......
42 of 62 |
How to Copy File on Windows by ABAP/4 -
If you want to copy file on PC windows, you can use function "WS_FILE_COPY".
Example
*&-------------------------------------------------------------......
2006 Jan 10
43 of 62 |
Color in ABAP/4 -
Name Code ColorCOL_BACKGROUND 0 depends on GUICOL_HEADING 1 grayish-blueCOL_NORMAL 2 ......
44 of 62 |
SELECT-OPTIONS in ABAP/4 -
SELECT-OPTIONS is a complex selection. If user want to input value of field more than one value, it is possible by using SELECT-OPTIONS.
Syntax
SELE......
2006 Jan 09
45 of 62 |
Commenting in ABAP/4 -
In ABAP/4, we have 2 formatting for comment:
Line Comment: If you want to comment whole line, you can put * sign in front of the line.Example:* Com......
46 of 62 |
Event of Report in ABAP/4 -
In ABAP/4, the event immidiately begins when the program is running. In general, these events is normally used in the report:
INITIALIZATIONThis is......
47 of 62 |
Get Last Date of Month in ABAP/4 -
*&---------------------------------------------------------------------**& Form get_last_date_of_month*&-------------------------------------......
48 of 62 |
How to Call Shell Script from ABAP/4 -
*---------------------------------------------------------------------** FORM CALL_SHELL_SCRIPT **----......
49 of 62 |
How to count page number of report in ABAP/4 -
In the first session we can define TOP-OF-PAGE event as normally and we will insert the special wording replace the page count.
In the second sessio......
50 of 62 |
How to get Text of Domain Value in ABAP/4 -
CALL FUNCTION ’DOMAIN_VALUE_GET’ EXPORTING I_DOMNAME = lv_name "Domain Name I_DOMVALUE = lv_value "Domain Value ......