|
|
|
|
|
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 Anon.
|
|
Monday, 19 March 2007 |
|
This tiny program just displays the T001 table using grid control and all its default features. Events: - print events (see above)
- double_click
- toolbar
- user_command
- context_menu_request
Used object: - cl_gui_alv_grid
- cl_gui_splitter_container
- cl_gui_container
- cl_gui_dialogbox_container
- cl_alv_event_toolbar_set (in event handler)
- cl_ctmenu (in event handler)
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.
|
|
Read more...
|
|
|
Written by Anon.
|
|
Tuesday, 27 February 2007 |
|
Instantiates the control framework using i_oi_document factory. Excapsulates SAP Office Integration specific functionality. Uses the i_oi_document_proxy class to create the document link then uses the i_oi_table collection for transporting SAP internal tables from the server to the client for display in the active document server. |
|
Read more...
|
|
| << Start < Prev 1 2 Next > End >>
| | Results 1 - 15 of 19 |
|
|
|