How to delete BP (with vendor/customer role) completely in S/4HANA SARA归档

2023-10-16 20:10

本文主要是介绍How to delete BP (with vendor/customer role) completely in S/4HANA SARA归档,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

2640553 - How to archive BP (without customer/vendor role) by SARA

2491026 - Guided Answer - How to delete BP (with vendor/customer role) completely in S/4HANA

Guided Answersicon-default.png?t=N176https://ga.support.sap.com/dtp/viewer/#/tree/2584/actions/35515

归档客户供应商数据:

1.To archive the customer/vendor data, please execute SARA transaction and use the archiving object FI_ACCRECV (for customer) and FI_ACCPAYB (for vendor). 

Please refer to the following document about the process to archive customer/vendor data. 

  • Archiving Customer Master Data
  • Archiving Vendor Master Data 

If you encounter issues/errors when using archiving object FI_ACCRECV (for customer) and FI_ACCPAYB (for vendor), please report incident to component 

  • FI-AR-AR-E (for object FI_ACCRECV)
  • FI-AP-AP-E (for object FI_ACCPAYB)

After customer/vendor deletion, the entries in link table CVI_CUST_LINK or CVI_VEND_LINK will be deleted automatically.

归档BP数据:

To archive BP data, please execute SARA transaction and use archiving object CA_BUPA. 

Please refer to the following KBA for the step-by-step guidance. 

  • 2640553 - How to archive BP (without customer/vendor role) by SARA

Also, please refer to the following document for more information. 

  • Archiving and Deleting Business Partner Data

Please note BUPA_DEL is obsolete which is mentioned in note 2599676 , so DO NOT use BUPA_DEL to delete BP data.

这篇关于How to delete BP (with vendor/customer role) completely in S/4HANA SARA归档的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/220529

相关文章

数据库归档策略

数据库迁移策略 为备战双11,需要将数据库中的相关表(历史订单)进行归档,以便腾出更多的空间迎接订单的暴增。作者经过尝试,得出自认为最优的解决方案。下面给出数据库归档策略及示例代码。 现有条件: 1.现有两个数据库:db-A 以及 db-B; 2.两个库中有字段相同的表:tba(表中只有字段订单id–rx_id(long型) 有索引); 3.归档库的tba中还有17年整年的归档数据。 4.由于单

Qt: 详细理解delete与deleteLater (避免访问悬空指针导致程序异常终止)

前言 珍爱生命,远离悬空指针。 正文 delete 立即删除:调用 delete 后,对象会立即被销毁,其内存会立即被释放。调用顺序:对象的析构函数会被立即调用,销毁该对象及其子对象。无事件处理:如果在对象销毁过程中还涉及到信号和槽、事件处理等,直接 delete 可能会导致问题,尤其是在对象正在处理事件时。适用场景:适用于在确定对象已经不再被使用的情况下,并且不涉及异步处理或事件循环中的

MTK Android P/Q system/vendor/super快速打包

一、Android 新版本默认开启了动态分区,把system vendor  product等分区打包成一个super分区。这对于我们使用替换分区的方法来排查问题不是很方便,直接替换一个super也不知道到底是哪个部分导致的。所以我们需要自己制作super.img来缩小范围。下面讲讲如何快速生成system、vendor、super,以及vbmeta(校验image,不匹配可能会导致不开机) 二

data-role参数表

data-role参数表: page        页面容器,其内部的mobile元素将会继承这个容器上所设置的属性  header     页面标题容器,这个容器内部可以包含文字、返回按钮、功能按钮等元素 footer       页面页脚容器,这个容器内部也可以包含文字、返回按钮、功能按钮等元素 content     页面内容容器,这是一个很宽容的容器,内部可以包含标准的h

[LeetCode] 583. Delete Operation for Two Strings

题:https://leetcode.com/problems/delete-operation-for-two-strings/description/ 题目 Given two words word1 and word2, find the minimum number of steps required to make word1 and word2 the same, where in

[LeetCode] 740. Delete and Earn

题:https://leetcode.com/problems/delete-and-earn/ 题目大意 对于数组nums ,选取一个数 num,那么nums数组中 num - 1 与 num + 1 都会被删除,重复多次直到 nums 数组为空。求选取 num 的最大和。 解题思路 方法一 treeMap 将nums 中所有元素进行reduce操作,得到 TreeMap,其中 key

MySQL数据归档策略:实现定期数据维护与优化

在数据库管理中,数据归档是一个重要的环节,它不仅有助于维护数据的完整性和安全性,还可以优化数据库的性能。对于MySQL数据库,实现数据的定期归档可以通过多种方法,包括使用事件调度器、编写脚本或利用第三方工具。本文将详细介绍如何在MySQL中设置和执行定期归档任务,以确保数据的有效管理和维护。 1. 数据归档的重要性 数据归档是将不再频繁访问的数据从主数据库转移到另一个存储系统的过程。在MySQ

泛微OA主流程节点设置子流程归档后主流程自动跳转下一个节点,子流程已归档主流程不自动跳转

⭐️如果对你有用的话,希望可以点点赞,感谢了⭐️ 主流程节点已设置触发的子流程归档后自动跳转下个节点 当子流程归档后主流程不自动跳转下个节点 是什么问题? 主流程节点中存在必填字段中有空值,需要检查主流程节点排查把空值的必填字段设置成只读或者编辑 再干预一次子流程归档,主流程即跳转下个节点

Add, Search, Delete Node in BST.

Add Node, Search Node, Delete Node, 的基本操作,被问了两次了。写出来。 http://quiz.geeksforgeeks.org/binary-search-tree-set-1-search-and-insertion/   // add the node;public TreeNode addNode(TreeNode root, int val)

Delete the Middle Node of a Linked List

You are given the head of a linked list. Delete the middle node, and return the head of the modified linked list. The middle node of a linked list of size n is the ⌊n / 2⌋th node from the start using