<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Oracle Seeker, Oracle探索者 &#187; Oracle EBS二次开发</title>
	<atom:link href="http://oracleseeker.com/category/oracle_ebs_top/oracle_ebs_customization/feed/" rel="self" type="application/rss+xml" />
	<link>http://oracleseeker.com</link>
	<description>Oracle技术学习和探索的园地，技术顾问的探索旅程</description>
	<lastBuildDate>Sat, 05 May 2012 09:31:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>使用Bpel调用IREP中发布的Web Service</title>
		<link>http://oracleseeker.com/2009/12/30/bpel-irep-web-service/</link>
		<comments>http://oracleseeker.com/2009/12/30/bpel-irep-web-service/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 01:32:26 +0000</pubDate>
		<dc:creator>ivanmarkliu</dc:creator>
				<category><![CDATA[Oracle EBS二次开发]]></category>
		<category><![CDATA[BPEL]]></category>
		<category><![CDATA[IREP]]></category>
		<category><![CDATA[web service]]></category>

		<guid isPermaLink="false">http://oracleseeker.com/?p=2058</guid>
		<description><![CDATA[Oracle EBS R12中提供了将系统接口和客户化接口发布成Web Service的功能，下面将尝试使用Oralce SOA Suite 11g中的Bpel对其进行调用。 &#160; 一、开发以及测试环境 EBS R12.1.1 Weblogic 10.3.1 Oracle SOA Suite 11.1.1.2 Jdeveloper 11.1.1.2.0 二、前提设置 本文描述如何建立一个调用IREP中WEB SERVICE的BPEL流程。在开始之前，必须对一些环境进行安装和设置。涉及到的内容有： 1. 为EBS R12做最基本的设置(设置到OU) 2. 按照本站中的文章《使用Integration Repositoy Parser(IREP)的前提设置》，对R12中的IREP进行设置。 3. 按照本站中的文章《发布客户化PLSQL API到Oracle Integration Repositoy(IREP)》，发布测试用的客户化API到IREP中，以供Bpel调用。 三、搭建以IREP中的Web Service为PartnerLink的BPEL流程 在前提设置做好之后，IREP中已经发布成Web Servcie的API就和一般的Web Service没有什么区别了。不过要注意的是，因为访问IREP中的WebService需要进行安全验证。所以相应的，BPEL中调用时也应该加入安全验证信息。 1，创建PartnerLink以及BPEL流程 进入EBS的Integration Repository中，“前提设置”第3步事先设定好的接口，找到已经发布好的客户化API的WSDL地址。&#160; 接着在Jdeveloper的Bpel设计器中，添加一个PartnerLink，WSDL的位置填入上面复制下来的WSDL地址。这里用的是把上面的WSDL文件导入本地BPEL工程后直接调用的方式，如图： &#160; 引入的WSDL代码片段如下： &#60;binding name=”STANLEY_EMP_PKG_Binding” type=”tns:STANLEY_EMP_PKG_PortType”&#62; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;soap:binding style=”document” transport=”http://schemas.xmlsoap.org/soap/http”/&#62; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;operation name=”CREATE_EMPLOYEE”&#62; [...]


相关文章:<ol><li><a href='http://oracleseeker.com/2009/02/08/plsql_callout_web_service/' rel='bookmark' title='Permanent Link: WebService系列:PL/SQL调用Web Service(Web Service Callout)'>WebService系列:PL/SQL调用Web Service(Web Service Callout)</a></li>
<li><a href='http://oracleseeker.com/2009/02/13/vba_client_proxy_program_invoke_webservice/' rel='bookmark' title='Permanent Link: WebService系列:Office VBA调用Web Service'>WebService系列:Office VBA调用Web Service</a></li>
<li><a href='http://oracleseeker.com/2009/02/14/vba_client_proxy_program_invoke_secure_webservice/' rel='bookmark' title='Permanent Link: WebService系列:Office VBA调用已安全性认证的Web Service'>WebService系列:Office VBA调用已安全性认证的Web Service</a></li>
</ol>]]></description>
		<wfw:commentRss>http://oracleseeker.com/2009/12/30/bpel-irep-web-service/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>IREP: 发布并发程序(Concurrent Program)为Web服务</title>
		<link>http://oracleseeker.com/2009/10/27/publish_concurrent_program_to_integration_repository_as_web_service/</link>
		<comments>http://oracleseeker.com/2009/10/27/publish_concurrent_program_to_integration_repository_as_web_service/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 12:40:19 +0000</pubDate>
		<dc:creator>aronezhang</dc:creator>
				<category><![CDATA[Oracle EBS二次开发]]></category>
		<category><![CDATA[Integrated SOA Gateway]]></category>
		<category><![CDATA[Oracle EBS SOA]]></category>

		<guid isPermaLink="false">http://oracleseeker.com/2009/10/27/publish_concurrent_program_to_integration_repository_as_web_service/</guid>
		<description><![CDATA[前面文章已经介绍了如何将一个PL/SQL API发布到Oracle Integration Repository中的WSDL服务，本文介绍Oracle E-Business Suite中使用频率非常高的客户化并发程序如何发布为Oracle Integration Repository中的WSDL服务。并发程序接口发布的流程是：
1，根据集成接口标记的规范定义或编写并发程序的标记 
2，使用FNDLOAD将并发程序的标记信息导出到LDT文件中
3，使用irep_parser.pl工具验证并生成接口描述标记文件(iLDT) 
4，使用FNDLOAD工具将接口描述标记文件中的信息上传到Oracle Integration Repository中 
5，通过Oracle Integration Repository可视化界面或者soagenerate.sh脚本将接口发布为WSDL服务 
6，将WSDL服务发布到中间服务器


相关文章:<ol><li><a href='http://oracleseeker.com/2009/10/13/standalone_integration_repository_parser_irep_parser_release/' rel='bookmark' title='Permanent Link: Oracle EBS Integrated SOA Gateway(ISG) IREP Parser工具发布'>Oracle EBS Integrated SOA Gateway(ISG) IREP Parser工具发布</a></li>
<li><a href='http://oracleseeker.com/2009/09/27/about_fndload_of_data_migrate_tool_for_oracle_ebs/' rel='bookmark' title='Permanent Link: Oracle EBS数据定义移植工具：FNDLOAD'>Oracle EBS数据定义移植工具：FNDLOAD</a></li>
<li><a href='http://oracleseeker.com/2009/10/20/setup_and_using_integration_repository_parser/' rel='bookmark' title='Permanent Link: 使用Integration Repositoy Parser(IREP)的前提设置'>使用Integration Repositoy Parser(IREP)的前提设置</a></li>
</ol>]]></description>
		<wfw:commentRss>http://oracleseeker.com/2009/10/27/publish_concurrent_program_to_integration_repository_as_web_service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IREP: 生成服务后台工具soagenerate.sh</title>
		<link>http://oracleseeker.com/2009/10/23/irep_service_generation_backend_processing_tool_soagenerate/</link>
		<comments>http://oracleseeker.com/2009/10/23/irep_service_generation_backend_processing_tool_soagenerate/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 05:42:05 +0000</pubDate>
		<dc:creator>aronezhang</dc:creator>
				<category><![CDATA[Oracle EBS二次开发]]></category>
		<category><![CDATA[Integrated SOA Gateway]]></category>

		<guid isPermaLink="false">http://oracleseeker.com/2009/10/23/irep_service_generation_backend_processing_tool_soagenerate/</guid>
		<description><![CDATA[本文描述了如何使用IREP工具soagenerate.sh来从后台生成WSDL服务


相关文章:<ol><li><a href='http://oracleseeker.com/2009/08/05/recomplie_jsp_files_in_ebs_r12/' rel='bookmark' title='Permanent Link: 重新编译EBS R12的JSP页面'>重新编译EBS R12的JSP页面</a></li>
<li><a href='http://oracleseeker.com/2009/10/20/setup_and_using_integration_repository_parser/' rel='bookmark' title='Permanent Link: 使用Integration Repositoy Parser(IREP)的前提设置'>使用Integration Repositoy Parser(IREP)的前提设置</a></li>
<li><a href='http://oracleseeker.com/2009/10/21/publish_plsql_api_to_oracle_integration_repository/' rel='bookmark' title='Permanent Link: 发布客户化PLSQL APIs到Oracle Integration Repositoy(IREP)'>发布客户化PLSQL APIs到Oracle Integration Repositoy(IREP)</a></li>
</ol>]]></description>
		<wfw:commentRss>http://oracleseeker.com/2009/10/23/irep_service_generation_backend_processing_tool_soagenerate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IREP: 测试Integration Repository客户化Web服务的调用</title>
		<link>http://oracleseeker.com/2009/10/22/test_invoke_web_service_in_irep/</link>
		<comments>http://oracleseeker.com/2009/10/22/test_invoke_web_service_in_irep/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 15:29:21 +0000</pubDate>
		<dc:creator>aronezhang</dc:creator>
				<category><![CDATA[Oracle EBS二次开发]]></category>
		<category><![CDATA[Integrated SOA Gateway]]></category>

		<guid isPermaLink="false">http://oracleseeker.com/2009/10/22/test_invoke_web_service_in_irep/</guid>
		<description><![CDATA[前面的文章已经讲解了如何编写客户化的PL/SQL程序，并将其发布到Oracle Integration Repositoy中，进而发布为Web服务，本文描述通过第三方的程序来调用过我们的Web服务，来验证客户化的Web服务是否能够被正常调用，在Oracle Integrate SOA Gataway的开发手册中介绍了如何在BPEL流程中调用客户化的Web服务，而搭建一个BPEL的运行环境对于开发人员来说需要耗费比较多的时间，而且需要对BPEL的开发比较熟悉，否则无法顺利的进行；另外很多时候开发Web服务的目的也并仅仅是为了给BPEL流程调用，因此大动干戈去设计一个BPEL流程来测试我们客户化的Web服务显然不现实，本文就介绍如何采用简单的方法来进行Web服务的测试。
1, 使用Oracle EBS服务器中OC4J自带的Web服务测试页面进行测试 
2, 采用第三方软件，如soapUI来进行测试


相关文章:<ol><li><a href='http://oracleseeker.com/2009/02/14/vba_client_proxy_program_invoke_secure_webservice/' rel='bookmark' title='Permanent Link: WebService系列:Office VBA调用已安全性认证的Web Service'>WebService系列:Office VBA调用已安全性认证的Web Service</a></li>
<li><a href='http://oracleseeker.com/2009/10/21/publish_plsql_api_to_oracle_integration_repository/' rel='bookmark' title='Permanent Link: 发布客户化PLSQL APIs到Oracle Integration Repositoy(IREP)'>发布客户化PLSQL APIs到Oracle Integration Repositoy(IREP)</a></li>
<li><a href='http://oracleseeker.com/2009/10/22/deploy_custom_integration_interface_as_webservice_wsdl/' rel='bookmark' title='Permanent Link: Oracle Integration Repositoy(IREP)中发布客户化集成接口为Web Service'>Oracle Integration Repositoy(IREP)中发布客户化集成接口为Web Service</a></li>
</ol>]]></description>
		<wfw:commentRss>http://oracleseeker.com/2009/10/22/test_invoke_web_service_in_irep/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Oracle Integration Repositoy(IREP)中发布客户化集成接口为Web Service</title>
		<link>http://oracleseeker.com/2009/10/22/deploy_custom_integration_interface_as_webservice_wsdl/</link>
		<comments>http://oracleseeker.com/2009/10/22/deploy_custom_integration_interface_as_webservice_wsdl/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 05:54:25 +0000</pubDate>
		<dc:creator>aronezhang</dc:creator>
				<category><![CDATA[Oracle EBS二次开发]]></category>
		<category><![CDATA[Integrated SOA Gateway]]></category>

		<guid isPermaLink="false">http://oracleseeker.com/2009/10/22/deploy_custom_integration_interface_as_webservice_wsdl/</guid>
		<description><![CDATA[前面的文章已经描述如何将自己的PL/SQL API发布到Oracle Integration Repositoy中，发布上去的集成接口还无法供集成使用的Web服务，是因为它还没有按照Web服务的规范发布为WSDL，发布接口为Web服务的步骤为：
1, Oracle EBS Integrated SOA Gateway(ISG) 相关设置(一次性设置) 
2, 为集成接口的过程和方法创建授权，它可以授权给所有用户、一组用户或者特别的用户 
3, 生成接口对应的WSDL信息 
4, Deploy Web服务 
5, 客户端使用Web服务的WSDL描述URL来调用


相关文章:<ol><li><a href='http://oracleseeker.com/2009/10/21/publish_plsql_api_to_oracle_integration_repository/' rel='bookmark' title='Permanent Link: 发布客户化PLSQL APIs到Oracle Integration Repositoy(IREP)'>发布客户化PLSQL APIs到Oracle Integration Repositoy(IREP)</a></li>
<li><a href='http://oracleseeker.com/2008/10/13/oracle_jdeveloper11g_plsql_web_service/' rel='bookmark' title='Permanent Link: Oracle JDeveloper 11g PLSQL Web Service'>Oracle JDeveloper 11g PLSQL Web Service</a></li>
<li><a href='http://oracleseeker.com/2009/10/13/standalone_integration_repository_parser_irep_parser_release/' rel='bookmark' title='Permanent Link: Oracle EBS Integrated SOA Gateway(ISG) IREP Parser工具发布'>Oracle EBS Integrated SOA Gateway(ISG) IREP Parser工具发布</a></li>
</ol>]]></description>
		<wfw:commentRss>http://oracleseeker.com/2009/10/22/deploy_custom_integration_interface_as_webservice_wsdl/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>发布客户化PLSQL APIs到Oracle Integration Repositoy(IREP)</title>
		<link>http://oracleseeker.com/2009/10/21/publish_plsql_api_to_oracle_integration_repository/</link>
		<comments>http://oracleseeker.com/2009/10/21/publish_plsql_api_to_oracle_integration_repository/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 08:28:13 +0000</pubDate>
		<dc:creator>aronezhang</dc:creator>
				<category><![CDATA[Oracle EBS二次开发]]></category>
		<category><![CDATA[Integrated SOA Gateway]]></category>

		<guid isPermaLink="false">http://oracleseeker.com/2009/10/21/publish_plsql_api_to_oracle_integration_repository/</guid>
		<description><![CDATA[本节描述如何将PL/SQL程序发布到Oracle Integration Repositoy中作为Web服务，PLSQL发布之后，客户端应用程序就可以通过Web服务来调用PL/SQL程序，并且这些程序是在Oracle EBS AOL安全性的控制下。


相关文章:<ol><li><a href='http://oracleseeker.com/2009/10/13/standalone_integration_repository_parser_irep_parser_release/' rel='bookmark' title='Permanent Link: Oracle EBS Integrated SOA Gateway(ISG) IREP Parser工具发布'>Oracle EBS Integrated SOA Gateway(ISG) IREP Parser工具发布</a></li>
<li><a href='http://oracleseeker.com/2009/10/20/setup_and_using_integration_repository_parser/' rel='bookmark' title='Permanent Link: 使用Integration Repositoy Parser(IREP)的前提设置'>使用Integration Repositoy Parser(IREP)的前提设置</a></li>
<li><a href='http://oracleseeker.com/2009/10/22/deploy_custom_integration_interface_as_webservice_wsdl/' rel='bookmark' title='Permanent Link: Oracle Integration Repositoy(IREP)中发布客户化集成接口为Web Service'>Oracle Integration Repositoy(IREP)中发布客户化集成接口为Web Service</a></li>
</ol>]]></description>
		<wfw:commentRss>http://oracleseeker.com/2009/10/21/publish_plsql_api_to_oracle_integration_repository/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>使用Integration Repositoy Parser(IREP)的前提设置</title>
		<link>http://oracleseeker.com/2009/10/20/setup_and_using_integration_repository_parser/</link>
		<comments>http://oracleseeker.com/2009/10/20/setup_and_using_integration_repository_parser/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 14:12:09 +0000</pubDate>
		<dc:creator>aronezhang</dc:creator>
				<category><![CDATA[Oracle EBS二次开发]]></category>
		<category><![CDATA[Integrated SOA Gateway]]></category>

		<guid isPermaLink="false">http://oracleseeker.com/2009/10/20/setup_and_using_integration_repository_parser/</guid>
		<description><![CDATA[IREP Parser是一个用Perl编写的独立工具，用来验证集成接口标记并生成集成接口描述文件(iLDT)，在使用它之前需要安装几个必须的Perl模块，并安装IREP Parser对应的补丁，补丁安装完成后在 $FND_TOP/bin 目录下可以找到Perl的脚本文件irep_parser.pl和irep_lct.pl


相关文章:<ol><li><a href='http://oracleseeker.com/2009/10/21/publish_plsql_api_to_oracle_integration_repository/' rel='bookmark' title='Permanent Link: 发布客户化PLSQL APIs到Oracle Integration Repositoy(IREP)'>发布客户化PLSQL APIs到Oracle Integration Repositoy(IREP)</a></li>
<li><a href='http://oracleseeker.com/2009/10/22/deploy_custom_integration_interface_as_webservice_wsdl/' rel='bookmark' title='Permanent Link: Oracle Integration Repositoy(IREP)中发布客户化集成接口为Web Service'>Oracle Integration Repositoy(IREP)中发布客户化集成接口为Web Service</a></li>
<li><a href='http://oracleseeker.com/2009/10/27/publish_concurrent_program_to_integration_repository_as_web_service/' rel='bookmark' title='Permanent Link: IREP: 发布并发程序(Concurrent Program)为Web服务'>IREP: 发布并发程序(Concurrent Program)为Web服务</a></li>
</ol>]]></description>
		<wfw:commentRss>http://oracleseeker.com/2009/10/20/setup_and_using_integration_repository_parser/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Oracle EBS Integrated SOA Gateway(ISG) IREP Parser工具发布</title>
		<link>http://oracleseeker.com/2009/10/13/standalone_integration_repository_parser_irep_parser_release/</link>
		<comments>http://oracleseeker.com/2009/10/13/standalone_integration_repository_parser_irep_parser_release/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 04:01:26 +0000</pubDate>
		<dc:creator>aronezhang</dc:creator>
				<category><![CDATA[Oracle EBS二次开发]]></category>
		<category><![CDATA[Integrated SOA Gateway]]></category>

		<guid isPermaLink="false">http://oracleseeker.com/2009/10/13/standalone_integration_repository_parser_irep_parser_release/</guid>
		<description><![CDATA[IREP Parser可以将自己的各种程序发布到Integration Repository中后通过Web服务的方式提供系统集成


相关文章:<ol><li><a href='http://oracleseeker.com/2009/10/20/setup_and_using_integration_repository_parser/' rel='bookmark' title='Permanent Link: 使用Integration Repositoy Parser(IREP)的前提设置'>使用Integration Repositoy Parser(IREP)的前提设置</a></li>
<li><a href='http://oracleseeker.com/2009/10/21/publish_plsql_api_to_oracle_integration_repository/' rel='bookmark' title='Permanent Link: 发布客户化PLSQL APIs到Oracle Integration Repositoy(IREP)'>发布客户化PLSQL APIs到Oracle Integration Repositoy(IREP)</a></li>
<li><a href='http://oracleseeker.com/2009/10/22/deploy_custom_integration_interface_as_webservice_wsdl/' rel='bookmark' title='Permanent Link: Oracle Integration Repositoy(IREP)中发布客户化集成接口为Web Service'>Oracle Integration Repositoy(IREP)中发布客户化集成接口为Web Service</a></li>
</ol>]]></description>
		<wfw:commentRss>http://oracleseeker.com/2009/10/13/standalone_integration_repository_parser_irep_parser_release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle EBS数据定义移植工具：Xdf(XML Object Description File)</title>
		<link>http://oracleseeker.com/2009/09/29/about_xml_object_description_file_xdf_of_oracle_database_objects_migration_tool/</link>
		<comments>http://oracleseeker.com/2009/09/29/about_xml_object_description_file_xdf_of_oracle_database_objects_migration_tool/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 03:14:11 +0000</pubDate>
		<dc:creator>aronezhang</dc:creator>
				<category><![CDATA[Oracle EBS二次开发]]></category>
		<category><![CDATA[fndload]]></category>
		<category><![CDATA[xdf]]></category>

		<guid isPermaLink="false">http://oracleseeker.com/2009/09/29/about_xml_object_description_file_xdf_of_oracle_database_objects_migration_tool/</guid>
		<description><![CDATA[Oracle EBS二次开发中，往往会创建很多数据库对象，如表、同义词、视图等，这些数据库对象是二次开发配置管理内容很重要的一部分，通常情况下我们会使用脚本文件来记录这些数据库对象的创建、变更和维护，随着开发的进行需要对这些对象的脚本进行版本管理；更重要的是将这些数据库对象从开发环境移植到其它环境的时候面临着诸多的问题.
作为开发人员很希望有一个工具来完成数据库对象在两个数据库之间的移植，而无需我们为了不同的数据库维护不同的对象脚本，避免上面所描述的问题，下面我们来看看Oracle为我们所提供的解决方案: XDF(XML Object Description File)工具。


相关文章:<ol><li><a href='http://oracleseeker.com/2009/09/27/about_fndload_of_data_migrate_tool_for_oracle_ebs/' rel='bookmark' title='Permanent Link: Oracle EBS数据定义移植工具：FNDLOAD'>Oracle EBS数据定义移植工具：FNDLOAD</a></li>
</ol>]]></description>
		<wfw:commentRss>http://oracleseeker.com/2009/09/29/about_xml_object_description_file_xdf_of_oracle_database_objects_migration_tool/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Oracle EBS数据定义移植工具：FNDLOAD</title>
		<link>http://oracleseeker.com/2009/09/27/about_fndload_of_data_migrate_tool_for_oracle_ebs/</link>
		<comments>http://oracleseeker.com/2009/09/27/about_fndload_of_data_migrate_tool_for_oracle_ebs/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 08:05:54 +0000</pubDate>
		<dc:creator>aronezhang</dc:creator>
				<category><![CDATA[Oracle EBS二次开发]]></category>
		<category><![CDATA[fndload]]></category>

		<guid isPermaLink="false">http://oracleseeker.com/2009/09/27/about_fndload_of_data_migrate_tool_for_oracle_ebs/</guid>
		<description><![CDATA[在实际的EBS二次开发中，我们经常会碰到需要在各个环境之间移植二次开发的程序对象以及数据定义，如在EBS二次开发中并发请求的定义会涉及到：可执行、并发程序、值集、请求组等的定义，定义需要从开发环境、测试环境、UAT环境一直到正式环境，开发人员完成一个并发请求开发后，同样的定义需要在多个环境中手工完成，势必导致中间出现错误，导致浪费很多时间来进行检查，无形中增加了工作量；而更多的时候系统管理人员和开发人员是分离的，开发人员和系统管理人员之间还需要进行任务的交接，进一步增加了程序移植工作的难度和工作量。 
而FNDLOAD则是为了移植EBS数据定义而诞生的工具，它可以移植定义在AOL中的数据定义，如我们常见的并发程序、值集、预置文件等等，严格来说它可以实现任意两个Oracle数据库之间数据的移植，有了这个工具，我们就无需在多个环境中重复进行手工定义了。 
在Oracle EBS环境下,和FNDLOAD工具类似的移植工具随处可见,并被广泛应用，如用来移植BI Publisher报表模板定义的XDOLoader工具;工作流定义移植工具WFLOAD;数据库对象移植工具ODF和XDF


相关文章:<ol><li><a href='http://oracleseeker.com/2009/09/29/about_xml_object_description_file_xdf_of_oracle_database_objects_migration_tool/' rel='bookmark' title='Permanent Link: Oracle EBS数据定义移植工具：Xdf(XML Object Description File)'>Oracle EBS数据定义移植工具：Xdf(XML Object Description File)</a></li>
<li><a href='http://oracleseeker.com/2009/10/27/publish_concurrent_program_to_integration_repository_as_web_service/' rel='bookmark' title='Permanent Link: IREP: 发布并发程序(Concurrent Program)为Web服务'>IREP: 发布并发程序(Concurrent Program)为Web服务</a></li>
</ol>]]></description>
		<wfw:commentRss>http://oracleseeker.com/2009/09/27/about_fndload_of_data_migrate_tool_for_oracle_ebs/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>

