mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00
UI: Transport popup (#5453)
This commit is contained in:
parent
adfcedc7cb
commit
3742f2b0d6
|
@ -1046,7 +1046,8 @@ CLASS zcl_abapgit_popups IMPLEMENTATION.
|
||||||
" If default transport is set and its type matches, then use it as default for the popup
|
" If default transport is set and its type matches, then use it as default for the popup
|
||||||
ls_e070use = zcl_abapgit_default_transport=>get_instance( )->get( ).
|
ls_e070use = zcl_abapgit_default_transport=>get_instance( )->get( ).
|
||||||
|
|
||||||
IF ls_e070use-trfunction = is_transport_type-request AND iv_use_default = abap_true.
|
IF ( ls_e070use-trfunction = is_transport_type-request OR ls_e070use-trfunction IS INITIAL )
|
||||||
|
AND iv_use_default_transport = abap_true.
|
||||||
lv_order = ls_e070use-ordernum.
|
lv_order = ls_e070use-ordernum.
|
||||||
ENDIF.
|
ENDIF.
|
||||||
|
|
||||||
|
|
|
@ -99,10 +99,10 @@ INTERFACE zif_abapgit_popups
|
||||||
zcx_abapgit_exception .
|
zcx_abapgit_exception .
|
||||||
METHODS popup_transport_request
|
METHODS popup_transport_request
|
||||||
IMPORTING
|
IMPORTING
|
||||||
!is_transport_type TYPE zif_abapgit_definitions=>ty_transport_type
|
!is_transport_type TYPE zif_abapgit_definitions=>ty_transport_type
|
||||||
!iv_use_default TYPE abap_bool DEFAULT abap_false
|
!iv_use_default_transport TYPE abap_bool DEFAULT abap_false
|
||||||
RETURNING
|
RETURNING
|
||||||
VALUE(rv_transport) TYPE trkorr
|
VALUE(rv_transport) TYPE trkorr
|
||||||
RAISING
|
RAISING
|
||||||
zcx_abapgit_exception .
|
zcx_abapgit_exception .
|
||||||
METHODS choose_pr_popup
|
METHODS choose_pr_popup
|
||||||
|
|
Loading…
Reference in New Issue
Block a user