mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-02 13:03:01 +08:00
correct handling for t00 generic include in fgroup
This commit is contained in:
parent
2d977ac6d6
commit
81adacb10e
|
@ -464,7 +464,15 @@ CLASS lcl_object_fugr IMPLEMENTATION.
|
||||||
|
|
||||||
* handle generated maintenance views
|
* handle generated maintenance views
|
||||||
APPEND INITIAL LINE TO rt_includes ASSIGNING <lv_include>.
|
APPEND INITIAL LINE TO rt_includes ASSIGNING <lv_include>.
|
||||||
<lv_include> = |L{ ms_item-obj_name }T00|.
|
if ms_item-obj_name(1) <> '/'.
|
||||||
|
"FGroup name does not contain a namespace
|
||||||
|
<lv_include> = |L{ ms_item-obj_name }T00|.
|
||||||
|
else.
|
||||||
|
"FGroup name contains a namespace
|
||||||
|
lv_offset_ns = find( val = ms_item-obj_name+1 sub = '/' ).
|
||||||
|
lv_offset_ns = lv_offset_ns + 2.
|
||||||
|
<lv_include> = |{ ms_item-obj_name(lv_offset_ns) }L{ ms_item-obj_name+lv_offset_ns }T00|.
|
||||||
|
endif.
|
||||||
|
|
||||||
IF lines( rt_includes ) > 0.
|
IF lines( rt_includes ) > 0.
|
||||||
SELECT progname cnam FROM reposrc
|
SELECT progname cnam FROM reposrc
|
||||||
|
|
Loading…
Reference in New Issue
Block a user