BCS与BW主数据及层级结构同步

Manual Data Synchronization

Use

Applications that use the Financials Basis services, store their data in application-specific, local (partially dynamically generated) tables and in InfoObjects of SAP Business Information Warehouse (SAP BW). To prevent inconsistencies, the data must be identical in both storage locations. The necessary synchronization of the datasets normally takes place automatically by specialized services of the Master Data Framework.

The automatic data synchronization is successful only if the following prerequisites have been fulfilled:

  • You have defined a leading fiscal year variant (in the Implementation Guide for Strategic Enterprise Management/Business Analytics under  Financials Basis Master Data Framework Periodicity Specify Leading Fiscal Year Variant for Whole Client  ).
  • You have activated automatic data synchronization with SAP BW in your application.

     Example

    In SEM-BCS you activate automatic synchronization in the Tools view of the Consolidation Workbench under  Transport System Settings Replication in SAP BW  .

However, in certain constellations, the datasets can differ. These constellations are usually incorrect statuses that are caused by errors in Customizing, operator‘s errors, or errors in system communication. You implement the function described here to restore the consistency of data at both storage locations.

Integration

You can use the data synchronization for the following applications:

  • Accounting Engine
  • Bank Analyzer
  • Master Data Framework
  • Strategic Enterprise Management – Business Consolidation (SEM-BCS): Data basis and source data basis
  • Strategic Enterprise Management -– Business Planning and Simulation (SEM-BPS)

Features

You can perform manual data synchronization for master data and for hierarchies:

Synchronization of Master Data

The following programs are available:

  • UGMD_BATCH_SYNC : This program replicates local data (master data and hierarchies) in SAP BW according to your selection settings. You can choose between two synchronization procedures:

    • Add-only synchronization : Only data is transferred to SAP BW that exists there in another form than in the local system or does not exist at all. Any other data within the selection in SAP BW remains unchanged.
    • Full synchronization : The data contained in the selection is deleted in SAP BW. The program then writes the data of the local system into SAP BW.

      You can save frequently-used selections as layouts and schedule the program as a one-time background job or as a regularly repeated background job.

  • UGMDSYNC : This program replicates local data (master data, texts, and attributes, but no hierarchies) in SAP BW. You can also transfer BW data into the local system. For each selected object the program shows you the differences between the local version and the version in SAP BW.

    Your chosen selection settings are only used as a preselection for the quantity of data to be synchronized. You determine interactively which data you actually want to replicate from this quantity.

Both programs collect system messages generated during processing in a message log that you can analyze once processing has been completed.

Synchronization of Hierarchies

The following programs are available:

  • UGMD_BATCH_SYNC : See above under "Synchronization of Master Data“.
  • UGMDSY20 : This program replicates local hierarchies in SAP BW, however, only hierarchies of a combination of version and period that you have selected are taken into account. The field selection is limited to fields that are defined for a hierarchy.

    Your chosen selection settings are only used as a preselection for the quantity of data to be synchronized. You determine interactively which data you actually want to replicate from this quantity.

     Caution

    This program is not easy to use and therefore error-prone. We recommend that you do not use this program. Use UGMD_BATCH_SYNC instead.

Both programs collect system messages generated during processing in a message log that you can analyze once processing has been completed.

原文地址:http://help.sap.com/saphelp_erp60_sp/helpdata/en/54/c1524234803830e10000000a155106/frameset.htm

时间: 2024-10-13 00:05:49

BCS与BW主数据及层级结构同步的相关文章

Navicat生成更新数据库结构同步的数据库

1.打开Navicat for MySQL ,找到工具->结构同步. 2.选择目标数据库和源数据库,此时下面就会生成一系列结构同步SQL,于是我们进行第三步 比如你现有一个data, 要把data的结构复制到一个新的test. a.先建好test. b.然后,源数据库,填data.目标数据库,填test 3.然后点 比对. 4.在查询勾选框中能看到比对情况,再运行查询.结构同步完成. 5.如果数据也要同步,就点,数据同步.在同步前,可以预览. 挺简单的. 这里有图示. http://jingya

在iOS中获取UIView的所有层级结构 相关

