Besides that, I have included some useful notes on FNDLOAD utility
I have used FNDLOAD successfully in past for several different entities/data types within Oracle 11i for almost all my previous clients, ever since this utility became available.
Some of the examples in this FNDLOAD article include:-
FNDLOAD to transfer Request Groups
FNDLOAD for moving Concurrent Programs
FNDLOAD to download and upload Forms Personalizations ( or Personalisations depending on where you are located )
To FNDLOAD Web ADI, visit the link Web ADI FNDLOAD
Use FNDLOAD for transferring value set definitions.
-->Please note that when transferring Key Flex Fields and Descriptive flex fields the respective value sets against each segment will be extracted and loaded automatically.
Also, FNDLOAD can be used to migrate Key FlexFields, Descriptive Flexfields, Responsibilities and almost every other FND entity.
Please note that the text written down here could get wrapped in the browser.
Hence you may have to use \ to continue the single line command on Unix, in case you find the lines wrapping
In my case I am ensuring that $CLIENT_APPS_PWD has the apps password before running the scripts
------------------------------------------------------------------------------------------
##To FNDLOAD Request groups
FNDLOAD apps/$CLIENT_APPS_PWD O Y DOWNLOAD $FND_TOP/patch/115/import/afcpreqg.lct XX_MY_REPORT_GROUP_NAME.ldt REQUEST_GROUP REQUEST_GROUP_NAME="XX_MY_REPORT_GROUP_NAME" APPLICATION_SHORT_NAME="XXGMS"
##Note that
##---------
## <> will be your Application Shortname where request group is registered
## XX_MY_REPORT_GROUP_NAME
Will be the name of your request group
## ##To upload this Request Group in other environment after having transferred the ldt file
FNDLOAD apps/$CLIENT_APPS_PWD O Y UPLOAD $FND_TOP/patch/115/import/afcpreqg.lct
------------------------------------------------------------------------------------------
##To FNDLOAD Concurrent Programs
FNDLOAD apps/$CLIENT_APPS_PWD O Y DOWNLOAD $FND_TOP/patch/115/import/afcpprog.lct XX_CUSTOM_ORACLE_INTERFACE_PROG.ldt PROGRAM APPLICATION_SHORT_NAME="XXGMS" CONCURRENT_PROGRAM_NAME="XX_CUSTOM_ORACLE_INTERFACE_PROG"
##Note that
##---------
## XXGMS will be your custom GMS Application Shortname where concurrent program is registered
## XX_CUSTOM_ORACLE_INTERFACE_PROG
Will be the name of your request group
## XX_CUSTOM_ORACLE_INTERFACE_PROG.ldt is the file where concurrent program definition will be extracted
## ##To upload
FNDLOAD apps/$CLIENT_APPS_PWD O Y UPLOAD $FND_TOP/patch/115/import/afcpprog.lct XX_CUSTOM_ORACLE_INTERFACE_PROG.ldt
------------------------------------------------------------------------------------------
##To FNDLOAD Oracle Descriptive Flexfields
$FND_TOP/bin/FNDLOAD apps/$CLIENT_APPS_PWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct XX_PO_REQ_HEADERS_DFF.ldt DESC_FLEX APPLICATION_SHORT_NAME=PO DESCRIPTIVE_FLEXFIELD_NAME='PO_REQUISITION_HEADERS'
##Note that
##---------
## PO is the Application Shortname against which descriptive flexfield against PO Headers is registered
## PO_REQUISITION_HEADERS
is the name of Descriptive Flexfield against PO Requisition Headers
## Use the SQL below to find the name of DFF, rather than logging into the screen (ooops via jinitiator)
########----->SELECT
########----->application_id, DESCRIPTIVE_FLEXFIELD_NAME, application_table_name
########----->FROM
########-----> fnd_descriptive_flexs_vl
########----->WHERE
########-----> APPLICATION_TABLE_NAME like '%' || upper('&tab_name') || '%'
########----->ORDER BY APPLICATION_TABLE_NAME
########----->/
## To upload into another environment
$FND_TOP/bin/FNDLOAD apps/$CLIENT_APPS_PWD 0 Y UPLOAD $FND_TOP/patch/115/import/afffload.lct XX_PO_REQ_HEADERS_DFF.ldt
## OK another example for DFF against FND_LOOKUPS
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct XX_FND_COMMON_LOOKUPS_DFF.ldt DESC_FLEX APPLICATION_SHORT_NAME=FND DESCRIPTIVE_FLEXFIELD_NAME='FND_COMMON_LOOKUPS'
## OK another example for DFF against Project Accounting Expenditure Types
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct XX_PA_EXPENDITURE_TYPES_DESC_FLEX_DFF.ldt DESC_FLEX APPLICATION_SHORT_NAME=PA DESCRIPTIVE_FLEXFIELD_NAME='PA_EXPENDITURE_TYPES_DESC_FLEX'
------------------------------------------------------------------------------------------
##To FNDLOAD Oracle Menus
$FND_TOP/bin/FNDLOAD apps/$CLIENT_APPS_PWD O Y DOWNLOAD $FND_TOP/patch/115/import/afsload.lct ICX_POR_SSP_HOME.ldt MENU MENU_NAME="ICX_POR_SSP_HOME"
##Note that
##---------
## Oracle Menus are not attached to applications. Hence no need to include application short name
## ICX_POR_SSP_HOME is the menu name. This can be validated via below SQL
## select user_menu_name from fnd_menus_vl where menu_name = 'ICX_POR_SSP_HOME' ;
## Also note that we do not pass in the User_menu_name in this example
## OK, now to upload this file
$FND_TOP/bin/FNDLOAD apps/$CLIENT_APPS_PWD O Y UPLOAD $FND_TOP/patch/115/import/afsload.lct ICX_POR_SSP_HOME.ldt
----------------------------------------------------------------------------------------------------------------------------
## Well, now for FND Messages to download a single message
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afmdmsg.lct \
XX_ICX_POR_LIFECYCLE_PAY_TIP.ldt FND_NEW_MESSAGES APPLICATION_SHORT_NAME='ICX' MESSAGE_NAME=XX_ICX_POR_LIFECYCLE_PAY_TIP
## Or you may as well download all the messages within an application
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afmdmsg.lct \
XX_ALL_GMS_MESSAGES_00.ldt FND_NEW_MESSAGES APPLICATION_SHORT_NAME='XXGMS'
## now to upload using FNDLOAD
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y UPLOAD $FND_TOP/patch/115/import/afmdmsg.lct XX_ICX_POR_LIFECYCLE_PAY_TIP.ldt
----------------------------------------------------------------------------------------------------------------------------
## Now it's the turn of Lookup values. Again, its not a rocket science
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y DOWNLOAD aflvmlu.lct XX_TRX_BATCH_STATUS.ldt FND_LOOKUP_TYPE APPLICATION_SHORT_NAME ='XXGMS' LOOKUP_TYPE="XX_TRX_BATCH_STATUS"
## Note that
## XX_TRX_BATCH_STATUS is the name of FND Lookup Type in this example
## This will download all the lookup codes within the defined lookup
## To upload
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y UPLOAD aflvmlu.lct XX_TRX_BATCH_STATUS.ldt
----------------------------------------------------------------------------------------------------------------------------
## You can also move the User definitions from FND_USER
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afscursp.lct ./XX_FND_USER_PASSI.ldt FND_USER USER_NAME='ANILPASSI'
#Do not worry about your password being extracted, it will be encrypted as below in ldt file
#BEGIN FND_USER "ANILPASSI"
# OWNER = "PASSIA"
# LAST_UPDATE_DATE = "2005/10/19"
# ENCRYPTED_USER_PASSWORD = "ZGE45A8A9BE5CF4339596C625B99CAEDF136C34FEA244DC7A"
# SESSION_NUMBER = "0"
To upload the FND_USER using FNDLOAD command use
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y UPLOAD $FND_TOP/patch/115/import/afscursp.lct ./XX_FND_USER_PASSI.ldt
Notes for using FNDLOAD against FND_USER:-
1. After uploading using FNDLOAD, user will be promoted to change their password again during their next signon attempt.
2. All the responsibilities will be extracted by FNDLOAD alongwith User Definition in FND_USER
3. In the Target Environment , make sure that you have done FNDLOAD for new responsibilities prior to running FNDLOAD on users.
----------------------------------------------------------------------------------------------------------------------------
## Now lets have a look at the profile option using oracle's FNDLOAD
FNDLOAD apps/$CLIENT_APPS_PWD O Y DOWNLOAD $FND_TOP/patch/115/import/afscprof.lct POR_ENABLE_REQ_HEADER_CUST.ldt PROFILE PROFILE_NAME="POR_ENABLE_REQ_HEADER_CUST" APPLICATION_SHORT_NAME="ICX"
## Note that
## POR_ENABLE_REQ_HEADER_CUST is the short name of profile option
## We aren't passing the user profile option name in this case. Validate using ...
########----->select application_id, PROFILE_OPTION_NAME || '==>' || profile_option_id || '==>' ||
########----->USER_PROFILE_OPTION_NAME
########----->from FND_PROFILE_OPTIONS_VL
########----->where PROFILE_OPTION_NAME like '%' || upper('&profile_option_name') || '%'
########----->order by PROFILE_OPTION_NAME
########----->/
## Now to upload
FNDLOAD apps/$CLIENT_APPS_PWD O Y UPLOAD $FND_TOP/patch/115/import/afscprof.lct POR_ENABLE_REQ_HEADER_CUST.ldt
----------------------------------------------------------------------------------------------------------------------------
## Now for the request sets that contain the stages and links for underlying concurrent programs
## For this you will be firstly required to download the request set definition.
## Next you will be required to download the Sets Linkage definition
## Well, lets be clear here, the above sequence is more important while uploading
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afcprset.lct XX_GL_MY_INTERFACE_SET.ldt REQ_SET REQUEST_SET_NAME="FNDRSSUB4610101_Will_look_like_this"
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afcprset.lct XX_GL_MY_INTERFACE_SET_LINK.ldt REQ_SET_LINKS REQUEST_SET_NAME="FNDRSSUB4610101_Will_look_like_this"
## Note that FNDRSSUB4610101 can be found by doing an examine on the
########----->select request_set_name from fnd_request_sets_vl
########----->where user_request_set_name = 'User visible name for the request set here'
## Now for uploading the request set, execute the below commands
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y UPLOAD $FND_TOP/patch/115/import/afcprset.lct XX_GL_MY_INTERFACE_SET.ldt
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y UPLOAD $FND_TOP/patch/115/import/afcprset.lct XX_GL_MY_INTERFACE_SET_LINK.ldt
----------------------------------------------------------------------------------------------------------------------------
## Now for the responsibility
FNDLOAD apps/$CLIENT_APPS_PWD O Y DOWNLOAD $FND_TOP/patch/115/import/afscursp.lct XX_PERSON_RESPY.ldt FND_RESPONSIBILITY RESP_KEY="XX_PERSON_RESPY"
## note that XX_PERSON_RESPY is the responsibility key
## Now to upload
FNDLOAD apps/$CLIENT_APPS_PWD O Y UPLOAD $FND_TOP/patch/115/import/afscursp.lct XX_PERSON_RESPY.ldt
----------------------------------------------------------------------------------------------------------------------------
## OK, now for the forms personalizations
## For the forms personalizations, I have given three examples as below.
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/affrmcus.lct XX_PERWSHRG.ldt FND_FORM_CUSTOM_RULES function_name="PERWSHRG-404"
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/affrmcus.lct XX_HZ_ARXCUDCI_STD.ldt FND_FORM_CUSTOM_RULES function_name="HZ_ARXCUDCI_STD"
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/affrmcus.lct XX_AP_APXVDMVD.ldt FND_FORM_CUSTOM_RULES function_name="AP_APXVDMVD"
## Note that the function name above is the function short name as seen in the Function Definition Screen
## Now to upload the forms personalizations that are defined against these forms functions....
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y UPLOAD $FND_TOP/patch/115/import/affrmcus.lct XX_PERWSHRG.ldt
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y UPLOAD $FND_TOP/patch/115/import/affrmcus.lct XX_HZ_ARXCUDCI_STD.ldt
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y UPLOAD $FND_TOP/patch/115/import/affrmcus.lct XX_AP_APXVDMVD.ldt
----------------------------------------------------------------------------------------------------------------------------
Notes :
1. Give special attention when downloading Menus or Responsibilities.
In case your client has several developers modifying Responsibilities and Menus, then be ultra carefull. Not being carefull will mean that untested Forms and Functions will become available in your clients Production environment besides your tested forms, functions and menus.
2. Be very careful when downloading flexfields that reference value sets with independent values for GL Segment Codes.
By doing so, you will download and extract all the test data in GL Codes that might not be applicable for production.
3. There are several variations possible for FNDLOAD, for example you can restrict the download and uploads to specific segments within Descriptive Flex Fields. Please amend the above examples as desired for applying appropriate filterations.
4. The list of examples by no mean cover all possible FNDLOAD entities.
5. FNDLOAD is very reliable and stable, if used properly. This happens to by one of my favourite Oracle utilities.
4. Last but not the least, please test your FNDLOAD properly, so as to ensure that you do not get any unexpected data. In past I have noticed undesired results when the Lookup gets modified manually directly on production, and then the FNDLOAD is run for similar changes. If possible, try to follow a good practice of modifying FNDLOADable data only by FNDLOAD on production environment.
5. As the name suggests, FNDLOAD is useful for FND Related objects. However in any implementation, you will be required to migrate the Setups in Financials and Oracle HRMS from one environment to another. For this you can use iSetup. "Oracle iSetup".
Some of the things that can be migrated using Oracle iSetup are
GL Set of Books, HR Organization Structures, HRMS Employees, Profile Options Setup, Suppliers, Customers, Tax Codes
& Tax Rates, Financials Setup, Accounting Calendars, Chart of Accounts, GL Currencies.
written by Anil Passi , December 09, 2006
The dates or rather the entire RowWho information will be passed in fromm Source System, i.e. whatever is in the ldt file.
Open the lct file by doing
vi $FND_TOP/patch/115/import/afffload.lct
search for string fnd_flex_loader_apis.up_desc_flex
In the parameter last_update_date you can pass sysdate, replacing the value read from ldt file
Please note this is customization and is not supportable
The reason value sets were not included is because they always get downloaded or uploaded along with Flexfield Segments or Conc Program Parameters. But anyway, please find the script for FNDLOAD of value set
$FND_TOP/bin/FNDLOAD apps/apps 0 Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct XX_SSHR_01_ETH_VALUE_SET.ldt VALUE_SET FLEX_VALUE_SET_NAME=XX_HRMS_ETH_ORIGIN
Thanks,
Anil Passi
written by Anil Passi , December 09, 2006
The dates or rather the entire RowWho information will be passed in fromm Source System, i.e. whatever is in the ldt file.
Open the lct file by doing
vi $FND_TOP/patch/115/import/afffload.lct
search for string fnd_flex_loader_apis.up_desc_flex
In the parameter last_update_date you can pass sysdate, replacing the value read from ldt file
Please note this is customization and is not supportable
The reason value sets were not included is because they always get downloaded or uploaded along with Flexfield Segments or Conc Program Parameters. But anyway, please find the script for FNDLOAD of value set
$FND_TOP/bin/FNDLOAD apps/apps 0 Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct XX_SSHR_01_ETH_VALUE_SET.ldt VALUE_SET FLEX_VALUE_SET_NAME=XX_HRMS_ETH_ORIGIN
Thanks,
Anil Passi
written by Vikram Unde , December 26, 2006
I used FBNDLOAD to donload/upload the ldt for Request Set & its Links. I am sucsessful to download the Request Set & its Links from one instance, but the upload to another instance gives error as follows:
---------------------
Uploading from the data file XX_THA_GLDOIUPR_REP_DEF.ldt
Altering database NLS_LANGUAGE environment to AMERICAN
Dump from LCT/LDT files (/u02/appluat/uatappl/fnd/11.5.0/patch/115/import/afcprs
et.lct(115.26), XX_THA_GLDOIUPR_REP_DEF.ldt) to stage tables
Dump LCT file /u02/appluat/uatappl/fnd/11.5.0/patch/115/import/afcprset.lct(115.
26) into FND_SEED_STAGE_CONFIG
Dump LDT file XX_THA_GLDOIUPR_REP_DEF.ldt into FND_SEED_STAGE_ENTITY
Dumped the batch (REQ_SET SQLGL XX_THA_GLDOIUPR_REP , STAGE_PROG 10 ) into FND_S
EED_STAGE_ENTITY
Upload from stage tables
Error loading seed data for STAGE_PROG: APPLICATION_SHORT_NAME = SQLGL, REQUES
T_SET_NAME = XX_THA_GLDOIUPR_REP, STAGE_NAME = 1, SEQUENCE = 10, ORA-01403: no
data found
---------------------
Could you please advice urgently.
Thanks & Regards,
Vikram Unde
written by Anil Passi , January 12, 2007
The most likely cause of ORA-01403 during FNDLOAD is that Custom Application defined in your dev environment does not exist on other environment.
Hi Minal,
I am sorry for the late response to your urgent query, I had a busy day at work today.
For your concurrent program, the parameters must be downloaded by default. Please email me the lct file you are using.
Has anyone modified the afcpprog.lct in your environment? Check if its version differs from other environment. Or email me your lct
Thanks,
Anil Passi
written by Anil Passi , January 18, 2007
.
.
Hi Ruma,
Link http://oracle.anilpassi.com/fi...grams.html
should answer your question, though partially.
Which application did you attach this Request Set to? It is possible that the Request Group against all those responsibilities includes the Application which is attached to your Request Set.
Thanks,
Anil Passi
written by siddh , January 19, 2007
We have customized dashboard functionality in telesales. We have to move it into other instances. can you let me know how to do the download for profile check variables, profile checks, drilldown for profile checks using FNDLOAD. The lct file used is cscprfbk.lct and cscprfck.lct
written by Anil Passi , January 20, 2007
I need to know the APPLICATION to which this request set is attached?
Not the responsibility.
Query the Request Set from Request set definition screen and see which application is that attached to.
I think the APPLICATION associated with your request set is included in most of your request groups.
If so is not the case, then you need to raise Tar. Although, I very much doubt this being a bug.
Thanks,
Anil
written by Anil Passi , January 20, 2007
I need to know the APPLICATION to which this request set is attached?
Not the responsibility.
Query the Request Set from Request set definition screen and see which application is that attached to.
I think the APPLICATION associated with your request set is included in most of your request groups.
If so is not the case, then you need to raise Tar. Although, I very much doubt this being a bug.
Thanks,
Anil
written by siddh , January 22, 2007
Can you send one example to load telesales dashboard objects like profile variables and drilldown using FNDLOAD?
Thanks.
-Siddh
written by Anil Passi , January 23, 2007
I think you need to open the lct file , and see the key parameters in DOWNLOAD section
Also see the UPLOAD section of lct, as that will have the API calls,with parameters mapped to ldt values. This will give you the idea of the attributes that can be migrated.
Thanks,
Anil Passi
written by Venugopal , January 26, 2007
I want to migrate Lookup types with their values from one instance to another. The FNDLOAD with download and upload runs fine for me. But there is no data in the ldt file. There are around 1500 lookup values for a particular lookup type but when I upload it says no data to upload. Checked the ldt file it shows only the lookup type definition. Request you kindly help at the earliest
Thanks and Regards
Venugopal
written by Venugopal , January 28, 2007
Thanks for your quick response. I have changed the lookup_code field size to varchar2(250) but still facing the same issue. I am sending the config file to you ( This e-mail address is being protected from spambots. You need JavaScript enabled to view it ). Request you to go through and suggest changes.
Regards
Venugopal
written by Anil Passi , January 29, 2007
Use the lct file from this link.
See if this works
http://www.anilpassi.com/apps/demo/wf/ic_aflvmlu.lct
Thanks,
Anil Passi
written by Venugopal , January 29, 2007
Tried with the .lct file you provided but it is not working. What could be the issue? Please help.
Regards
Venugopl
written by Nilesh , January 29, 2007
I have created one Oracle Alert in one environment and trying to migrate it to another environment. The original alert action details text has some formatting which is getting lost during upload. Can you suggest me how to maintain this text formatting?
written by Anil Passi , January 31, 2007
.
.
Hi Nilesh,
Interesting, I never moved alerts using fndload.
But anyway, are you transferring the files in ascii mode?
thanks
anil
written by Anil Passi , February 01, 2007
.
.
Hi Alexander,
You need to do two things.
1. check if your ldt file has required information, to ensure download worked successfully. You must be able to locate each and every segment in the ldt file.
2. If your ldt file is OK, then check to see the log file that was created during upload. Are there any error messages in the log file?
Thanks,
Anil Passi
written by rajitha , February 01, 2007
My requirement is to download the part of the menu not whole menu. Is there any option we can set while downloading menu to down load based on sequence no or function name or by prompt name.
From metalink I found following example
CUSTOM_MODE=FORCE will upload any new items in the file that do not currently exist in the database
UPLOAD_MODE=REPLACE will replace any current values with the values in the file
Unix command is
FNDLOAD apps/apps_pwd@oracle_sid 0 Y UPLOAD $FND_TOP/patch/115/import/afsload.lct
$MSC_TOP/patch/115/import/US msctop.ldt - WARNINGS=YES
UPLOAD_MODE=REPLACE CUSTOM_MODE=FORCE
Thanks!
Rajitha
written by Chandrasekar , February 02, 2007
written by Anil Passi , February 02, 2007
I have never tried doing this on a specific Function for Menus.
You can either restrict the fndload to a sub menu OR if you know precisely what menu entries you want, then simply edit the ldt file and remove the unwanted entries.
**Pls test this on other instance, I think it should work, because I can see that lct file is calling fnd_menu_entries_pkg.LOAD_ROW for the Menus available in ldt file
Thanks,
Anil Passi
written by Anil Passi , February 02, 2007
I am yet to use iSetup myself, as I think it does not cover every possible setup.
Also, it appears to be based on linking different environments which involves admni activity, which I find to be a turn-off of getting this agreed with management
any wonder why not many people use iSetup?
written by Anil Passi , February 05, 2007
written by Anil Passi , February 13, 2007
Each data type like value set , flex value etc have a internal id generated by the sequence.
If you do export and import, the value of the sequence used to generate unique key may differ in the two environments. This can cause overlap and conflicts
Hence, use FNDLOAD, because FNDLOAD uses respective APIs
thanks,
anil
written by Anil Passi , March 12, 2007
Please check the width of the columns mentioned in lct file. Possibly one of the column have less number of VARCHAR2(lenngth) than the corresponding length in the fnd_lookup_values
written by Vishal , March 20, 2007
Journal import, when run for the first time, takes a lot of time to complete since it tries to create code combiantions for the first time.
Is there an Oracle API/Script which can be used to pre-create code combinations (Like we have Generate Accounts program in FA) and which also takes care of cross-validation rules.
Thanks.
written by Florin , March 30, 2007
i guess you have to run the fndload commands using the applmgr user on the machine holding the database for oracle apps. is there a way to run this fndload command using another user ?
thanks
written by Anil Passi , March 31, 2007
thanks,
anil
written by Ashok , April 13, 2007
This page is very good and helps a lot. But i have one question, is there any way to rollback the ldt file which is uploaded.
The reason is suppose if i have uploaded the ldt file (Concurrent Program with values) with wrong data, how can i rollback the ldt file.
Thanks
Ashok
written by Ashok , April 13, 2007
This page is very good and helps a lot. But i have one question, is there any way to rollback the ldt file which is uploaded.
The reason is suppose if i have uploaded the ldt file (Concurrent Program with values) with wrong data, how can i rollback the ldt file.
Thanks
Ashok
written by Babu , April 19, 2007
I am using FNDLOAD to migrate a custom report from the test instance to the production instance. i am able to configure everything in the production system except the parameters of the report.i have used the sample scripts that are published in your site, can help me out please in configuring my report parameters from the test system to the prodution system.
thanks in advance.
Thanks & Regards,
Babu.
written by Anil Passi , April 20, 2007
The scipt will download and upload the parameters too. Simply configure your parameters on DEV/TST, then download, and then upload on PRD
Thanks
Anil
written by Satya , April 26, 2007
I have a spreadsheet which has around 300-400 responsibilities and wanted to load into oracle tables.
Does, anybody has any ideas what will the process involved these responsibilities from spreadsheet to oracle tables.
Any ideas will be highly appriciated.
-Satya
written by Vishnu , May 09, 2007
written by Nagesh , May 23, 2007
My Request group which i would like to migrate has lot of other Programs added in that which are not available in Prod.Hence when i try migrating the whole request group, its throwing an error saying it could not find those programs.
However i would like to migrate only one program from that request group onto production using FNDLOAD for reguest group.
Could you please let me know if i could migrate only one(or couple) of concurrent progs from a request group using FNDLOAD. I tried filtering by a parameter UNIT_NAME in it, however it giving blank values for others and causing probs.
Thanks,
Nagesh
written by Michu , May 29, 2007
Can you send some information about Oracle projects, am new to this module, I have to do costing conversions,project conversions
Thanks
written by Dhiman , June 03, 2007
Can we upload forms also using FNDLOAD utility?
If yes, do we need to uploas Form and Form Function separately?
Please advice.
Thanks & Regards,
Dhiman.
written by Anil Passi , June 04, 2007
If you download the menu, that will download both form and form function for you.
To upload just the forms or form functions, kindly use the UPLOAD PARTIAL mode.
Parameters for the entities are:-
FORM
-------
FORM_APP_SHORT_NAME
FORM_NAME
FUNCTION
-----------
FUNC_APP_SHORT_NAME
FUNCTION_NAME
Thanks,
Anil Passi
written by Raj Naik , June 19, 2007
Raj again, i missed one point. What about XML Reports, i mean Data Definition & Templates?
Thanks
Raj Naik
written by Raj Naik , June 19, 2007
Raj again, i missed one point. What about XML Reports, i mean Data Definition & Templates?
Thanks
Raj Naik
written by Ashish Gairola , June 20, 2007
I need one favor.Can we migrate Assign profile options and Asssign security rules using FNDLOADER
written by Anil Passi , June 20, 2007
Migrating profiles by default will transfer all the values for that profile option set at all possible levels.
With regards to Security profiles, please elaborate. Are you referring to the Rules to restrict Value set values?
Thanks,
AniL Passi
written by nagender , July 02, 2007
Good to know about FNDLOAD and its functionalities.
Mr. Anil can we use FNDLOAD to port reports from one environment to another. My requirement is to port reports from 11 to 11i.
Thanks,
Nagender
written by passianil , July 03, 2007
You simply need to copy the rdf file into respective $MODULE_TOP/reports/US
or some other relevant language directory
thanks
anil
written by nagender , July 03, 2007
Thanks for the quick reply.Bur sry, I did not get you, my requirement is to movie all the existing reports/custom reports in 11 environment to 11i(11.5.10.2) environment.
How can we do this, Can it be done using FNDLOAD.
Sorry, If I was not clear in my previous post.
And also Mr.Anil, how can we preserve the customizations we made for forms or reports when we upgrade or migrate to a higher version.
Thanks,
Nagender
written by pruthvi , July 11, 2007
Iam in need of some information from you.
I need to migrate the AOL data into an xl sheet, like all the concurrent program related data along with the parameters it uses and the value sets associated with it will be stored in one tab.In short what ever the data is generated by lct file in the ldt file i need it as an excel sheet.I have tried to convery the data in the ldt file into xl format but iam not successful.Now i am trying to use the lct file and work on the code available in lct file to get the work done.
Can you please suggest me what would be the best way to capture all the AOL related data into an xl sheet or if there are any existing scripts available other that the .lct scripts to perform the job.
Thanks,
Pruthvi M.
written by APassi , July 11, 2007
Your second approach, of using SQL in lct file is the best approach.
In every lct file, there is a DOWNLOAD section that contains SQL's used to extract data.
You should use the same SQL as that in DOWNLOAD section of lct
Thanks,
Anil
written by Sandra , July 30, 2007
thank ypu for script, it helps very much.
I used it for upload fnd_new_messages, upload was succesful,i check table value, but when I start application, there is no change in prompt_text at all. It is still the old value.
Thanks,
Sandra
written by Sandra , July 30, 2007
I generate message file throw adadmin, and it works for all applications except for fnd (for message name with start FND_SSO%).
I have one more question: I also change description for language in table fnd_languages_tl- what should I do to see changes in application?
Regards,
Sandra
written by Kiks , August 10, 2007
--DOWNLOAD from one instance--
FNDLOAD 0 Y DOWNLOAD $ALR_TOP/patch/115/import/alr.lct ALR_ALERTS APPLICATION_SHORT_NAME= ALERT_NAME=
--UPLOAD to another instance--
FNDLOAD 0 Y UPLOAD $ALR_TOP/patch/115/import/alr.lct
Best Regards,
Kiks
written by Tuan , August 29, 2007
I am noving custom responsibilities that has custom Menus and functions. Do I need to FNDLOAD custom Functions and Menus before FNDLOAD custom Responsibility?
written by krishnab , September 13, 2007
When we importing the journals in GL module we need to insert the one row into GL_INTERFACE_CONTROL for each group_id.Now my question is what is the use of inserting the data into GL_INTERFACE_CONTROL table and if I not inserted into GL_INTERFACE_CONTROL what will happen?
written by krishnab , September 14, 2007
In Oracle12i they introduced LEDGER_ID instead of SET_OF_BOOKS_ID,means is it same as SET_OF_BOOKS_ID or any other use?
written by krishnab , September 14, 2007
In Oracle12i they introduced LEDGER_ID instead of SET_OF_BOOKS_ID,means is it same as SET_OF_BOOKS_ID or any other use?
written by krishnab , September 14, 2007
We can extract the data from in 2 ways.
1.Useing UTL File
2.Useing Spool
From above 2 which one is the usefull and preferable?
written by Anita , September 21, 2007
I want to migrate Element,Fast Formula and setup to production Env from development env. Can I migrate Element and Fast Formula using FNDLOAD, If you can provide sample script for the above(FF,Element,Setup Payroll)I will be greatful to you.
Thanks
Anita
written by Marco Ramos , September 26, 2007
ENTITY = PROGRAM and the two parameters APPLICATION_SHORT_NAME and CONCURRENT_PROGRAM_NAME but I keep getting the message below in my log file:
An entity name must be specified for the download operation
written by Dilee , September 27, 2007
Is is posible to download the ldt files of concurrent programs without the values of independent valuesets?
Thanks & Regards,
Dilee
written by ankur jaiswal , October 04, 2007
can we use FNDLOAD to transfer Transaction Type set up IN AME/OAM.
also,could you guide us to create new lcts.
Regards
Ankur
written by naga , October 16, 2007
How can we move XML publisher reports, Templates and Data definitions?
thanks
Siva
written by Vishal Goyal , October 19, 2007
Is there a way to transfer setups like JE Sources/Categories/Security Rules from Instance A to Instance B. We have huge many setups in GL and want to xfer them, rather then using data loader to load them again manually. I have DFFs as well on sources/categories.
Thanks.
Vishal.
written by vinayaksawal , October 23, 2007
First of all we appreciate your dedication towards the APPS community. i am strong follower of your portal
I have one question
My question may be bit wierd for you.
I need to move all the FND objects from one instance to another in one shot is it possible?
and also to that i need whichever are present on the destination sever should not get overlapped.?
Can you please suggest your expertise ?
Cheers,
Vinay
written by Deepthi J , October 25, 2007
written by Deepthi J , October 25, 2007
Followed the steps and setted up the fast formula assistant,but i am not able to upload the fast formula.I am able to download the Fast formula but not able to upload the formula.If you know the process and if can explain me the same that would be of great help.
Thanks
Deepthi
written by Ramachandra , October 29, 2007
I want to pass application short name as parameters for this afscursp.lct
some of the entities like fnd_user etc... did't have application table. so how can i pass application short name as parameter for this afscursp.lct file.
Plese give me advise.
Thank you.
RamaChandra.N
Please give me suggestions.
written by Ramya , October 31, 2007
I have a sample code of downloading the valuesets,concurrent programs and Request Groups using FNDLOAD.
In the request area...in old sample code they had used UNIT_TYPE and UNIT_NAME....what these are related to.
Kindly Clarify...
Ramya
written by punit , November 05, 2007
I have created a concurrent program, which has parameters like cost centre number(using DFF valuesets). I want to move the concurrent program from TEST to production, but i do not want the dff values from Test to overwrite the values in Production. Is there some way we can down load only the vlaue set name in ldt file for Concurrent progtrams not the values.
written by Ramchandra , November 13, 2007
I am Trying to upload Responsibilities individually by using FNDLOAD.
But, it giving error like
Uploading from the data file xxbmc_bcm_responsibility.ldt
Altering database NLS_LANGUAGE environment to AMERICAN
Dump from LCT/LDT files (/u001/app/ocap2dv1/ocap2dv1appl/fnd/11.5.0/patch/115/import/afscursp.lct(115.44), xxbmc_bcm_responsibility.ldt) to stage tables
Dump LCT file /u001/app/ocap2dv1/ocap2dv1appl/fnd/11.5.0/patch/115/import/afscursp.lct(115.44) into FND_SEED_STAGE_CONFIG
Dump LDT file xxbmc_bcm_responsibility.ldt into FND_SEED_STAGE_ENTITY
Dumped the batch (FND_APPLICATION BMCSREV , FND_RESPONSIBILITY BMCSREV BMC_COLLECTIONS_MANAGER ) into FND_SEED_STAGE_ENTITY
Upload from stage tables
Error loading seed data for FND_RESPONSIBILITY: APPLICATION_SHORT_NAME = BMCSREV, RESP_KEY = BMC_COLLECTIONS_MANAGER, ORA-20001: APP-FND-01572: Invalid foreign key data was found for this record.
Value CL_BMC_COLLECTIONS_MANAGER for column MENU_NAME does not exist in table FND_MENUS_VL.
Please give me solution.
Thank you.
Regards
Ramchandra.N
written by Ramchandra , November 13, 2007
I am trying uploading menus individually. but it giving error like
Please give me solution for these error.
Uploading from the data file xxbmc_401_menu.ldt
Altering database NLS_LANGUAGE environment to AMERICAN
Dump from LCT/LDT files (/u001/app/ocap2dv1/ocap2dv1appl/fnd/11.5.0/patch/115/import/afsload.lct(115.59), xxbmc_401_menu.ldt) to stage tables
Dump LCT file /u001/app/ocap2dv1/ocap2dv1appl/fnd/11.5.0/patch/115/import/afsload.lct(115.59) into FND_SEED_STAGE_CONFIG
Dump LDT file xxbmc_401_menu.ldt into FND_SEED_STAGE_ENTITY
Dumped the batch (MENU *NULL* , MENU 401K MAINTENANCE ) into FND_SEED_STAGE_ENTITY
Upload from stage tables
Error loading seed data for FORM: APPLICATION_SHORT_NAME = BMCS, FORM_NAME = BMCS401K, ORA-01400: cannot insert NULL into ("APPLSYS"."FND_FORM"."APPLICATION_ID")
ORA-06512: at "APPS.FND_FORM_PKG", line 23
ORA-06512: at "APPS.FND_FORM_PKG", line 277
ORA-01403: no data found
Error loading seed data for FORM: APPLICATION_SHORT_NAME = BMCS, FORM_NAME = BMCSLOAN, ORA-01400: cannot insert NULL into ("APPLSYS"."FND_FORM"."APPLICATION_ID")
ORA-06512: at "APPS.FND_FORM_PKG", line 23
ORA-06512: at "APPS.FND_FORM_PKG", line 277
ORA-01403: no data found
and another one is
Uploading from the data file xxbmc_ar_menu.ldt
Altering database NLS_LANGUAGE environment to AMERICAN
Dump from LCT/LDT files (/u001/app/ocap2dv1/ocap2dv1appl/fnd/11.5.0/patch/115/import/afsload.lct(115.59), xxbmc_ar_menu.ldt) to stage tables
Dump LCT file /u001/app/ocap2dv1/ocap2dv1appl/fnd/11.5.0/patch/115/import/afsload.lct(115.59) into FND_SEED_STAGE_CONFIG
Dump LDT file xxbmc_ar_menu.ldt into FND_SEED_STAGE_ENTITY
Dumped the batch (MENU *NULL* , MENU AR_CONTROL_GUI ) into FND_SEED_STAGE_ENTITY
Upload from stage tables
written by Mugunthan.S , November 13, 2007
We are trying to do the upgrade from 11.0.3 to 11.5.10.2 (Financials). How simply can we upgrade or migrate the "Custom responsibilities/ menus (include and exclude) to the 11i environment ? Is there a script available or is it part of the upgrade process.
Your help is very much appreciated.
written by Ramchandra , November 14, 2007
I am Trying to upload Responsibilities individually by using FNDLOAD.
But, it giving error like
Uploading from the data file xxbmc_bcm_responsibility.ldt
Altering database NLS_LANGUAGE environment to AMERICAN
Dump from LCT/LDT files (/u001/app/ocap2dv1/ocap2dv1appl/fnd/11.5.0/patch/115/import/afscursp.lct(115.44), xxbmc_bcm_responsibility.ldt) to stage tables
Dump LCT file /u001/app/ocap2dv1/ocap2dv1appl/fnd/11.5.0/patch/115/import/afscursp.lct(115.44) into FND_SEED_STAGE_CONFIG
Dump LDT file xxbmc_bcm_responsibility.ldt into FND_SEED_STAGE_ENTITY
Dumped the batch (FND_APPLICATION BMCSREV , FND_RESPONSIBILITY BMCSREV BMC_COLLECTIONS_MANAGER ) into FND_SEED_STAGE_ENTITY
Upload from stage tables
Error loading seed data for FND_RESPONSIBILITY: APPLICATION_SHORT_NAME = BMCSREV, RESP_KEY = BMC_COLLECTIONS_MANAGER, ORA-20001: APP-FND-01572: Invalid foreign key data was found for this record.
Value CL_BMC_COLLECTIONS_MANAGER for column MENU_NAME does not exist in table FND_MENUS_VL.
Please give me solution.
Thank you.
Regards
Ramchandra.N
written by Sanjib Kundu , November 14, 2007
I find your site very useful. Really worth going thru all the blogs and articles.
My question to you is:
We have implemented 11.5.10.2. In one of our Development instances ( clone of Production instance) we have created several Menu's and Responsibilities. While creating the Menu's we have given 10, 20 , 30 , 40 ... and so on ... as the Sequence Number in the Define Menu's form. When we have FNDLOAD the same Menu's in the production instance the Sequence Number changed from 10, 20, 30 , 40 ..... to 1,2,3,4.
Why this has happened.
Thanks,
Sanjib Kundu
Jamshedpur, INDIA
written by Nitin Gaopande , November 14, 2007
Following are my questions.Hope I get answers:
1. When a concurrent program is downloaded, is EXECUTABLE not required to be downloaded too? or it is created automatically or manually has to be created??
2. Can FNDLOAD delete program once created (but not yet run)??
Thnks for this inforamtive site
Nitin
written by vivekclement , November 15, 2007
We have the same
I want to override the existing Menu's in the 1st instance with the new menu from the 2nd instance. But on a normal FNDLOAD upload it appends to the existing menu items.
Is there any option by which i can upload without deleting the submenu's on the table level and do it from the FNDLOAD itself ?
written by Vinay , November 16, 2007
Thanks & Regards
Vinay
written by Ramchandra , November 16, 2007
While uploading i am getting log files.
1)Uploading from the data file /u001/app/applmgr/ftp/xxbmc_menu_24_BMCSREV_OE _USER.ldt
Altering database NLS_LANGUAGE environment to AMERICAN
Dump from LCT/LDT files (/u001/app/ocap2dv1/ocap2dv1appl/fnd/11.5.0/patch/115/import/afsload.lct(115.59), /u001/app/applmgr/ftp/xxbmc_menu_24_BMCSREV_OE _USER.ldt) to stage tables
Dump LCT file /u001/app/ocap2dv1/ocap2dv1appl/fnd/11.5.0/patch/115/import/afsload.lct(115.59) into FND_SEED_STAGE_CONFIG
Dump LDT file /u001/app/applmgr/ftp/xxbmc_menu_24_BMCSREV_OE _USER.ldt into FND_SEED_STAGE_ENTITY
Dumped the batch (MENU *NULL* , MENU BMCSREV_OE _USER ) into FND_SEED_STAGE_ENTITY
Upload from stage tableswhere
logon is username/password[@connect]
mode is UPLOAD, UPLOAD_PARTIAL or DOWNLOAD
configfile is the configuration file
datafile is the data file
entity is an entity name, or - to specify all values in an upload
param is a NAME=VALUE string used for parameter substitution
batch_id is batch id
Please give me solution for this.
thank you.
Regards
Ramachandra.N
written by prabhakarreddy , November 19, 2007
i want information about tuning in RICE cpmponents.plse
Please give me solution for this.
Thanks and Regards
Prabhakar
written by Ashish_arora , November 26, 2007
written by ramanath kamath , November 27, 2007
please provide detailed information regarding backing up of request sets and trading partner setups
Thanks
Ramanath Kamath
written by amresh , December 18, 2007
How to use in the case of Multilingual Concurrent programs.
Means from english to diffirent languges.
Thanks & Regards,
Amresh
written by RahulHRMS , January 16, 2008
How do i download EIT's.
Thanks ,
Rahul
written by madhusudhan padamatinti , January 18, 2008
This page is very good and helps a lot. But i have one question
I have created one workflow notification in one environment and trying to move it to another environment. Can you suggest me how to move this notification?
Regards
--------
madhu
written by Jim Boyland , January 25, 2008
I used fndload to download one concurrent program and the .lct file seems to contain
every definition for the custom application shortname.
I am hesitant to upload it
FNDLOAD apps/apps002 O Y DOWNLOAD $FND_TOP/patch/115/import/afcpprog.lct 29599_p
rog.ldt PROGRAM APPLICATION_SHORT_NAME="TFND" CONCURRENT_PROGRAM_NAME=
"Tupperware DBA Rebuild Indexes"
written by Seshu Nukala , February 05, 2008
Can you please provide me any FNDLOAD scripts that I can use to download and upload the Chart of Accounts' value set values.
Thanks/
written by Yan , February 11, 2008
Do you have an example for "afffload.lct" file? I am having a problem with the syntax for Qualifer segment values held in COMPILED_VALUE_ATTRIBUTES.
When I download the value set, the output for this attribute is as follows...
COMPILED_VALUE_ATTRIBUTES = "Y
Y"
If I change this to
COMPILED_VALUE_ATTRIBUTES = "N
N" for a particular value, and FNDLOAD in UPLOAD mode, it doesn't make any changes.
Any ideas as to what the syntax should be to change the values of "COMPILED_VALUE_ATTRIBUTES"?
Thanks
written by Natasa Radosevic , February 18, 2008
I generated message file throw adadmin for ICX module and I've got next messages: "No Oracle Message files selected for generation".
Message files for other modules can be generated successfuly and I have a problem only for this one.
What could be a cause?
And is there a solution?
Tnx in advance!
Natasa
written by raj6367 , February 26, 2008
I am using FNDLOAD utility to migrate the req sets from one instance to another. But the req sets are not being updated, after the first time. I mean if i make any changes to req set in dev, then download the req set using FNDLOAD and migrate the same to UAT and upload it. The new changes are not reflected. Am i missing any steps here!! please help. I am also trying by using FORCE for uploading.
for dowload this is the command i used:
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afcprset.lct FNDRSSUB1992_REQ_SET_DEF.ldt REQ_SET REQUEST_SET_NAME="FNDRSSUB1992"
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afcprset.lct FNDRSSUB1992_REQ_SET_LK.ldt REQ_SET_LINKS REQUEST_SET_NAME="FNDRSSUB1992"
For upload this is what i used.
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y UPLOAD $FND_TOP/patch/115/import/afcprset.lct FNDRSSUB1992_REQ_SET_DEF.ldt
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y UPLOAD $FND_TOP/patch/115/import/afcprset.lct FNDRSSUB1992_REQ_SET_LK.ldt
Thanks.
written by Martand Joshi , March 06, 2008
I have uploaded the FNDLOAD to upload the DFF. It has created the DFF but not DFV view. How can we generate it or migrate it ?
Thanks
written by Srini , April 12, 2008
I have seen this question posted before, but some how, I did not find any answer for this. I have gone through your presentation located at: http://oracle.anilpassi.com/fn...ics-2.html.
We are using FNDLOAD utility to migrate AOL objects between instances. This utility migrates the value set values, automatically, along with defeinition of concurrent program, if the concurrent program has any parameter tied to an independent value set. This is causing a major issue of corrupting value set values in the target instance. Is there any option for FNDLOAD, not to bring these value set values from source to target instance, while migrating concurrent programs? Are there any other AOL objects behave the same way?
I have checked the UPLOAD_PARTIAL option. But it is to upload certain given entity, but I did not see any option not to load certain entity from a
downloaded ldt file.
I appreciate your help. This site is really the best one. It has got more detailed information than any other sites/discussion forums, including metalink.
Thanks,
Srini
written by Srini , April 12, 2008
So in this case for uploading a concurrent program, can I use all the entity names on the same command line, excluding value set values, while uploading partial?
Or do I have to upload one entity at a time, for the concurrent program?
Is there any option to DOWNLOAD_PARTIAL, and not to include value set values for a concurrent program?
But how the other companies are handling this situation. Because it's look like a common problem. I have used FNDLOAD about 4 years back, but that version's configuration file is not downloading value set values along with the other entities for conc. program.
Thank You,
Srini
written by Srini , April 13, 2008
Since I have downloaded the conc. program ldt file from source instance, it will have all the entities within the file for coc. progrm. such as program, executable,
parameter, valueset definition and valuset values.
When I upload the same file in the target instance, can I just use FNDLOAD command once and use mulitple entity names on the command line?
Or do I have to use multiple times, one for each entity in the concurrent program ldt file? Because I have to just exclude value set values, but all
other entity definitions from the downloaded ldt file should be uploaded in the target instance.
What is the best practice? Is any documentation by Oracle?
Thank You Very much for your help.
-- Srini
written by TUAN , April 25, 2008
First, I like to thanks for all the valuable works that you done.
I am working on the FNDLOAD the profile option and have a question about it.
I am moving the value of all required profile options for custom responsibilities from instance X to instance Y. However, instance X has more responsibilities
than instance Y. What would happen when I upload the profile options from X to Y?
written by Anil Passi- , April 25, 2008
FNDLOAD for profile options does not extract responsibility_id's.
What happens is this
DURING DOWNLOAD
1. For profile values at resp level, responsibility keys are downloaded
DURING UPLOAD
1. The responsibility keys from downloaded file are translated into responsibility_id [if found]
2. The responsibility_id is then loaded using FNDLOAD into profile options value table
If a responsibility does not exist in target system, then fndload will not be able to derive the resp_id from resp_key. Hence that record will be skipped.
What I am trying to say here is that, I do not foresee data corruption.
Having said so, it is ideal for you to ensure that responsibility_keys in downloaded ldt file exist in target system as well.
It does not matter if the responsibility_id is same or different. What matters is the match between the responsibility_key
Thanks
Anil Passi
written by TUAN , April 25, 2008
Thanks a ton. It's the answer I am looking for.
written by TUAN , May 17, 2008
Please find below is the error during FNDLOAD Profile Options:
Uploading from the data file GL_SET_OF_BKS_ID.ldt
Altering database NLS_LANGUAGE environment to AMERICAN
Dump from LCT/LDT files (/apps5/applmgr/11i/pyriteappl/fnd/11.5.0/patch/115/import/afscprof.lct(115.52), GL_SET_OF_BKS_ID.ldt) to stage tables
Dump LCT file /apps5/applmgr/11i/pyriteappl/fnd/11.5.0/patch/115/import/afscprof.lct(115.52) into FND_SEED_STAGE_CONFIG
Dump LDT file GL_SET_OF_BKS_ID.ldt into FND_SEED_STAGE_ENTITY
Dumped the batch (PROFILE GL_SET_OF_BKS_ID , FND_PROFILE_OPTION_VALUES 10003 LNV_FIN_INV_CA_USER_FI INV ) into FND_SEED_STAGE_ENTITY
Upload from stage tables
Error loading seed data for FND_PROFILE_OPTION_VALUES: PROFILE_NAME = GL_SET_OF_BKS_ID, LEVEL = 10003, LEVEL_VALUE = LNV_CONTROL_TOWER_US, LEVEL_VALUE_APP = CSF, ORA-01403: no data found
Is there any requirements prior to FNDLOAD Profile Options? I was successful with the Responsibility and now trying to the Profile Options but it error out. Can you please help?
Thanks,
Tuan
written by TUAN , May 19, 2008
Both source and target instance are CRP instance. I only migrated the responsibilities that we wanted to keep and carry over to the future production instance. Therefore, the target instance has less responsibilities than the source instance. Also, the FND_USER.USER_NAME is not the same. I am not sure if my DBA abort the job or it abort itsefl when encounter the error but I did not see any thing came over to the target instance. I ws hoping that it would skip to the next record when responsibility key was not found. Do you have any other advise? since I do not want move unwanted responsibilities to move to the target instance.
Thanks,
Tuan
written by Prabhakar Somanathan , June 30, 2008
written by Ram Balasubramanyan , July 16, 2008
Can FNDLOAD be used to migrate OA Framework Personalizations also? Pl. let me know, if there is any others way of migrating these from one instance to another.
Thanks
Ram Balasubramanyan
written by Anil Passi- , July 16, 2008
1. Login to Functional Administrator responsibility
2. Navigate to Personalization tab, and within that Import Export
Ensure that Ro;ot i;r% profile is set to a valid directory on mid-tier
Thanks
Anil Passi
written by Anil Passi- , July 16, 2008
Have a look at this link http://apps2fusion.com/apps/oa...to-another
Thanks,
Anil Passi
written by TUAN , August 01, 2008
Have you done the FNDLOAD for collection elements and collection plans? Can we use FNDLOAD for this? Can you give an example? Your advise is greatly appreciate here.
Thanks in Advande
written by Elaine Fortin , August 08, 2008
I'm getting the error:
"An entity must be specified for the download operation." when running this command:
$FND_TOP/bin/FNDLOAD apps/***** 0 Y download $XDO_TOP/patch/115/import/xdotmpl.lct XMLPData.ldt XDO_DS_DEFINITIONS APPLICATION_SHORT_NAME='HUICX' DATA_SOURCE_CODE='HUICXDELEGRPT'
I tried with double quotes and no quotes as well. Can you see a problem?
Thanks,
Elaine
written by Shiraz , August 10, 2008
Plese can you give the syntax for Downloading Element Types with Input Values using FNDLOAD.
Please if you can help us ASAP, I shall be greatful to you.
Thanks,
Shiraz
written by Shiraz , August 10, 2008
Many thanks for the quick response.
select * from PAY_ELEMENT_TYPES_F where element_name like 'test1'
O/p gives 1 record
But FNDLOAD apps/**** O Y DOWNLOAD $PAY_TOP/patch/115/import/pypett.lct test1.ldt PAY_ELEMENT_TYPES E_ELEMENT_NAME="test1"
Gives no data in ldt file, when substituted E_ELEMENT_NAME with ELEMENT_NAME is the above FNDLOAD command, it gives some data but not for "test1"
Please advice ...
written by Shiraz , August 10, 2008
Thanks for you support.
We have found the problem, its with the lct file as condition "BUSINESS_GROUP_ID is NULL " is hard-coded in it. We have a Business group defined.
Please advice if we can change the condition in lct & Download from UAT instance & Upload to Production instance...
Thanks again,
Shiraz
written by Cyril , September 23, 2008
I reply to the issue of Yann concerning the compiled_value_attributes.
I understand you have infact two fields to populate in the compiled_value_attributes with the values Y and Y (that you have changed with N and N). To solve your problem, modify the ldt file replacing :
'Y
Y'
by : 'Y'||chr(10)|| 'Y'
Then you can upload in the destination environment.
Hope it can help you.
Bye
Cyril
written by Parag gurjar , February 14, 2009
can you suggest me how to move fast formula from one bg to other in bulk
written by Annada , April 14, 2009
We want to transfer all the customized objects in fnd_top from one instnce to another because we are not copying fnd_top.
Can you please help me out.
Its very very urgent.. Thanks a lot
written by Tina , April 28, 2009
I want to download concurrent program along with executable and value sets (even custom ones). Can you please let me know the correct command?
written by nishant , May 15, 2009
Can some one email me how to download and upload the KFF and Profile option definitions !
am not able to do that.
Nishant
written by aryan , July 06, 2009
Can we use fndload to migrate the concurrent programs from 11i ebs to R12 ebs.
Thank you.
written by Siddharth Shah , November 18, 2009
I am trying to create request set from one instance to another. I have downloaded the ldt and am trying to upload the ldt and getting this error.
Uploading from the data file SITEL_GLSTRING_SET.ldt
Altering database NLS_LANGUAGE environment to AMERICAN
Dump from LCT/LDT files (/prod/prodappl/fnd/11.5.0/patch/115/import/afcprset.lct(115.2
, SITEL_GLSTRING_SET.ldt) to stage tables Dump LCT file /prod/prodappl/fnd/11.5.0/patch/115/import/afcprset.lct(115.2
into FND_SEED_STAGE_CONFIG Dump LDT file SITEL_GLSTRING_SET.ldt into FND_SEED_STAGE_ENTITY
Dumped the batch (REQ_SET SITGL FNDRSSUB2458 , STAGE_PROG 10 ) into FND_SEED_STAGE_ENTITY
Upload from stage tables
Error loading seed data for STAGE_PROG: APPLICATION_SHORT_NAME = SITGL, REQUEST_SET_NAME = FNDRSSUB2458, STAGE_NAME = STAGE10, SEQUENCE = 10, ORA-01403: no
data found
I checked for the application and it exists. Please suggest.
Thanks in advance.
Siddharth
| < Prev |
|---|





I tried the command again. I was missing single quotes around APPLICATION_SHORT_NAME and hence was giving me an error. Now it worked fine.
One question. When I uploaded the DFF,
Created By:
Creation Date
Updated By:
Update Date:
same as Updated By:
Update Date:
from the instance from which i downloaded the information.
Is there a way to show the sysdate as creation date ?
1nd Question, I could not find a script above for migrating value sets with the data for them as well. Can you add a script for this.
Thanks for the wonderful scripts.
Vishal.