You are on page 1of 2

3/3/2020 How to copy R/3 Standard Datasource_ITPUB博客

首页 博客 专栏 学院 社区 技术栈 搜索  发博

首页 > Linux操作系统 > Linux操作系统 > How to copy R/3 Standard Datasource

How to copy R/3 Standard Datasource


原创 Linux操作系统 作者:wangxuanping 时间:2012-06-29 16:29:01  1265  0

How to copy R/3 Standard Datasource wangxuanp

Here will take datsource 2LIS_03_BF as a sample ,we copy it to ZRLIS_03_BF.

注册时间:2009-09-02
1. Create a generic datasource
Enter T-CODE : RSO2 to create a generic datasource with extrac on by FM. The Func on Module and Extract.Struct. are the same as
博文量
the standard datasource 2LIS_03_BF.
34

2. Check generic datasource


Enter T-CODE : RSA2 to check datasource. In this condi on, the delta is not supported. 最新文章

3. Convert to delta-supported datasource 权限那点事1


Here are three important tables, the following program is used to copy the corresponding a ributes to ZRLIS_03_BF. setup table list

Table Descrip on LO数据更新方式


ROOSOURCE Table Header for SAP BW OLTP Sources
(Relevant From 2.0) 关于后勤数据源的一些
ROOSOURCET Texts for an OLTP Source
ROOSFIELD DataSource Fields (转)What is meant by P

ST13

REPORT ZBW_COPY_DATASOURCES . common transport erro


TABLES: roosource,
roosourcet, timestamp in data extra
roosfield.
SID Table
CONSTANTS: c_objvers_active LIKE roosource-objvers
VALUE 'A'. Oracle ORA错误码

PARAMETERS: s_datsrc LIKE rsiodynp4-oltpsource OBLIGATORY.


PARAMETERS: t_datsrc LIKE roosource-oltpsource OBLIGATORY.

*...Copy ROOSOURCE
SELECT SINGLE * FROM roosource
WHERE ltpsource = s_datsrc
AND objvers = c_objvers_active.
IF sy-subrc = 0.
MOVE t_datsrc TO roosource-oltpsource.
Modify roosource.
ELSE.
WRITE: / 'DataSource 0FI_GL_4 is not active.'.
WRITE: / 'Please use transaction RSA5 to activate.'.
EXIT.
ENDIF.

*...Copy ROOSOURCET
SELECT * FROM roosourcet
WHERE langu = sy-langu
AND ltpsource = s_datsrc
AND objvers = c_objvers_active.
MOVE t_datsrc TO roosourcet-oltpsource.
Modify roosourcet.
ENDSELECT.

*...Copy ROOSFIELD
SELECT * FROM roosfield
WHERE ltpsource = s_datsrc
AND objvers = c_objvers_active.
MOVE t_datsrc TO roosfield-oltpsource.
Modify roosfield.
ENDSELECT.

A er Running the program, and you can check datasource again.

blog.itpub.net/22464099/viewspace-734163/ 1/2
3/3/2020 How to copy R/3 Standard Datasource_ITPUB博客
When you go back to generic data RSO2, it shows like this.

4. Check Setup table


The copied datasource will share the same setup table with its original one.

5. Check Delta Queue


Do an ini al in BW on this datasource. Enter RSA7, you can see the 2RLIS_03_BF. Do some GR or GI change, and extracted
changed data to delta queue, unfortunately only the standard datasouce 2LIS_03_BF has delta data. So with respect to the logis c
data extrac on, I don’t think it is available for future project implementa on. According to the experience, the financial data
extrac on makes sense as it’s ‘push’.

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/22464099/viewspace-734163/,如需转载,请注明出处,否则将追究法律责任。

 点赞 0  收藏 0 分享到:

上一篇: 权限那点事1 下一篇: 没有了~

请登录后发表评论 登录

全部评论 1

wangxuanping 回复
2012-06-29 16:36:08

对于logistic 的数据抽取,该种方式只适合做full,FI 的没有问题,可以使用delta

支持我们 作者招募 用户协议 FAQ Contact Us


 
北京盛拓优讯信息技术有限公司. 版权所有 京ICP备09055130号-4 北京市公安局海淀分局网监中心备案编号:11010802021510

广播电视节目制作经营许可证(京) 字第1234号 中国互联网协会会员

blog.itpub.net/22464099/viewspace-734163/ 2/2

You might also like