如何向SAP业务合作伙伴添加主页URL?
我正在开发一个在 SAP IS-U 系统中创建业务合作伙伴的程序。为了创建业务合作伙伴,我使用功能模块 BAPI_ISUPARTNER_CREATEFROMDATA
I还必须添加主页 URL,知道该怎么做吗?
谢谢!
I'm working on a program witch creates Business Partners in SAP IS-U system. For the creation of business partners I use function module BAPI_ISUPARTNER_CREATEFROMDATA
I have to add homepage URL too, any idea how to do it?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
主页 URL 是业务伙伴通信数据的一部分,该通信数据可以是地址数据的一部分,也可以是与地址无关的通信的一部分。
查看功能模块 BAPI_BUPA_ADDRESS_ADD/BAPI_BUPA_ADDRESS_CHANGE 以使用地址数据(表参数 BAPIADURI)更新它,或查看功能模块 BAPI_BUPA_CREATE_FROM_DATA/BAPI_BUPA_CENTRAL_CHANGE 以进行与地址无关的通信,表参数 URIADDRESSDATANONADDRESS。
不幸的是,我无法访问函数 BAPI_ISUPARTNER_CREATEFROMDATA 来查看它是否具有类似的参数。
是否必须将其存储为地址相关数据或独立数据是一项业务决策。
作为替代方案,您应该查看是否可以通过 BOL 更新/创建 BP。
The homepage URL is part of the business partner's communication data, which can either be part of the address data or address-independent communication.
Look at function modules BAPI_BUPA_ADDRESS_ADD/BAPI_BUPA_ADDRESS_CHANGE for updating it with address data (table parameter BAPIADURI) or function modules BAPI_BUPA_CREATE_FROM_DATA/BAPI_BUPA_CENTRAL_CHANGE for address-independent communication, table parameter URIADDRESSDATANONADDRESS.
Unfortunately I do not have access to function BAPI_ISUPARTNER_CREATEFROMDATA to see if it has similar parameters.
Whether or not it must be stored as address-dependent or independent data is a business decision.
As an alternative, you should see whether you can update/create BPs via the BOL.