0% found this document useful (0 votes)
70 views7 pages

FND Load

This document provides steps to clone an Oracle Applications responsibility using FNDLOAD. It demonstrates downloading the System Administrator responsibility data to a text file, editing the file to change the responsibility key, name and description, and then uploading the modified data to create a new cloned responsibility on the same instance. The steps include setting environment variables, running FNDLOAD to download and upload the data, editing the text file, and checking logs for errors.

Uploaded by

jgomez709
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
70 views7 pages

FND Load

This document provides steps to clone an Oracle Applications responsibility using FNDLOAD. It demonstrates downloading the System Administrator responsibility data to a text file, editing the file to change the responsibility key, name and description, and then uploading the modified data to create a new cloned responsibility on the same instance. The steps include setting environment variables, running FNDLOAD to download and upload the data, editing the text file, and checking logs for errors.

Uploaded by

jgomez709
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 7

Author A.Kishore/Sachin http://appsdba.

info

FNDLOAD
FNDLOAD is an Oracle utility for the transfer of a wide range of Oracle Foundation (FND) data from one instance to another instance. It can be defined as a concurrent program that can move Oracle Applications data between database and text file or this can be defined as FNDLOAD can download data from an application entity into an editable text file, which can be uploaded to another database.

How it works
Conversion between database format and text file format is specified by a configuration file. Oracle does provide a confirmation file and it is important to just pass the configuration file name and then just call the loader and leave everything.

What can be done using FNDLOAD?


These are the list, of configuration file and its Purpose afattach.lct : Load attachments setup data

afcpprog.lct : Concurrent Program Definitions afcppstl.lct: : Concurrent Program Printer Styles

afcpreqg.lct : Concurrent Request Groups afcprset.lct afffload.lct aflvmlu.lct afscprof.lct afscursp.lct afsload.lct : Concurrent Request Sets : Flexfields (KFF, DFF, value sets, value sets data) : Lookup types and codes : Profiles and Profile Values : Security data (users, responsibilities, etc) : Menu / Function Security DataLookup Types

Author A.Kishore/Sachin http://appsdba.info In this document we will demonstrate to download a responsibility and will upload on the same instance by changing the name and key. Here we will clone the System Administrator responsibility as we will use same instance and if we have to upload on separate instance like from DEV to PROD then no need to change the values.

Step 1 : Login as applmgr user on application tier.


Set the environment variables as shown below: $ cd /d01/oracle/prodappl $. ./ APPSORA.env

Author A.Kishore/Sachin http://appsdba.info

Step 2 : Now Change directory to $FND_TOP.


$ cd $FND_TOP

Step 3 : Alright, now download the responsibility data in sysadmin_resp.ldt file.


$ FNDLOAD APPS/kishore 0 Y DOWNLOAD $FND_TOP/patch/115/import/afscursp.lct /home/applmgr/sysadmin_resp.ldt FND_RESPONSIBILITY RESP_KEY=SYSTEM_ADMINISTRATOR Please Note : Here APPS password is kishore (by default Apps password is apps)

* Here the parameters 0 Y means zero and Y.

Author A.Kishore/Sachin http://appsdba.info

Step 4 : Now open the log file using vi editor to check if there is any error. $ vi L238548.log

Step 5 : Now open the sysadmin_resp.ldt file ,if there is any error

Author A.Kishore/Sachin http://appsdba.info

Step 6 : As the request is completed successfully, now we will edit the sysadmin_resp.ldt file using vi. Now open the generated file using vi. vi /home/applmgr/sysadmin_resp.ldt

Please Note : If you have to migrate data from one instance to other instance then no need to rename just check RESPONSIBILITY_ID as it should not be there. As this will generate duplication error on target system. Now as we are using same PROD instance, we need to make few changes. We need to delete RESPONSIBILITY_ID = "20420" if it exists in the file. Following are the changes we need to make : 1. Responsibility key = SYSTEM_ADMINISTRATOR_Test 2. Responsibility Name = System Administrator_test 3. Description = SYSTEM_ADMINISTRATOR_testing Step 7 : Now save the file and now we will upload the responsibility. $ FNDLOAD APPS/kishore 0 Y UPLOAD_PARTIAL $FND_TOP/patch/115 /import/afscursp.lct /home/applmgr/sysadmin_resp.ldt FND_RESPONSIBILITY RESP_KEY= SYSTEM_ADMINISTRATOR_testing

Author A.Kishore/Sachin http://appsdba.info

Step 8 : Check the log file .if there is any error. $ vi L2385549.log

Author A.Kishore/Sachin http://appsdba.info

Step 9 : Now as the request completed successfully.Login as system administrator and check responsibility in the application.

You might also like