About FNDLOAD

Hi All,
I have basic questions about FNDLOAD
If I am not wrong FNDLOAD is used to move the executables, concurrent programs, and request set etc. from one instance to another instance. Am I correct?
Where could be write these FNDLOAD script to run it (script)? And How do we run this script?
Is FNDLOAD is utility or Tool like SQL*LOADER?
In FNDLOAD we have two files with extensions “.lct” and “.ldt” could you distinct these files?
Where could we place these file in server? And could we register this script as concurrent program?
What is technical person job in FNDLOAD? Please guide me where do we get PDF file or documentation about this.
Any help would appreciate.
Thanks and Regards,
[email protected]

If I am not wrong FNDLOAD is used to move the executables, concurrent programs, and request set etc. from one instance > to another instance. Am I correct?The Generic Loader (FNDLOAD) is a concurrent program that can move Oracle Applications data between database and text file representations. The loader reads a configuration file to determine what data to access.
Is FNDLOAD is utility or Tool like SQL*LOADER?In 11.5, all patches to AOL seed data must use loaders and not sql scripts. Supported loaders in 11.5 are:
FNDSLOAD - Function security data (forms, functions, menus) * For backward compatibility only
WFLOAD - All Workflow data
AKLOAD - AK data
FNDLOAD - Generic loader for all other entities
In FNDLOAD we have two files with extensions “.lct” and “.ldt” could you distinct these files?The Generic Loader downloads data from a database according to a configuration (.lct) file, and converts the data into a data file (.ldt file). The Generic Loader can then upload this data to another database using a configuration file.
The loader operates in one of two modes: download or upload. In the download mode, data is downloaded from the database to a text file; in the upload mode, data is uploaded from a text file to the database.
Where could be write these FNDLOAD script to run it (script)? And How do we run this script?FNDLOAD config files for AOL entities can be found in $FND_TOP/patch/115/import/*.lct, all currently defined config files are listed in Note: 117084.1 - 11i: FAQ API FNDSLOAD LOADERS
https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=117084.1
Where could we place these file in server? And could we register this script as concurrent program?
What is technical person job in FNDLOAD? Please guide me where do we get PDF file or documentation about this.Please check "Oracle Applications System Administrator’s Guide - Conguration - Release 11i Manual", Part No. B13925-06
http://download-uk.oracle.com/docs/cd/B25516_14/current/acrobat/115sacg.zip

Similar Messages

  • Using FNDLOAD to upload data of all employees into fnd_user form?

    Hi
    I have created a production clone instance. In clone instance, i have to create all users in fnd_user (user form) those exists in HR employees (HR module) for accessing self service application. Each employee in HR will have a fnduser (username=employee_number). How can i upload 1400 employees (employee_name,employee_number) from HR module to fnduser form? I wanted to do it using FNDLOAD? Is it possible?
    Extracting data from HR schema and uploading through DATALOAD is possible. But i would like to do it using FNDLOAD. Please suggest.
    Regards
    Ariz

    Hi Ariz;
    Please see below link which could be helpful for your issue:
    http://www.oracleappshub.com/aol/its-all-about-fndload/
    Re: Ebs R12 : Question regarding Reports
    Also see:
    http://apps2fusion.com/apps/18-oracle-scripts/356-fnd-user-create-update-responsibility-scripts
    Regard
    Helios

  • FNDLOAD giving error while downloading

    Dear,
    We are using below mentioned command through applmgr user by switching off 'FND_TOP' and executed this but getting error as mentioned.
    FNDLOAD apps/apps 0 Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct HR_Position_Functions.ldt VALUE_SET FLEX_VALUE_SET_NAME='HR_Position_Functions'
    ---error
    APP-FND-01564: ORACLE error 12545 in AFPCOA
    Cause: AFPCOA failed due to Error while trying to retrieve text for error ORA-12545
    The SQL statement being executed at the time of the error was: and was executed from the file .

    We are using below mentioned command through applmgr user by switching off 'FND_TOP' and executed this but getting error as mentioned.
    FNDLOAD apps/apps 0 Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct HR_Position_Functions.ldt VALUE_SET FLEX_VALUE_SET_NAME='HR_Position_Functions'
    ---error
    APP-FND-01564: ORACLE error 12545 in AFPCOA
    Cause: AFPCOA failed due to Error while trying to retrieve text for error ORA-12545Did you source the application env file before running the command? Can you connect to the database as applmgr user after you source the env file?
    Is the issue with this specific lct file?
    Tips About FNDLOAD [ID 735338.1]
    Thanks,
    Hussein

  • Unable to load Operating Unit Mode using fndload.

    Hello experts,
    I am trying to migrate a concurrent program using an ldt file from one instance to another. As you may know R12 has this security feature where you can run the program with single or multiple operating unit mode. I ran fndload to upload the concurrent program to another instance and it completes with no error but it does not set the operating unit mode to Single. It is null. Has anyone encountered this?
    Here are the steps I have done:
    I copied XXF5_PO_PRINT.ldt file to $FND_TOP/patch/115/import directory
    Executed the following command:
    FNDLOAD apps/<<password>> O Y UPLOAD $FND_TOP/patch/115/import/afcpprog.lct XXF5_PO_PRINT.ldt PROGRAM APPLICATION_SHORT_NAME=XBOL CONCURRENT_PROGRAM_NAME=XXF5_PO_PRINT

    I ran fndload to upload the concurrent program to another instance and it completes with no error but it does not set the operating unit mode to Single. It is null. Has anyone encountered this?Is this parameter set on the source instance? Can you find it in the ldt file? If yes, you may edit the ldt file and try the same command again.
    Also, please use CUSTOM_MODE=FORCE and/or UPLOAD_MODE=REPLACE options and see if it helps.
    Tips About FNDLOAD [ID 735338.1]
    FNDLOAD Download / Upload Concurrent Programs Fails To Load Parameters [ID 1101946.1]
    How to Upload the 'ldt' files Manually [ID 1092694.1]
    Thanks,
    Hussein

  • How to reuse a value set in the filter into an LMD process

    Using apex 3.2, I'm wondering how to re-use the value currently set into the filter (interactive report) into a LMD process attached to a button created on the same page.
    The process on Submit - after validations and computations, I presume, should look like to the following statement, but in a dynamic way:
    begin
    insert into table2 select * from table1
    where study = 'ABCD';
    end;
    I tested the following clauses options, which none of them work:
    a) where study = :STUDY
    b) where study = :IR_STUDY
    setting the debbug to on, I could realize that the report was based on (apparently, APEX generates APXWS_EXPR_1 bind variable for the first parameter and APXWS_EXPR_2 if a second parameter is used into the filter, and so on...) :
    where ("STUDY" = :APXWS_EXPR_1)
    and then saw :
    0.28: IR binding: ":APXWS_EXPR_1"="APXWS_EXPR_1" value="ABCD"
    0.28: IR binding: ":APXWS_MAX_ROW_CNT"="APXWS_MAX_ROW_CNT" value="10000"
    of course, I thought that the clause 'where ("STUDY" = :APXWS_EXPR_1)' could work. Unfortunaltely, not.
    any king of support is welcome.
    Thanks a lot,
    Bruno

    but I don't know how to execute it from putty ? Can some one help me.Use the same command. Just make sure you are logged in as applmgr user and source the application env file before you run the command. Also, make sure you issue the command in a directory where applmgr has read/write privilege.
    How to Load Value Set Values When Using Fndload To Load A Concurrent Program [ID 252853.1]
    Tips About FNDLOAD [ID 735338.1]
    How To Download A Single Flexfield Structure Using FNDLOAD? [ID 745689.1]
    Download Multiple Flexfields From FNDLOAD [ID 316600.1]
    Thanks,
    Hussein

  • How to duplicate user in Oracle apps?

    Hi, there
    I am new to Oracle apps(11i). A very simple question: how can I duplicate (create like) a predefined user in the demo applications?
    TIA.
    Regards,
    Yatao
    null

    Karandeep wrote:
    Hello everyone,
    We are working on r12 upgrade project. We have a requirement to do the performance testing of our new r12 application.
    Requirement :-
    Let us thing if at the same time 100 of user's are logged in and using the application then application should not have any performance issue's ......pages should work fine .
    So, now we have some existing super users in our project .They have some extra privilages and roles to open some of the page and to perform some of the tasks which cant be possible to do from an ordinary user.
    I want to know that is it possible to grant the same privilages to ordinary user's if yes then how or how can I find that what roles and privilages has been given to a super user .
    Regards
    KarandeepUse FNDLOAD to create new users and migrate the same responsibilities of superusers.
    Tips About FNDLOAD [ID 735338.1]
    How To Create A New User From Existing User With Same Responsibilities [ID 1474294.1]
    Thanks,
    Hussein

  • How to copy form persoalizations ?

    I have some personalization done on my development instance (AppsDev) on different forms (not OAF pages). I assigned these personalization to my user (named AppsDeveloper) only while I was doing work. Now the problem is, I have 12 forms and there are 18 to 20 personalization on each form, which I have to assign on 44 users (each user have separate responsibility). Is there any way to copy these personalization for each user for every form.
    Regards

    Please see these docs.
    Tips About FNDLOAD [ID 735338.1]
    Forms Personalizations Fndload Upload Missing Data [ID 413019.1]
    Also, please see old thread for similar discussion -- http://forums.oracle.com/forums/search.jspa?threadID=&q=affrmcus.lct&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Downloading FND Messages in all languages in one go

    Hi All,
    I 've a requirement to download FND_MESSAGES using FND_LOAD in all available languages in one go. But, Looks like the fnd_load command (afmdmsg.lct) downloads only the message corresponding to the current language setting (NLS_LANG). Can you please let me know whether it 's possible to get messages in all available languages using a single run of the FND_LOAD command.
    Any pointers on this will be immensely helpful.
    Thanks,
    Ganapathi

    Hi Ganapathi;
    Please follow below and see its helpfull:
    http://www.oracleappshub.com/aol/its-all-about-fndload/
    http://oracle.anilpassi.com/oracle-fndload-script-examples.html
    http://arunrathod.blogspot.com/2008/08/fndload-commands.html
    http://www.jiltin.com/index.php/oracle-applications/11i-scripts/fndload/
    Regard
    Helios

  • Is there any best practice for printer configuration for test environment?

    My Oracle ebs test environment has a scheduled refresh period where it will be refreshed with production test data and configuration time to time for BA, Dev to work on their enhancement.
    However, all the printer configurations are still pointing to production ones after refreshed, which means whenever there is a testing on-going, the doc / label / invoices will be printed to production printer.
    May I know if there is a way to globally change all the printer setup for the test environment, so that nothing will be directly to production?... Please assist.
    (currently, the only way is to change one by one and only if you are aware of it...)
    In case your organization has any other strategy on this matter, pls share also... Thanks a lot.

    user6775047 wrote:
    My Oracle ebs test environment has a scheduled refresh period where it will be refreshed with production test data and configuration time to time for BA, Dev to work on their enhancement.
    However, all the printer configurations are still pointing to production ones after refreshed, which means whenever there is a testing on-going, the doc / label / invoices will be printed to production printer.
    May I know if there is a way to globally change all the printer setup for the test environment, so that nothing will be directly to production?... Please assist.
    (currently, the only way is to change one by one and only if you are aware of it...)
    In case your organization has any other strategy on this matter, pls share also... Thanks a lot.If you do not want to use same printers then you have to it to point to the (TEST/BA Printers) after you are done with Rapid Clone. Any new printers need to be added manually (just the same way you defined you PROD printers) -- Rapid Clone Documentation Resources For Release 11i and 12 [ID 799735.1]
    If you want to edit the configuration, you could use FNDLOAD to download printers definition from the source instance, update the ldt file and use FNDLOAD to upload printers definitions.
    Is It Possible To Download/Upload Printer Definitions Using Fndload [ID 432616.1]
    Tips About FNDLOAD [ID 735338.1]
    Thanks,
    Hussein

  • Moving Roles,Role-relations& Permissions

    Hey everyone!
    I am currently trying to embed the Role-Based Access Control in our existing E-Business Suite System.
    I managed to figure out the basics, but my main problem is to take the roles, role-relations and permissions from the development to our test environment.
    I tried to find something about the problem in the documentation and on the internet, but couldn't find any information.
    If anyone have implemented this, i would appreciate a solution or a hint!
    Thank you in advance.

    I have not tried using this personally for RBAC objects, but FNDLOAD executable will likely fit some of your needs
    Tips About FNDLOAD [ID 735338.1]
    HTH
    Srini

  • OM_Concurrent manager menu is not appearning in Responsibility

    Hi Oracle Gurus,
    I have created responsibility for Orader management and given Menu as ONT_SUPER_USER for running concurrent programs but most of concurrent programs has not been assigned to this user group.
    If I check vision operations responsibility "Order management, Vision operations(USA) menu is ADS_OM_SUPERMENU but same menu is not appearing in UAT/ CRP instances, we are finding very difficult to get concurrent programs.
    If anyone know how to get ADS_OM_SUPERMENU assignment to get the menu in list of values, please advise the setups, step to be followed.
    Responses are highly appreciated.

    I have created responsibility for Orader management and given Menu as ONT_SUPER_USER for running concurrent programs but most of concurrent programs has not been assigned to this user group.What do you mean by user group? Did you mean to say Request Group?
    If I check vision operations responsibility "Order management, Vision operations(USA) menu is ADS_OM_SUPERMENU but same menu is not appearing in UAT/ CRP instances, we are finding very difficult to get concurrent programs.Please verify the Request Group instead of the menu as the menu shows what forms/functions you can run from the responsibility but not the concurrent programs.
    If anyone know how to get ADS_OM_SUPERMENU assignment to get the menu in list of values, please advise the setups, step to be followed.
    Responses are highly appreciated.If you want to transfer the menu, then use FNDLOAD or create it manually.
    How To Download a Parent Menu and Submenus [ID 369421.1]
    Tips About FNDLOAD [ID 735338.1]
    Replicating Custom Menu [ID 839879.1]
    Thanks,
    Hussein

  • Help needed to Copy Queries from one User Favorites to other

    Hi Experts,
    We have one requirement to copy Queries from favorites of one user to other,But issue that while i am trying this in sandbox for any new user it is working with SE 37 Function module -FAVOS_EVENT_ADD_TO_USER_SHELF Approach then Queries are visble on Favorites on USER MENU.
    And for any other existing user if we use this Function Module ,Queries saved to fav are not visible in USER MENU screen although it is visible in TABLE SMEN_BUFFC.
    Please advice on this.
    Thanks
    Nilesh

    Hi,
    Use FNDLOAD.
    Note: 364558.1 - How To Use FNDLOAD To Download Responsibilities With All Security Groups, Not Just STANDARD
    Note: 735338.1 - Tips About FNDLOAD
    FNDLOAD responsibility
    FNDLOAD responsibility
    use FNDLOAD to download the profile setup for a responsibility
    use FNDLOAD to download the profile setup for a responsibility
    Thanks,
    Hussein

  • How to identify the OAF customizations and personalizations

    Hi All,
    We are in the process of upgrading from 11.5.10 to 12.1.3
    There are certain customizations and personalizations done on many OAF pages of various modules (like Self service, iRec, iSupplier, etc)
    Will the upgrade impact these customizations/personalizations? If so, will it be entirely removed and do we need to redo the customizations/personalizations over again?
    Also, I have another need for identifying the existing customizations and personalizations (in 11.5.10) in OAF pages. There are no documents with us which will explain the existing customizations/personalizations in OAF . Need to identify the same. Is there a way which i can follow to identify these?.
    Any pointers on this will be really helpful
    Thanks,
    Mohan

    Can you please give me some pointers on identifying/migrating the OAF personalizations/customizations
    Any documents/links to the same will be really helpfulRun the query in this thread to find the list of personalizations -- Re: Can I get a report of all personalizations?
    To migrate personalization, please refer to:
    Upgrading Form Personalizations and OA Framework Personalizations from Oracle E-Business Suite Release 11i to 12.1 (Doc ID 1292611.1)
    Customization in Oracle Applications (Doc ID 743490.1) -- Moving Personalizations between instances
    Tips About FNDLOAD (Doc ID 735338.1)
    Thanks,
    Hussein

  • How to save the printer configuration

    Hi
    currently our EBS QA has nearly 20 printers configured and it is due for refresh . my concern is how can i save this before i do the cloning so that I dont have to add it back again after the cloning. what is the standard approach to this . please let me know
    thanks
    Kart

    currently our EBS QA has nearly 20 printers configured and it is due for refresh . my concern is how can i save this before i do the cloning so that I dont have to add it back again after the cloning. what is the standard approach to this . please let me know Use FNDLOAD to download the definitions of those printers then upload them after the clone.
    Is It Possible To Download/Upload Printer Definitions Using Fndload [ID 432616.1]
    Tips About FNDLOAD [ID 735338.1]
    https://forums.oracle.com/forums/search.jspa?threadID=&q=FNDLOAD+AND+Printer&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • FND Load Problem

    Hi,
    I'm using the following command to create an ldt file for a concurrent program
    FNDLOAD apps/apps DOWNLOAD $FND_TOP/patch/115/import/afcpprog.lct XX_PAIVR_PROJECTS1.ldt PROGRAM CONCURRENT_PROGRAM_NAME='XXVW Projects All Loader Program' APPLICATION_SHORT_NAME='PA'
    the log file generated has following result
    module:
    Current system time is 28-JAN-2011 12:45:02
    The file PROGRAM could not be opened for reading
    Can anyone please help
    Thanks
    Kumar

    Sorry, run this command again (we missed the 0 and Y in the command).
    FNDLOAD apps/apps 0 Y DOWNLOAD $FND_TOP/patch/115/import/afcpprog.lct XX_PAIVR_PROJECTS1.ldt PROGRAM CONCURRENT_PROGRAM_NAME="XXVW Projects All Loader Program" APPLICATION_SHORT_NAME="PA"
    See (Tips About FNDLOAD [ID 735338.1]) for an example.
    Thanks,
    Hussein

Maybe you are looking for