如何使用BAPI BAPI_ALM_ORDER_MAINTAIN在订单上创建关注对象?

2020-09-12 05:46发布

点击此处---> 群内免费提供SAP练习系统(在群公告中)加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)除了创建订单所需的其他参数外,我...

         点击此处--->   EasySAP.com群内免费提供SAP练习系统(在群公告中)

加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)


除了创建订单所需的其他参数外,我正在尝试通过填充表参数" IT_METHODS"进行后续操作,从而使用BAPI_ALM_ORDER_MAINTAIN创建后续订单:

在lt_methods分配字段符号()的后面加上初始行。 -refnumber ='1'。
-method ='创建'。
-objecttype ='FOLLOWUPHDR'。
-objectkey =

新订单被创建,但是未链接到上级订单。

7条回答
xfwsx85
2020-09-12 05:56
 *方法
  is_methods-refnumber ='1'。
   is_methods-objecttype ='HEADER'。
   is_methods-method ='创建'。
   is_methods-objectkey ='%00000000001'。
   APPEND is_methods to it_methods。
   清除is_methods。

   is_methods-refnumber ='1'。
   is_methods-objecttype ='OPERATION'。
   is_methods-method ='创建'。
   is_methods-objectkey ='%000000000010010'。
   APPEND is_methods to it_methods。
   清除is_methods。

   is_methods-refnumber ='1'。
   is_methods-objecttype ='FOLLOWUPOPR'。
   is_methods-method ='创建'。
   is_methods-objectkey = p_ref &&'0010'。
   APPEND is_methods to it_methods。
   清除is_methods。

 is_methods-refnumber ='1'。
   is_methods-objecttype =''。
   is_methods-method ='保存'。
   is_methods-objectkey =''。
   APPEND is_methods to it_methods。
   清除is_methods。

 *标头和操作
 is_header-orderid ='%00000000001'。
   is_header-order_type = p_art。
     is_header-planplant ='1000'。
     is_header-plant ='1000'。
     is_header-equipment ='000000000010006924'。
     is_header-short_text ='Auftrag anlegen von FuBa。'。
     is_header-start_date = sy-datum。
     is_header-reference_order = p_ref。
    APPEND is_header到it_header。
   CLEAR is_header。

 is_header_up-orderid ='%00000000001'。
     is_header_up-plant ='X'。
     APPEND is_header_up至it_header_up。
     清除is_header_up。

 is_operation-activity ='0010'。
   is_operation-description ='更改此操作'。
   is_operation-control_key ='PM01'。
   APPEND is_operation至it_operation。

 通话功能'BAPI_ALM_ORDER_MAINTAIN'
     桌子
       it_methods = it_methods
       it_header = it_header
       it_header_up = it_header_up
 * it_header_srv = it_header_serv
 * it_header_srv_up =
 * it_userstatus = it_userstatus"不起作用
 * it_partner =
 * it_partner_up =
       it_operation = it_operation
       it_operation_up = it_operation_up
 * it_relation =
 * it_relation_up =
 * it_component =
 * it_component_up =
 * it_text = it_text
 * it_text_lines = it_text_line
 * extension_in =
       返回= it_return
       et_numbers = et_numbers。
 

一周热门 更多>

相关问答