SAP中通过RFC读取结构内容
是否可以通过 RFC 从外部读取 SAP 结构的内容?我知道 RFC_READ_TABLE 可用于读取表数据,但是结构有类似的东西吗?
或者结构只是类型定义并且不包含任何数据?
Is it possible to read contents of SAP structures via RFCs from the outside? I know that RFC_READ_TABLE can be used to read table data, but is there something similar for structures?
Or are structures only type definitions and don't contain any data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,结构只是类型定义,不包含任何数据。
这就是为什么您有一个 RFC 从表(透明表、簇表等)中读取,而不是从结构或表类型中读取。
当然,RFC 可以接收并返回结构作为参数,但同样,这只是结构化类型定义。
Yes, structures are only type definitions and don't contain any data.
That's why you have a RFC to read from tables (transparent tables, cluster tables, etc) but not from structures or table types.
Of course, a RFC can receive and return a structure as parameter, but again, that's only a structured type definition.