使用哪些函数来修改 ABAP DDIC 对象?
使用内置语句创建 ABAP 程序对象相当容易。但是字典对象呢?与 DDIC 相关的功能组有很多,但是该使用哪些呢?或者也许是上课?
It is fairly easy to create ABAP program objects using the built-in statements. But what about dictionary objects? There are a lot of function groups related to DDIC, but which ones to use? Or classes perhaps?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
检查功能模块 RPY_* - 它们相当完整和可靠(并且支持 RFC:-))。
Check the function modules RPY_* - they are rather complete and reliable (and RFC-enabled :-)).
您可以使用的一类是 CL_REBF_DDIC_TABL。使用静态方法 PUT_COMPLETE。对于功能模块,请查看 DD_CREATE_TABLE,但我以前从未使用过它。
One class you can use is CL_REBF_DDIC_TABL. Use the static method PUT_COMPLETE. For a function module have a look at DD_CREATE_TABLE but I've never used this before.
您可能需要检查要创建的特定 DDIC 元素,并查看 SAPlink http: //code.google.com/p/saplink/ 或 ZAPlink http://code. google.com/p/zaplink/。
两者都支持各种元素并展示了创建它们的函数的用法。
You might want to check the specific DDIC elements you want to create and have a look at the Plugins of SAPlink http://code.google.com/p/saplink/ or ZAPlink http://code.google.com/p/zaplink/.
Both support a variety of elements and show the usage of functions to create them.