FSG报表定义导入
Copying Report Objects From Another Database (FSG Transfer Program)
Run the FSG Transfer program to copy report objects from one General Ledger database to another. You can copy row sets, column sets, reports, report sets, content sets, row orders, display sets, and display groups.
For example, when you implement General Ledger, you might also define all of your FSG objects in a test database. Once your production database is fully functional, you can easily copy the FSG objects from your test database by using the FSG Transfer program.
Prerequisites

- You or your System Administrator must define database links.

- The chart of accounts in your source database must be identical to the chart of accounts in your target database.

- Any currencies and sets of books referred to by the row sets and column sets being copied must exist in the target database.

- Report details, such as budgets and encumbrance types, referred to by copied reports must exist in the target database.

- You must be logged in to General Ledger and connected to the target database.
To run the FSG Transfer program:
- 1. Navigate to the Submit Request window.
- 2. Select the concurrent program named Program - FSG Transfer.
- 3. Enter the program parameters.
- 4. Submit the request.
- 5. When the concurrent request finishes, review the report for any warnings and error messages. If there are errors, correct them, then rerun the FSG Transfer program.
Other Considerations
The report produced by the FSG Transfer concurrent request identifies any warnings and error messages which occurred when the program ran. Some of the reasons for warnings include:
- Name collisions: If a report object you are trying to copy already exists in your target database, you will get a warning message and the report object will not be copied.
- Row and column set references: If any of the copied row or column sets refer to a currency or set of books which doesn't exist in the target database, you will get a warning message and the reference will be excluded from the copied row or column set.
- Report details: If any copied FSG reports refer to report details, such as budgets and encumbrance types, which don't exist in the target database, you will get a warning message and the reference will be excluded from the copied report.
If the FSG Transfer program is interrupted, you can resubmit the program with the same parameters. Note that the program will produce warning messages for any report objects that were successfully transferred during the interrupted run. You can ignore these warnings.


|
In this Document
APPLIES TO:Oracle General Ledger - Version 10.7 to 12.1.3 [Release 10.7 to 12.1] PURPOSETroubleshooting Guide for the FSG Transfer program (RGRXFR). TROUBLESHOOTING STEPSCHECK SETUP1. Check the log file for error messages. 2. Are the charts of accounts in the source and target database identical, including value sets (the chart of accounts size, data type, segment separator, and segment assignments must be identical)? 3. Do currencies and sets of books referred to by the row sets and column sets being copied exist in the target database? 4. Do the components you are trying to transfer already exist on the Target database? If yes, you can not transfer them again. 5. Did you create the database link on the Target database? If it already existed, did you drop it first? 6. Did you run the FSG Transfer from the Target database? OTHER ISSUES1. You see the errors ORA-20000, ORU-10027 and ORA-06512 in the log file:ERROR at line 1: Set the profile option FSG: Message Detail to 'Minimal' or 'None. 2. You see the errors APP-01126 and ORA-20000 in the log file:APP-01126: Concurrent manager got error running sql*plus Shutdown and restart the concurrent managers. 3. You see the errors ORA-00604 and ORA-01000 in the request log file:ORA-00604 Error occurred at recursive SQL Level 1 Check the log file to determine where the process failed. If the name of a row set, column set, content set or report set has a % sign as part of the name, this could cause the program to fail with ORA-00604 and ORA-01000 error messages. Change the name of the set containing the %. Once the % has been removed from the name of the set, the program should then complete normal. 4. You get error APP-09518 (APP-RG-09518) on the Define Database Links form (RGXGDDBL)You are trying to create the database link for the FSG Transfer on the Define Database Links form (RGXGDDBL) in General Ledger. APP-09518: Encountered error while creating database link. Some things to check: b. Grant the APPS user account (GL in 10.7) in the RDBMS target server the privilege to create database links. c. Create the database link using the GL Super User responsibility by navigating to the Define Database Links form (Setup/System/Database Links) on the Target database. d. Verify you have included the domain name in the Connect String field. e. Verify there are entries in the source and target database tnsnames.ora files for both the source and target databases. f. The syntax of the create database link may require double quotes around the db link. Example: Database Name = "XXX" |
Defining Database Links
You can define links to other General Ledger databases by using the Define Database Links window. You give each linked database a name, which you can then use for copying FSG report objects from the linked database into your current database.
For example, when you implement General Ledger, you might define all of your FSG report objects in a test database. Once your production database is fully functional, you will probably want to transfer your report objects to it. To do this, you first create a link from the production (target) database to the test (source) database. Once the link is established, you can copy the report objects by using the FSG Transfer program.
Prerequisites

