Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Function Group and Function

Former Member
0 Likes
446

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

2 REPLIES 2
Read only

RamanKorrapati
Active Contributor
0 Likes
417

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

Read only

Former Member
0 Likes
417

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