Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | CLASS zcl_abapgit_gui_jumper DEFINITION PUBLIC FINAL CREATE PUBLIC. PUBLIC SECTION. INTERFACES zif_abapgit_gui_jumper. PROTECTED SECTION. PRIVATE SECTION. METHODS jump_tr IMPORTING !is_item TYPE zif_abapgit_definitions=>ty_item RETURNING VALUE(rv_exit) TYPE abap_bool. METHODS jump_wb IMPORTING !is_item TYPE zif_abapgit_definitions=>ty_item !iv_new_window TYPE abap_bool RETURNING VALUE(rv_exit) TYPE abap_bool. METHODS jump_wb_line IMPORTING !is_item TYPE zif_abapgit_definitions=>ty_item !iv_sub_obj_name TYPE zif_abapgit_definitions=>ty_item-obj_name !iv_sub_obj_type TYPE zif_abapgit_definitions=>ty_item-obj_type !iv_line_number TYPE i !iv_new_window TYPE abap_bool RETURNING VALUE(rv_exit) TYPE abap_bool. METHODS jump_bw IMPORTING !is_item TYPE zif_abapgit_definitions=>ty_item !iv_new_window TYPE abap_bool RETURNING VALUE(rv_exit) TYPE abap_bool. ENDCLASS. CLASS zcl_abapgit_gui_jumper IMPLEMENTATION. METHOD jump_bw. DATA: lv_exit TYPE abap_bool, lv_tlogo TYPE c LENGTH 4, "rstlogo lv_objnm TYPE c LENGTH 40. "rsawbnobjnm lv_tlogo = is_item-obj_type. lv_objnm = is_item-obj_name. TRY. CALL METHOD ('CL_RSAWBN_AWB')=>('IS_SUPPORTED_NAVIGATION') EXPORTING i_tlogo = lv_tlogo i_fcode = 'DISPLAY' IMPORTING re_is_supported_fcode = lv_exit. IF lv_exit = abap_false. RETURN. ENDIF. CATCH cx_root. " Not a BW system RETURN. ENDTRY. TRY. CALL METHOD ('CL_RSAWBN_AWB')=>('NAVIGATE_FROM_APPLICATION') EXPORTING i_tlogo = lv_tlogo i_objnm = lv_objnm i_new_mode = iv_new_window IMPORTING e_exit_own_application = lv_exit. CATCH cx_root. " Older release without i_new_mode CALL METHOD ('CL_RSAWBN_AWB')=>('NAVIGATE_FROM_APPLICATION') EXPORTING i_tlogo = lv_tlogo i_objnm = lv_objnm IMPORTING e_exit_own_application = lv_exit. ENDTRY. rv_exit = lv_exit. ENDMETHOD. METHOD jump_tr. DATA: lv_e071_object TYPE e071-object, lv_e071_obj_name TYPE e071-obj_name. lv_e071_object = is_item-obj_type. lv_e071_obj_name = is_item-obj_name. CALL FUNCTION 'TR_OBJECT_JUMP_TO_TOOL' EXPORTING iv_action = 'SHOW' iv_pgmid = 'R3TR' iv_object = lv_e071_object iv_obj_name = lv_e071_obj_name EXCEPTIONS jump_not_possible = 1 OTHERS = 2. rv_exit = boolc( sy-subrc = 0 ). ENDMETHOD. METHOD jump_wb. CALL FUNCTION 'RS_TOOL_ACCESS' EXPORTING operation = 'SHOW' object_name = is_item-obj_name object_type = is_item-obj_type devclass = is_item-devclass in_new_window = iv_new_window EXCEPTIONS not_executed = 1 invalid_object_type = 2 OTHERS = 3. rv_exit = boolc( sy-subrc = 0 ). ENDMETHOD. METHOD jump_wb_line. IF iv_line_number IS NOT INITIAL AND iv_sub_obj_type IS NOT INITIAL AND iv_sub_obj_name IS NOT INITIAL. " For the line navigation we have to supply the sub object type (iv_sub_obj_type). " If we use is_item-obj_type it navigates only to the object. CALL FUNCTION 'RS_TOOL_ACCESS' EXPORTING operation = 'SHOW' object_name = is_item-obj_name object_type = iv_sub_obj_type devclass = is_item-devclass include = iv_sub_obj_name position = iv_line_number in_new_window = iv_new_window EXCEPTIONS not_executed = 1 invalid_object_type = 2 OTHERS = 3. rv_exit = boolc( sy-subrc = 0 ). ENDIF. ENDMETHOD. METHOD zif_abapgit_gui_jumper~jump. " WebGUI cannot open windows or ADT IF zcl_abapgit_ui_factory=>get_frontend_services( )->is_webgui( ) = abap_true. zcx_abapgit_exception=>raise( |Jump not possible in WebGUI| ). ENDIF. " Try all generic jump options " 1) ADT Jump rv_exit = zif_abapgit_gui_jumper~jump_adt( is_item = is_item iv_sub_obj_name = is_sub_item-obj_name iv_line_number = iv_line_number ). IF rv_exit = abap_true. RETURN. ENDIF. " 2) WB Jump with Line Number rv_exit = jump_wb_line( is_item = is_item iv_sub_obj_name = is_sub_item-obj_name iv_sub_obj_type = is_sub_item-obj_type iv_line_number = iv_line_number iv_new_window = iv_new_window ). IF rv_exit = abap_true. RETURN. ENDIF. " 3) WB Jump without Line Number rv_exit = jump_wb( is_item = is_item iv_new_window = iv_new_window ). IF rv_exit = abap_true. RETURN. ENDIF. " 4) Transport Tool Jump rv_exit = jump_tr( is_item ). IF rv_exit = abap_true. RETURN. ENDIF. " 5) BW Jump rv_exit = jump_bw( is_item = is_item iv_new_window = iv_new_window ). ENDMETHOD. METHOD zif_abapgit_gui_jumper~jump_abapgit. DATA lt_spagpa TYPE STANDARD TABLE OF rfc_spagpa. DATA ls_spagpa LIKE LINE OF lt_spagpa. DATA lv_save_sy_langu TYPE sy-langu. DATA lv_subrc TYPE syst-subrc. DATA lv_tcode TYPE tcode. DATA lv_langu_text TYPE string. DATA lv_msg TYPE c LENGTH 200. " https://blogs.sap.com/2017/01/13/logon-language-sy-langu-and-rfc/ lv_tcode = zcl_abapgit_services_abapgit=>get_abapgit_tcode( ). lv_save_sy_langu = sy-langu. SET LOCALE LANGUAGE iv_language. ls_spagpa-parid = zif_abapgit_definitions=>c_spagpa_param_repo_key. ls_spagpa-parval = iv_key. INSERT ls_spagpa INTO TABLE lt_spagpa. CALL FUNCTION 'ABAP4_CALL_TRANSACTION' DESTINATION 'NONE' STARTING NEW TASK 'ABAPGIT' EXPORTING tcode = lv_tcode TABLES spagpa_tab = lt_spagpa EXCEPTIONS communication_failure = 1 MESSAGE lv_msg system_failure = 2 MESSAGE lv_msg OTHERS = 3. lv_subrc = sy-subrc. SET LOCALE LANGUAGE lv_save_sy_langu. CASE lv_subrc. WHEN 1. lv_msg = |Communication error { lv_msg }|. WHEN 2. SELECT SINGLE sptxt FROM t002t INTO lv_langu_text WHERE spras = sy-langu AND sprsl = iv_language. IF sy-subrc <> 0. lv_langu_text = iv_language. ENDIF. lv_msg = |Language { lv_langu_text } ({ zcl_abapgit_convert=>language_sap1_to_sap2( iv_language ) })| && | is not installed|. WHEN 3. lv_msg = |{ lv_subrc }|. ENDCASE. IF lv_msg IS INITIAL. MESSAGE 'Repository opened in a new window' TYPE 'S'. ELSE. zcx_abapgit_exception=>raise( |Error starting transaction { lv_tcode }: { lv_msg }| ). ENDIF. ENDMETHOD. METHOD zif_abapgit_gui_jumper~jump_adt. " Open object in ADT (if enabled) DATA lv_adt_jump_enabled TYPE abap_bool. lv_adt_jump_enabled = zcl_abapgit_persist_factory=>get_settings( )->read( )->get_adt_jump_enabled( ). IF lv_adt_jump_enabled = abap_true. TRY. zcl_abapgit_adt_link=>jump( iv_obj_name = is_item-obj_name iv_obj_type = is_item-obj_type iv_sub_obj_name = iv_sub_obj_name iv_line_number = iv_line_number ). rv_exit = abap_true. CATCH zcx_abapgit_exception ##NO_HANDLER. " Use fallback ENDTRY. ENDIF. ENDMETHOD. METHOD zif_abapgit_gui_jumper~jump_batch_input. DATA lv_msg TYPE c LENGTH 80. IF iv_new_window = abap_true. CALL FUNCTION 'ABAP4_CALL_TRANSACTION' STARTING NEW TASK 'GIT' EXPORTING tcode = iv_tcode mode_val = 'E' TABLES using_tab = it_bdcdata EXCEPTIONS system_failure = 1 MESSAGE lv_msg communication_failure = 2 MESSAGE lv_msg resource_failure = 3 OTHERS = 4. ELSE. CALL FUNCTION 'ABAP4_CALL_TRANSACTION' EXPORTING tcode = iv_tcode mode_val = 'E' TABLES using_tab = it_bdcdata EXCEPTIONS OTHERS = 4. ENDIF. CASE sy-subrc. WHEN 1 OR 2. zcx_abapgit_exception=>raise( |Batch input error for transaction { iv_tcode }: { lv_msg }| ). WHEN 3 OR 4. zcx_abapgit_exception=>raise( |Batch input error for transaction { iv_tcode }| ). ENDCASE. ENDMETHOD. ENDCLASS. |