2015 Nov 25 2:11 PM
Hello experts,
maybe i have "special" question. I have the function group with several functions. One function returns ( check ) error message "type XYZ is unknown". To solve this error i have to transport missing type. it is clear, but i would like to leave this function without any changes, i would like to set e.g. into inactive, but still is there check over this function.
Question : is any way to have functions with some "e.g. syntax error" and some function without error in one function group ? I assume that i cannot modify include L???????UXX to delete some functions.
Thanks in advance
Martin
2015 Nov 25 2:51 PM
Hi Martin,
Am not sure whether is belongs to BW or ABAP.
if its belongs to ABAP please take abap expert help other wise repost issue at abap forum to get more help than here.
Thanks
2015 Nov 25 6:54 PM
Hello Martin,
This is an ABAP question.
A function group is compiled(syntax checked) as one whole program; as function modules are actually includes in the group.
Hence you can't have one function module active and other inactive in a function group.
Your best bet would be to comment out this whole function module code(which is wrong) for time being, so function group is activated.
Regards