mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 11:46:38 +08:00
Set Character Limit for "Table" Field in Data Config page (#6934)
Co-authored-by: Marc Bernard <59966492+mbtools@users.noreply.github.com>
This commit is contained in:
parent
667ac8966a
commit
13fd9a3897
|
@ -103,7 +103,8 @@ CLASS zcl_abapgit_gui_page_data IMPLEMENTATION.
|
|||
ro_form->text(
|
||||
iv_label = 'Table'
|
||||
iv_name = c_id-table
|
||||
iv_required = abap_true ).
|
||||
iv_required = abap_true
|
||||
iv_max = 16 ).
|
||||
|
||||
ro_form->checkbox(
|
||||
iv_label = 'Skip Initial Values'
|
||||
|
@ -318,7 +319,8 @@ CLASS zcl_abapgit_gui_page_data IMPLEMENTATION.
|
|||
lo_form->text(
|
||||
iv_label = 'Table'
|
||||
iv_name = c_id-table
|
||||
iv_readonly = abap_true ).
|
||||
iv_readonly = abap_true
|
||||
iv_max = 16 ).
|
||||
|
||||
lo_form_data->set(
|
||||
iv_key = c_id-skip_initial
|
||||
|
|
Loading…
Reference in New Issue
Block a user