Last active
December 17, 2015 01:48
-
-
Save njames/5530608 to your computer and use it in GitHub Desktop.
Determine the size of a BOL collection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* the last two buttons are displayed only if there is data in the table | |
lv_btn_enabled = abap_true. | |
lv_col_wrapper = typed_context->builactivity->collection_wrapper. | |
IF lv_col_wrapper->size( ) > 0. | |
lv_btn_enabled = abap_false. | |
ENDIF. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment