开发者

How to search for available RFC function modules and tables

I've got to admit that I'm not an expert on SAP R/3 programming, so this is more of a basic questi开发者_运维百科on on that matter.

Is there any way to get a list of accessible RFC modules and/or tables on a SAP system?

On many examples on the internet I've found one RFC module that seems to be available on every SAP system ("SD_RFC_CUSTOMER_GET") and I wonder if there are any more of these standard RFC modules that I can use. I can easily query the SAP system for all SAP-Queries that are available but I just cannot find a way to do this with RFC modules or tables. I cannot even find a list of these RFC modules after searching on Google for hours...

so am I missing something or is this just impossible?

Thanks for any help in advance.


For "official" RFC modules, use the transaction BAPI. These modules are well-documented and released for customer and partner use - meaning that you'll get support if something goes wrong. For everything else, you're free to use whatever you find, but don't bother to ask SAP for support, they won't help you.

If you want to look for stuff inside the SAP system, use transaction SE80 (choose "Repository Infosystem" in the left section). Note that on many selection screens, you can expand the parameters. This will show a parameter to search for RFC modules only.

As for tables - you might be interested in the RPY_* function modules as well as the (in)famous RFC_READ_TABLE...


with transaction SE84 you can query for RFC modules/programs/... by their name, description and so on. for database tables you can for example use the transaction SE11.


One trick I found quick useful is to search for functions with sorting on the number of times the function is used in the SAP code. Functions used more times are more likely to be more reusable and also more likely to have less bugs. Check this post on how to search that way: http://apolemia.blogspot.com/2010/02/finding-functions-in-sap.html


RFC_GROUP_SEARCH to search available RFC groups. RFC_FUNCTION_SEARCH to search available RFCs, with optional RFC group filter. SWO_QUERY_API_METHODS to query BAPI business objects and associated methods.

Try them out in SAP Logon GUI using SE37 Function Builder, assuming you will next want to program them using the SAP .NET Connector. Note that the Function Builder itself has RFC function search screens built-in.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