cancel
Showing results for 
Search instead for 
Did you mean: 

how to check if a function module is client dependent

Former Member
0 Kudos

Hi

I am trying to find a way to know if an rfc enabled function module is client dependent or not.

For example, the function module SUSR_LOGIN_CHECK_RFC is client dependent.

One way could be by checking the presence of MANDT field in the ABAP code (?), but its time consuming.

I used to code SE37 and SE80 to check for client dependency, but cant find a fixed field or indicator for it.

any compact or good way to know for sure?

Accepted Solutions (1)

Accepted Solutions (1)

pranaydubey
Explorer
0 Kudos

Hi Michel,

You can use RS_ABAP_SOURCE_SCAN to find if your program uses the field MANDT.
If your program uses MANDT then you know that it is client dependent.
Hope this helps.

Edit: Or you could try using the Where Used List.

Reward points if helpful! 


Regards,

Pranay

Message was edited by: Pranay Dubey

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Michel,

I don't think there is a way to check client dependency for FM . But yes , you can check to MANDT column exist in tables or in program

For RFC enabled functional module , one link states scenario , not sure if it is helpful for you.

Please check once

Function module client dependent | SCN

Br, Vaibhav