|
|
|
|
|
ABAP OO
|
Written by Srikanth Vadlamani
|
|
Monday, 16 July 2007 |
|
|
|
Read more...
|
|
|
Written by Srikanth Vadlamani
|
|
Monday, 16 July 2007 |
|
|
|
Read more...
|
|
|
Written by Anon.
|
|
Tuesday, 29 May 2007 |
|
|
|
Read more...
|
|
|
Written by Anon.
|
|
Monday, 28 May 2007 |
|
To do this using a function group: REPORT demo_function_group_counter .
DATA number TYPE i VALUE 5.
CALL FUNCTION 'SET_COUNTER' EXPORTING set_value = number.
DO 3 TIMES. CALL FUNCTION 'INCREMENT_COUNTER'. ENDDO.
CALL FUNCTION 'GET_COUNTER' IMPORTING get_value = number.
WRITE number. Now to do it using a class....
|
|
Read more...
|
|
|
Written by Anon.
|
|
Sunday, 27 May 2007 |
|
|
|
Read more...
|
|
|
Written by Anon.
|
|
Sunday, 27 May 2007 |
|
|
|
Read more...
|
|
|
Written by Anon.
|
|
Sunday, 27 May 2007 |
|
|
|
Read more...
|
|
|
Written by Anon.
|
|
Sunday, 27 May 2007 |
|
|
|
Read more...
|
|
|
Written by Anon.
|
|
Sunday, 27 May 2007 |
|
|
|
Read more...
|
|
|
Written by Anon.
|
|
Sunday, 27 May 2007 |
|
|
|
Read more...
|
|
|
Written by Anon.
|
|
Sunday, 27 May 2007 |
|
|
|
Read more...
|
|
|
Written by Anon.
|
|
Saturday, 24 March 2007 |
This program displays the hierarchy in a list tree. Additional custom toolbar allow expand / collapse the tree. Note. SAP Toolbar requires the Microsoft Common Control. You therefore need to install Microsoft Internet Explorer Version 4.0. Used objects and methods: - cl_gui_splitter_container
- cl_gui_container
- cl_gui_toolbar
- cl_gui_column_tree
- handling application events (with triggering PAI)
- context menus
GUI Status 'MAIN' has one function: BACK of Type ' ' (Normal application function), assigned to standard button: . Screen 100 has only field g_ok_code for handling user command: PROCESS BEFORE OUTPUT. MODULE PBO_100. PROCESS AFTER INPUT. MODULE PAI_100.
|
|
Read more...
|
|
|
Written by Anon.
|
|
Friday, 23 March 2007 |
This program displays the hierarchy in a list tree. Additional custom toolbar allow expand / collapse the tree. Note. SAP Toolbar requires the Microsoft Common Control. You therefore need to install Microsoft Internet Explorer Version 4.0. Used objects and methods: - cl_gui_splitter_container
- cl_gui_container
- cl_gui_toolbar
- cl_gui_list_tree
- handling application events (with triggering PAI)
- context menus
GUI Status 'MAIN' has one function: BACK of Type ' ' (Normal application function), assigned to standard button: . Screen 100 has only field g_ok_code for handling user command: PROCESS BEFORE OUTPUT. MODULE PBO_100. PROCESS AFTER INPUT. MODULE PAI_100.
|
|
Read more...
|
|
|
Written by Viktor Voilevich
|
|
Thursday, 22 March 2007 |
- Constructor cannot call virtual-like methods of a class;
- Returning method can be used only in expressions.
- Private components of a class.
- Widening and narrowing cast.
- Constructor - optional and default parameters.
|
|
Register to read more...
|
|
|
Written by Anon.
|
|
Thursday, 22 March 2007 |
This program displays the list of programs created by the user in a simple tree. After double click on a program name the source code is displayed in other part of screen. Used objects and methods: - cl_gui_splitter_container
- cl_gui_container
- cl_gui_picture
- cl_gui_simple_tree
- cl_gui_html_viewer
- cl_gui_textedit
- handling system events (without triggering PAI)
GUI Status 'SCREEN_100' has 3 functions: BACK, EXIT and CANCEL of Type 'E' (Exit command), assigned to standard buttons: . Screen 100 is empty: PROCESS BEFORE OUTPUT. MODULE status_0100. PROCESS AFTER INPUT. MODULE cancel AT EXIT-COMMAND.
|
|
Register to read more...
|
|
| << Start < Prev 1 2 Next > End >>
| | Results 1 - 15 of 23 |
|
|
|