在iOS中获取UIView的所有层级结构 应用场景 在实际 iOS 开发中,很多时候都需要知道某个 UI 控件中包含哪些子控件,并且分清楚它们的层级结构和自个的 frame 以及 bounds ,以便我们完成复杂的 UI 布局,下面的代码就能很方便的获取某个 UI 控件的所有的层级结构,我们可以用它计算,然后把结果写入到本地磁盘,导出成XML文件,这样我们就可以很直观的看出它内部的细节. /** * 返回传入veiw的所有层级结构 * * @param view 需要获取层级结构的view *

根文件系统的层级结构

文件系统的层级结构 FHS:Filesystem Hierarchy Standard(文件系统层次化标准) 目录 / 根目录 /bin: 所有用户可用的基本命令程序文件: /sbin:供系统管理使用的工具程序 /boot:引导加载器必须用到的各静态文件:例如:kernel   时常是一个单独的分区 /dev: 存储特殊文件或设备文件: 设备有两种类型:字符设备(线性设备),块设备(随机设备): 硬盘,分区,键盘,鼠标,USB,tty等所有的设备文件都放在这个目录. /etc:系统程序的配置文件

iOS的系统层级结构和相关的框架

一,概述 iOS的系统架构分为四个层次:核心操作系统层(Core OS layer).核心服务层(Core Services layer).媒体层(Media layer)和可触摸层(Cocoa Touch layer).理解iOS的系统构架,对我们日常开发有很大帮助.其实iOS是基于UNIX的,所以我们完全可以相信这个操作系统,要知道从系统的稳定性上来说它要比其他操作系统的产品好很多. 二, IOS操作系统的层次结构及相关框架 1.Core OS 核心层:包含Accelerate Framew

遍历文档内容,得到HTML层级结构

嗯..没发现有写好的,那就自己写一个,刚好自己今天看了DOM操作的知识点,巩固一下. HTML可以表示为一个层次结构,生成的DOM Tree 就是类似与数据结构中的树一样,每个DOM节点都有它的childNodes(动态的类数组对象), parentNode(指向父节点),nextSibling(下一个兄弟节点),previousSibling(上一个兄弟节点),还有辅助类的firstChild和lastChild. 因为不同浏览器中对节点的遍历处理的不一样,比如: <ul id = "m

iOS中UITabelView的层级结构

在iOS7以前,iOS中UITabelView的层级结构 IOS6:(your view)-> UITableViewContentView-> UITableViewCell-> UITableView 在iOS7以后,iOS中UITabelView的层级结构 IOS7:(your view)-> UITableViewCellContentView-> UITableViewCellScrollView-> UITableViewCell-> UITableV

使用Accessibility Inspector来检测IOS APP中控件元素的层级结构

Accessibility Inspector是xcode中自带的一个检测工具, 可以非常方便快速地获取IOS APP中各个控件元素的层级结构. 利用该层级结构, 我们可以在UIAutomation中实现相应的自动化了. 在Xcode->Open Developer Tool->Accessibility Inspector打开该工具, 该工具需要在Mac的安全性与隐私里边设置辅助功能的权限, 即允许该工具控制电脑. 打开后,会发现该检测工具会一直悬浮在屏幕的最前端, 且能够检测到电脑屏幕上的

iOS 在控制台console lldb 输出某个view 的层级结构

在控制台 LLDB   环境中 po  [self.view recursiveDescription] 就可以输出 该 view的层级结构 <UILayoutContainerView: 0x7ffc8a5dae30; frame = (0 0; 375 667); autoresize = W+H; gestureRecognizers = <NSArray: 0x7ffc90f07270>; layer = <CALayer: 0x7ffc90f15e10>> |

cocos2d-x 3.0 Node与Node层级结构

节点解释: 节点是场景图的基本元素.场景图的基本元素必须是节点对象或者是节点对象的子类. 其中主要可以看到Layer.MenuItem.Scene.Sprite.TMXTiledMap(解析and渲染TMX地图).ParticleSystem(粒子系统基类)等等 Node是这些类的根类 节点的基本操作 创建节点   Node* childNode = Node::Create(); 增加新的子节点   node->addChild(childNode,z深度,tag); 查找子节点   Node