Transaction Handling
    If you want to perform a consistent transaction that contains changes to more than one business object ,you have to specify the start and end of the transaction using  the company object methods :start transaction and end transaction (endtype as SAPbobsCOM.BoWTransOpt)
    If you call start transaction ,all business object changes,which are issued after this call and before  a following call of the method end transaction,belong to one logical unit of work.
    EndTransaction(endtype as SAPbobsCOM.BoWTransOpt)
    Possible value of the endtype
       SAPbobsCOM.wf_commit: changes should be committed;
       SAPbobsCOM.wf_rollback: all changes contained in the transaction will be discarded

相关文章:

  • 2021-11-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-04
  • 2021-09-26
  • 2021-05-03
猜你喜欢
  • 2021-06-03
  • 2021-07-24
  • 2021-11-24
  • 2022-02-07
  • 2021-06-25
  • 2022-02-09
  • 2021-12-02
相关资源
相似解决方案