mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 11:46:38 +08:00
remove use of PGMID
This commit is contained in:
parent
12d6b480b1
commit
deddd63578
|
@ -225,8 +225,8 @@
|
||||||
"^if_adt_lock_handle$",
|
"^if_adt_lock_handle$",
|
||||||
"^if_aff_",
|
"^if_aff_",
|
||||||
"^if_satc_ci_variant_access$",
|
"^if_satc_ci_variant_access$",
|
||||||
"^if_saunit_internal_result$",
|
|
||||||
"^if_saunit_internal_result_type$",
|
"^if_saunit_internal_result_type$",
|
||||||
|
"^if_saunit_internal_result$",
|
||||||
"^if_srvd_types$",
|
"^if_srvd_types$",
|
||||||
"^if_wb_adt_plugin_resource_co$",
|
"^if_wb_adt_plugin_resource_co$",
|
||||||
"^if_wb_object_data_selection_co$",
|
"^if_wb_object_data_selection_co$",
|
||||||
|
@ -234,6 +234,7 @@
|
||||||
"^if_xco_",
|
"^if_xco_",
|
||||||
"^int4$",
|
"^int4$",
|
||||||
"^numc2$",
|
"^numc2$",
|
||||||
|
"^pgmid$",
|
||||||
"^sabp_t_tadir_keys$",
|
"^sabp_t_tadir_keys$",
|
||||||
"^sap_bool$",
|
"^sap_bool$",
|
||||||
"^srcsystem$",
|
"^srcsystem$",
|
||||||
|
|
|
@ -21,7 +21,7 @@ CLASS zcl_abapgit_cts_api DEFINITION
|
||||||
"! @raising zcx_abapgit_exception | Object is not locked in a transport
|
"! @raising zcx_abapgit_exception | Object is not locked in a transport
|
||||||
METHODS get_current_transport_for_obj
|
METHODS get_current_transport_for_obj
|
||||||
IMPORTING
|
IMPORTING
|
||||||
!iv_program_id TYPE pgmid DEFAULT 'R3TR'
|
!iv_program_id TYPE tadir-pgmid DEFAULT 'R3TR'
|
||||||
!iv_object_type TYPE trobjtype
|
!iv_object_type TYPE trobjtype
|
||||||
!iv_object_name TYPE sobj_name
|
!iv_object_name TYPE sobj_name
|
||||||
RETURNING
|
RETURNING
|
||||||
|
@ -36,7 +36,7 @@ CLASS zcl_abapgit_cts_api DEFINITION
|
||||||
"! @raising zcx_abapgit_exception | Object is not locked in a transport
|
"! @raising zcx_abapgit_exception | Object is not locked in a transport
|
||||||
METHODS get_current_transport_from_db
|
METHODS get_current_transport_from_db
|
||||||
IMPORTING
|
IMPORTING
|
||||||
!iv_program_id TYPE pgmid DEFAULT 'R3TR'
|
!iv_program_id TYPE tadir-pgmid DEFAULT 'R3TR'
|
||||||
!iv_object_type TYPE trobjtype
|
!iv_object_type TYPE trobjtype
|
||||||
!iv_object_name TYPE sobj_name
|
!iv_object_name TYPE sobj_name
|
||||||
RETURNING
|
RETURNING
|
||||||
|
@ -51,7 +51,7 @@ CLASS zcl_abapgit_cts_api DEFINITION
|
||||||
"! @raising zcx_abapgit_exception | Object type is not lockable
|
"! @raising zcx_abapgit_exception | Object type is not lockable
|
||||||
METHODS is_object_locked_in_transport
|
METHODS is_object_locked_in_transport
|
||||||
IMPORTING
|
IMPORTING
|
||||||
!iv_program_id TYPE pgmid DEFAULT 'R3TR'
|
!iv_program_id TYPE tadir-pgmid DEFAULT 'R3TR'
|
||||||
!iv_object_type TYPE trobjtype
|
!iv_object_type TYPE trobjtype
|
||||||
!iv_object_name TYPE sobj_name
|
!iv_object_name TYPE sobj_name
|
||||||
RETURNING
|
RETURNING
|
||||||
|
@ -64,7 +64,7 @@ CLASS zcl_abapgit_cts_api DEFINITION
|
||||||
"! @parameter rv_lockable | Lockable
|
"! @parameter rv_lockable | Lockable
|
||||||
METHODS is_object_type_lockable
|
METHODS is_object_type_lockable
|
||||||
IMPORTING
|
IMPORTING
|
||||||
!iv_program_id TYPE pgmid DEFAULT 'R3TR'
|
!iv_program_id TYPE tadir-pgmid DEFAULT 'R3TR'
|
||||||
!iv_object_type TYPE trobjtype
|
!iv_object_type TYPE trobjtype
|
||||||
RETURNING
|
RETURNING
|
||||||
VALUE(rv_lockable) TYPE abap_bool .
|
VALUE(rv_lockable) TYPE abap_bool .
|
||||||
|
@ -74,7 +74,7 @@ CLASS zcl_abapgit_cts_api DEFINITION
|
||||||
"! @parameter rv_transportable | Transportable
|
"! @parameter rv_transportable | Transportable
|
||||||
METHODS is_object_type_transportable
|
METHODS is_object_type_transportable
|
||||||
IMPORTING
|
IMPORTING
|
||||||
!iv_program_id TYPE pgmid DEFAULT 'R3TR'
|
!iv_program_id TYPE tadir-pgmid DEFAULT 'R3TR'
|
||||||
!iv_object_type TYPE trobjtype
|
!iv_object_type TYPE trobjtype
|
||||||
RETURNING
|
RETURNING
|
||||||
VALUE(rv_transportable) TYPE abap_bool .
|
VALUE(rv_transportable) TYPE abap_bool .
|
||||||
|
|
|
@ -6,7 +6,7 @@ CLASS zcl_abapgit_object_enhs_hook_d DEFINITION PUBLIC.
|
||||||
PROTECTED SECTION.
|
PROTECTED SECTION.
|
||||||
PRIVATE SECTION.
|
PRIVATE SECTION.
|
||||||
TYPES: BEGIN OF ty_hook_defifnition,
|
TYPES: BEGIN OF ty_hook_defifnition,
|
||||||
pgmid TYPE pgmid,
|
pgmid TYPE tadir-pgmid,
|
||||||
obj_name TYPE trobj_name,
|
obj_name TYPE trobj_name,
|
||||||
obj_type TYPE trobjtype,
|
obj_type TYPE trobjtype,
|
||||||
main_type TYPE trobjtype,
|
main_type TYPE trobjtype,
|
||||||
|
|
|
@ -17,7 +17,7 @@ CLASS zcl_abapgit_sotr_handler DEFINITION
|
||||||
|
|
||||||
CLASS-METHODS read_sotr
|
CLASS-METHODS read_sotr
|
||||||
IMPORTING
|
IMPORTING
|
||||||
!iv_pgmid TYPE pgmid DEFAULT 'R3TR'
|
!iv_pgmid TYPE tadir-pgmid DEFAULT 'R3TR'
|
||||||
!iv_object TYPE trobjtype
|
!iv_object TYPE trobjtype
|
||||||
!iv_obj_name TYPE csequence
|
!iv_obj_name TYPE csequence
|
||||||
!io_xml TYPE REF TO zif_abapgit_xml_output OPTIONAL
|
!io_xml TYPE REF TO zif_abapgit_xml_output OPTIONAL
|
||||||
|
@ -45,7 +45,7 @@ CLASS zcl_abapgit_sotr_handler DEFINITION
|
||||||
|
|
||||||
CLASS-METHODS delete_sotr
|
CLASS-METHODS delete_sotr
|
||||||
IMPORTING
|
IMPORTING
|
||||||
!iv_pgmid TYPE pgmid DEFAULT 'R3TR'
|
!iv_pgmid TYPE tadir-pgmid DEFAULT 'R3TR'
|
||||||
!iv_object TYPE trobjtype
|
!iv_object TYPE trobjtype
|
||||||
!iv_obj_name TYPE csequence
|
!iv_obj_name TYPE csequence
|
||||||
RAISING
|
RAISING
|
||||||
|
@ -68,7 +68,7 @@ CLASS zcl_abapgit_sotr_handler DEFINITION
|
||||||
|
|
||||||
CLASS-METHODS get_sotr_usage
|
CLASS-METHODS get_sotr_usage
|
||||||
IMPORTING
|
IMPORTING
|
||||||
!iv_pgmid TYPE pgmid
|
!iv_pgmid TYPE tadir-pgmid
|
||||||
!iv_object TYPE trobjtype
|
!iv_object TYPE trobjtype
|
||||||
!iv_obj_name TYPE csequence
|
!iv_obj_name TYPE csequence
|
||||||
RETURNING
|
RETURNING
|
||||||
|
|
|
@ -17,7 +17,7 @@ CLASS zcl_abapgit_sots_handler DEFINITION
|
||||||
|
|
||||||
CLASS-METHODS read_sots
|
CLASS-METHODS read_sots
|
||||||
IMPORTING
|
IMPORTING
|
||||||
!iv_pgmid TYPE pgmid DEFAULT 'R3TR'
|
!iv_pgmid TYPE tadir-pgmid DEFAULT 'R3TR'
|
||||||
!iv_object TYPE trobjtype
|
!iv_object TYPE trobjtype
|
||||||
!iv_obj_name TYPE csequence
|
!iv_obj_name TYPE csequence
|
||||||
!io_xml TYPE REF TO zif_abapgit_xml_output OPTIONAL
|
!io_xml TYPE REF TO zif_abapgit_xml_output OPTIONAL
|
||||||
|
@ -45,7 +45,7 @@ CLASS zcl_abapgit_sots_handler DEFINITION
|
||||||
|
|
||||||
CLASS-METHODS delete_sots
|
CLASS-METHODS delete_sots
|
||||||
IMPORTING
|
IMPORTING
|
||||||
!iv_pgmid TYPE pgmid DEFAULT 'R3TR'
|
!iv_pgmid TYPE tadir-pgmid DEFAULT 'R3TR'
|
||||||
!iv_object TYPE trobjtype
|
!iv_object TYPE trobjtype
|
||||||
!iv_obj_name TYPE csequence
|
!iv_obj_name TYPE csequence
|
||||||
RAISING
|
RAISING
|
||||||
|
@ -55,7 +55,7 @@ CLASS zcl_abapgit_sots_handler DEFINITION
|
||||||
|
|
||||||
CLASS-METHODS get_sots_usage
|
CLASS-METHODS get_sots_usage
|
||||||
IMPORTING
|
IMPORTING
|
||||||
!iv_pgmid TYPE pgmid
|
!iv_pgmid TYPE tadir-pgmid
|
||||||
!iv_object TYPE trobjtype
|
!iv_object TYPE trobjtype
|
||||||
!iv_obj_name TYPE csequence
|
!iv_obj_name TYPE csequence
|
||||||
RETURNING
|
RETURNING
|
||||||
|
|
Loading…
Reference in New Issue
Block a user