mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00
Offline repo: make name obligatory
This commit is contained in:
parent
5c2a646809
commit
e699e7b0c9
|
@ -934,15 +934,17 @@ CLASS zcl_abapgit_popups IMPLEMENTATION.
|
|||
FIELD-SYMBOLS: <ls_field> LIKE LINE OF lt_fields.
|
||||
|
||||
|
||||
add_field( EXPORTING iv_tabname = 'ABAPTXT255'
|
||||
iv_fieldname = 'LINE'
|
||||
iv_fieldtext = 'Name'
|
||||
CHANGING ct_fields = lt_fields ).
|
||||
add_field( EXPORTING iv_tabname = 'ABAPTXT255'
|
||||
iv_fieldname = 'LINE'
|
||||
iv_fieldtext = 'Name'
|
||||
iv_obligatory = abap_true
|
||||
CHANGING ct_fields = lt_fields ).
|
||||
|
||||
add_field( EXPORTING iv_tabname = 'TDEVC'
|
||||
iv_fieldname = 'DEVCLASS'
|
||||
iv_fieldtext = 'Package'
|
||||
CHANGING ct_fields = lt_fields ).
|
||||
add_field( EXPORTING iv_tabname = 'TDEVC'
|
||||
iv_fieldname = 'DEVCLASS'
|
||||
iv_fieldtext = 'Package'
|
||||
iv_obligatory = abap_true
|
||||
CHANGING ct_fields = lt_fields ).
|
||||
|
||||
WHILE lv_finished = abap_false.
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user