- For both the source and target databases, you or your database administrator must set the DISTRIBUTED_TRANSACTION parameter to a number greater than zero. The parameter is located in the init.ora file on the database server.

- You or your database administrator must grant permission for database link creation in the target database by executing the following SQL statement:
grant create database link to <APPS account>
- where
<APPS account>
- is your APPS account name.
To create a link to a General Ledger database:
- 1. Navigate to the Define Database Links window.
- 2. Enter the Database Name and optional Description for the linked database. You must also supply the Database Name to the FSG Transfer program.
- You can find the database name by executing the following query in the source database:
SELECT value FROM v$parameterWHERE UPPER(name) = 'DB_NAME';
- 3. Enter the following additional information for the database. If you do not know what to enter, ask your System Administrator.
Connect String:
- The network connect string to point to the General Ledger database.
Domain Name:
- The domain of the remote General Ledger database to which this link connects.
- You can find the domain name by executing the following query in the source database:
SELECT value FROM v$parameterWHERE UPPER(name) = 'DB_DOMAIN';APPS Username:
- The name of the Oracle Applications account that has read access to the General Ledger database tables. Note that this is not the username you enter to login to Oracle Applications.
APPS Password:
- The password for the above username. Note that, for security reasons, when you enter the password General Ledger will display asterisks instead of the actual characters in the password.
- See: Creating Database Links
(Oracle 7 Server SQL Reference, Release 7.3)
- 4. Save your work.
To delete a database link:
- 1. Navigate to the Define Database Links window.
- 2. Query the database name you want to delete.
- 3. Choose Delete Record from the Edit menu.
- 4. Choose Yes to delete the database link.
db_domain操作方法记录
col name for a30
col type for a10
col value for a20
show parameter db_domain
NAME TYPE VALUE
------------------------------------ ---------- ------------------------------
db_domain string
show parameter name
NAME TYPE VALUE
------------------------------------ ---------- ------------------------------
db_file_name_convert string
db_name string doudou
db_unique_name string doudou
global_names boolean FALSE
instance_name string doudou
lock_name_space string
log_file_name_convert string
service_names string doudou
alter system set db_domain='com' scope=spfile;
SQL> show parameter db_domain
NAME TYPE VALUE
------------------------------------ ---------- ------------------------------
db_domain string
SQL> show parameter name
NAME TYPE VALUE
------------------------------------ ---------- ------------------------------
db_file_name_convert string
db_name string doudou
db_unique_name string doudou
global_names boolean FALSE
instance_name string doudou
lock_name_space string
log_file_name_convert string
service_names string doudou
虽然我们修改成功了,但是没有立刻生效,我们重启数据库
shutdown immediate
startup
SQL> show parameter db_domain
NAME TYPE VALUE
------------------------------------ ---------- ------------------------------
db_domain string com
SQL> show parameter name
NAME TYPE VALUE
------------------------------------ ---------- ------------------------------
db_file_name_convert string
db_name string doudou
db_unique_name string doudou
global_names boolean FALSE
instance_name string doudou
lock_name_space string
log_file_name_convert string
service_names string doudou.com
修改db_domain重启数据库后生效!还有一点需注意service_names自动变为doudou.com也就是说当你设置db_domain时,在不设置service_names的情况下,service_names =db_unique.db_domain(为什么会有这个公式,下面会讲)
FSG报表定义导入的更多相关文章
- 在VS2012后的版本中做数据报表时,提示尚未指定报表“Report1”的报表定义
有一群的朋友在用VS2012做数据报表时,老是提示 本地报表处理期间出错. 尚未指定报表“Report1”的报表定义 未将对象引用设置到对象的实例. 我看了一下,步骤没错,我用VS2010做了一下,一 ...
- 【SSRS】入门篇(三) -- 为报表定义数据集
原文:[SSRS]入门篇(三) -- 为报表定义数据集 通过前两篇文件 [SSRS]入门篇(一) -- 创建SSRS项目 和 [SSRS]入门篇(二) -- 建立数据源 后, 我们建立了一个SSRS项 ...
- FSG报表打印报错,log文件显示java.sql.SQLException: No corresponding LOB data found
报错信息: +---------------------------------------------------------------------------+ Plsql 程序的日志信息开始 ...
- 安装vs2017后,RDLC 报表定义具有无法升级的无效目标命名空间
原先的RDLC报表定义用的命名空间是2008,用vs2017报表设计器重新保存后,会自动升级成2016,导致无法使用. 不想升级控件,太麻烦,所以就手动修改RDLC文件吧. 1.修改http://sc ...
- 尚未指定报表“Report1”的报表定义
在做RDLC项目中遇到这样的错误 本地报表处理期间出错. 尚未指定报表“Report1”的报表定义 未将对象引用设置到对象的实例. 解决方案: 打开reportViewer->LocalRepo ...
- RDLC报表问题:尚未指定报表“Report1”的报表定义
原文:尚未指定报表“Report1”的报表定义 在做RDLC项目中遇到这样的错误 本地报表处理期间出错. 尚未指定报表“Report1”的报表定义 未将对象引用设置到对象的实例. 解决方案: 打开re ...
- python 模块定义导入
1.定义模块:用来从逻辑上组织python代码(变量.函数.类.逻辑:实现一个功能),本质就是:.py结尾的python文件(文件名:test.py,对应的模块名:test)包:本质就是一个目录(必须 ...
- python_79_模块定义导入优化
''' 1.定义 模块:用来从逻辑上组织python代码(变量,函数,类,逻辑:实现一个功能),本质就是.py结尾的python文件 (文件名:test.py,对应的模块名:test. import ...
- 8.模块定义导入优化time datetime内置模块
1.模块(module)的定义:本质就是.py的python文件用来从逻辑上组织python代码(变量\函数\类\逻辑:实现一个功能)包(package)的定义:用来从逻辑上组织模块的,本质就是一个文 ...
随机推荐
- Android开发学习---使用Intelij idea 13.1 进行android 开发
1.为什么放弃eclipse?太卡!! 实在受不了eclipse的卡了,运行WEB项目还好,但android开发实在太慢,太慢!经常卡死,CPU经常被占满! 看网上很多人都说比Intelij idea ...
- AFN框架内部结构
AFN结构体 - NSURLConnection + AFURLConnectionOperation + AFHTTPRequestOperation + AFHTTPRequestOperatio ...
- Maven 命令速记
1. 创建项目 1) 创建父目录 mvn archetype:generate -DgroupId=com.qunar.training -DartifactId=training -Dversion ...
- mysql通过data文件恢复数据库的方式
1.首先定位mysql的my.ini配置文件,查找datadir的位置 #Path to the database rootdatadir="C:/ProgramData/MySQL/MyS ...
- 用SMIL语言编写一个简单的演示
一.首先需要注意的几点是: 1.用记事本编写代码时,要保存为后缀名为.smil或.smi的文件,并且编码格式选择为UTF-8. 2.打开.smil文件的播放器选择为:RealPlayer或是Ambul ...
- ansible-playbook
一.ansible-playbook介绍: playbook是由一个或多个"play"组成的列表.play的主要功能在于将事先归为一组的主机装扮成事先通过ansible中的task ...
- hibernate存储过程 3
hibernate存储过程 User.hbm.xml文件的内容如下: <?xml version="1.0"?> <!DOCTYPE hibe ...
- SQL 订阅发布备注
单个用户问题 use mastergodeclare @SQL varchar(max)set @SQL=''select @SQL=@SQL+';kill '+RTRIM(spid)from mas ...
- setAutoCommmit保持数据的完整性
setAutoCommit总的来说就是保持数据的完整性,一个系统的更新操作可能要涉及多张表,需多个SQL语句进行操作 循环里连续的进行插入操作,如果你在开始时设置了:conn.setAutoCommi ...
- SGA(System Global Area)
系统激活时在内存内规划的一个固定的区域,用于存储每位使用者所需存取的数据和必备的系统信息.这个区域成为系统全局区. 数据块缓存区:存放读取数据文件的数据块副本,或者曾经处理过的数据.有效减少读取数据时 ...

转到底部