We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Originally posted by RTagliento September 1, 2023 Hi Łukasz, I tried to understand and do myself, but sorry without result.
I used FALV for a fast ALV popup, just for showing some data result..... the question is about the GREEN OK button....
If the user click on it.... nothing happens.
Maybe I miss something....... there is a way to hide it, and keep only the second "X" button that just close the popup?
The text was updated successfully, but these errors were encountered:
Hi, me too use flav for some popup. Simple way is to use redefine method and local class. I use this also for get selected row.
PRIVATE SECTION. data: mv_row type i.
PUBLIC SECTION. METHODs get_selected_row RETURNING VALUE(result) TYPE string.
METHOD evf_double_click . mv_row = E_ROW-INDEX. leave to SCREEN 0. ENDMETHOD.
METHOD evf_user_command. CASE e_ucomm. WHEN 'CONTINUE'. me->get_current_cell_row( IMPORTING ROW = mv_row ). LEAVE to SCREEN 0. WHEN OTHERS. super->evf_user_command( e_ucomm ). ENDCASE. ENDMETHOD.
lc_mccode->get_selected_row( ).
Sorry, something went wrong.
fidley
No branches or pull requests
Discussed in #81
Originally posted by RTagliento September 1, 2023
Hi Łukasz,
I tried to understand and do myself, but sorry without result.
I used FALV for a fast ALV popup, just for showing some data result..... the question is about the GREEN OK button....
If the user click on it.... nothing happens.
Maybe I miss something....... there is a way to hide it, and keep only the second "X" button that just close the popup?
The text was updated successfully, but these errors were encountered: