Login
Register

Home

Trainings

Fusion Blog

EBS Blog

Authors

CONTACT US

Miscellaneous
  • Register

Oracle Gold Partners, our very popular training packages, training schedule is listed here
Designed by Five Star Rated Oracle Press Authors & Oracle ACE's.

webinar new

Search Courses

This article is dedicated for usage of FNDLOAD for Web ADI
Question : Does this article cover FNDLOAD in general?
Answer : This article is dedicated to the usage of FNDLOAD for Web ADI. If you wish to fndload entities other than Web ADI, then kindly visit link Fndload for common utilities.

Question: Why does one need to use FNDLOAD FOR WEB ADI?
Answer : In any implementation that uses Web ADI, the setup for formatting letters and docments can be overwhelming. More importantly, once configured on a development environment you would not like to repeat the tedious setup on test, crp or other environment. Using FNDLOAD you can migrate 99% of your setup.

Question : What are the man steps when using FNDLOAD for Web ADI?
Answer :
First step
Identify the pieces that must be moved across using fndload. These can be:-
Integrators
Layouts
Mappings
Contents
This article covers the above listed components one by one.

Second step
Download the above web adi attributes into various ldt files. Basically we will create one ldt file for each of the above four web adi entities.

Third step
Upload those ldt files into the new environment. For this we will run the fndload in upload mode.


Question: How do I execute Step 1, given that FNDLOAD requires the internal names of these entities, these internal names are not visible from the Web ADI screens?
Answer: In this example,I will demonstrate using scripts how to recognize the web adi components Names for fndload. SQL will be provided to identify the internal names.


Question : Please demo how to FNDLOAD Integrators in Web ADI
Answer :
To identify the integrator codes, run the below SQL.

SELECT integrator_code, application_id
FROM bne_integrators_vl vl
WHERE user_name IN
('XX Request for further references', 'XX Sorry Interview did not work') ;

This will return two internal codes, both in application PER (Application ID 800). Lets say the two internal codes are HR_101_INTG & HR_41_INTG.

Now download these as below:-
FNDLOAD apps/$APPS_PASSWORD 0 Y DOWNLOAD $BNE_TOP/admin/import/bneint.lct XX_HR_101_INTG.ldt BNE_INTEGRATORS INTEGRATOR_ASN="PER" INTEGRATOR_CODE="HR_101_INTG"

FNDLOAD apps/$APPS_PASSWORD 0 Y DOWNLOAD $BNE_TOP/admin/import/bneint.lct XX_HR_41_INTG.ldt BNE_INTEGRATORS INTEGRATOR_ASN="PER" INTEGRATOR_CODE="HR_41_INTG"

In order to upload these
FNDLOAD apps/$APPS_PASSWORD 0 Y UPLOAD $BNE_TOP/admin/import/bneint.lct XX_HR_101_INTG.ldt

FNDLOAD apps/$APPS_PASSWORD 0 Y UPLOAD $BNE_TOP/admin/import/bneint.lct XX_HR_41_INTG.ldt


Question : Please demo how to FNDLOAD Layouts in Web ADI
Answer : To identify the layout codes codes, run the below SQL.

=====Find the Layouts from layout names=====
SELECT LAYOUT_CODE
FROM bne_layouts_vl vl
WHERE user_name IN ('Offer Letter for Job', 'Denial of Job')
==============
Above SQL can return values say XX_C_O_F_T & XX_CODE
To download these layouts
FNDLOAD apps/$APPS_PASSWORD 0 Y DOWNLOAD $BNE_TOP/admin/import/bnelay.lct XX_C_O_F_T.ldt BNE_LAYOUTS LAYOUT_ASN="PER" LAYOUT_CODE="XX_C_O_F_T"

FNDLOAD apps/$APPS_PASSWORD 0 Y DOWNLOAD $BNE_TOP/admin/import/bnelay.lct XX_CODE.ldt BNE_LAYOUTS LAYOUT_ASN="PER" LAYOUT_CODE="XX_CODE"

Now in order to upload these into new environment, use below commands
FNDLOAD apps/$APPS_PASSWORD 0 Y UPLOAD $BNE_TOP/admin/import/bnelay.lct XX_C_O_F_T.ldt

FNDLOAD apps/$APPS_PASSWORD 0 Y UPLOAD $BNE_TOP/admin/import/bnelay.lct XX_CODE.ldt



Question : Please demo how to FNDLOAD mappings in Web ADI
Answer : To identify the mapping codes, run the below SQL.

=====Find the MAPPING CODES from integrator names==
SELECT mapping_code, integrator_code
FROM bne_mappings_vl
WHERE integrator_code IN
(SELECT integrator_code
FROM bne_integrators_vl vl
WHERE application_id = 800
AND user_name IN ('XX HR Reference letter', 'XX HR Sorry Cant offer'))
ORDER BY last_update_date DESC;
Lets say this SQL returns HR_101_MAP & HR_86_MAP

--Now do the download
FNDLOAD apps/$APPS_PASSWORD 0 Y DOWNLOAD $BNE_TOP/admin/import/bnemap.lct XX_HR_101_MAP.ldt BNE_MAPPINGS MAPPING_ASN="PER" MAPPING_CODE="HR_101_MAP"

FNDLOAD apps/$APPS_PASSWORD 0 Y DOWNLOAD $BNE_TOP/admin/import/bnemap.lct XX_HR_86_MAP.ldt BNE_MAPPINGS MAPPING_ASN="PER" MAPPING_CODE="HR_86_MAP"

To upload these files into a new environment, ftp the ldt files and run below commands on the new environment

FNDLOAD apps/$APPS_PASSWORD 0 Y UPLOAD $BNE_TOP/admin/import/bnemap.lct XX_HR_101_MAP.ldt

FNDLOAD apps/$APPS_PASSWORD 0 Y UPLOAD $BNE_TOP/admin/import/bnemap.lct XX_HR_86_MAP.ldt

Question : Is FNDLOAD of Web ADI contents similar to above?
Answer : Its slightly different, as to recognize the contents I had to use the date range to pick all the content codes configured in Web ADI during the past 90 days.
=====================
SELECT CONTENT_CODE
FROM bne_content_cols_vl
WHERE last_update_date > SYSDATE - 90
group by CONTENT_CODE ;

=====================
CONTENT_CODE
--------------
HR_101_CNT
HR_41_CNT

For each content code returned by SQL above, we will now do FNDLOAD as below

FNDLOAD apps/$APPS_PASSWORD 0 Y DOWNLOAD $BNE_TOP/admin/import/bnecont.lct XX_HR_101_CNT.ldt BNE_CONTENTS CONTENT_ASN="PER" CONTENT_CODE="HR_101_CNT"

FNDLOAD apps/$APPS_PASSWORD 0 Y DOWNLOAD $BNE_TOP/admin/import/bnecont.lct XX_HR_41_CNT.ldt BNE_CONTENTS CONTENT_ASN="PER" CONTENT_CODE="HR_41_CNT"

Obviously to upload Web ADI contents, use the below commands

FNDLOAD apps/$APPS_PASSWORD 0 Y UPLOAD $BNE_TOP/admin/import/bnecont.lct XX_HR_101_CNT.ldt

FNDLOAD apps/$APPS_PASSWORD 0 Y UPLOAD $BNE_TOP/admin/import/bnecont.lct XX_HR_41_CNT.ldt

Anil Passi

Comments   

0 #1 Lee Kirwan 2006-12-20 00:00
When I performed a download on the FNDLOAD with WEBADI all the information downloads successfully. When I upload the information to the new environment the integrator and the layout do not seem to be linked when I try to export data. Do you know the reason for this? The FNDLOAD does not seem to work 100%. Can some one please help?
Quote
0 #2 Lee Kirwan 2006-12-20 00:00
When I performed a download on the FNDLOAD with WEBADI all the information downloads successfully. When I upload the information to the new environment the integrator and the layout do not seem to be linked when I try to export data. Do you know the reason for this? The FNDLOAD does not seem to work 100%. Can some one please help?
Quote
0 #3 sreenivasula reddy 2007-01-16 00:00
The FNDLOAD for Oracle web ADI is exalent
Quote
0 #4 sreenivasula reddy 2007-01-16 00:00
The FNDLOAD for Oracle web ADI is exalent
Quote
0 #5 Anil Passi 2007-03-01 00:00
Hi praveen

The reports are not loaded into the database, hence no FNDLOAD is needed for those.

All you need to do is to use FNDLOAD for is to load things into database, like menu definitions, messages, responsibility definition etc.

for a report with executable name POPRINT.rdf
it will most likely be copied to $PO_TOP/reports /US

Thanks
anil
Quote
0 #6 Praveen 2007-03-01 00:00
Hi Anil,

Can you please help me on FND_LOAD. Suppose I want to put back a customised report in the appropriate custom folder in apps, how do I invoke FND_LOAD? can you give an example.

Ple ase help me on this.

p.s.: i dont know if i have place my query in the appropriate thread. so please send me an email if you cant answer it here.
Quote
0 #7 Praveen 2007-03-05 00:00
Hi Anil,

Thanks for the reply. I think I am pretty clear about this now.

Regards ,
Praveen
Quote
0 #8 Ashokkumar 2007-06-21 00:00
Would like to have guideline for WebAdi, mainly on,

- Involvement of Technical professional
- Architecture/ta ble/column knowledge required?
- Pre-requisite ( if any )
- Difficulties, Issues faced
- Path/method to utilize webadi for different instances to upload data

Would like to know, the path to work out with Webadi for success for multiple instances. There can be two alternatives, either to enter data for a instance or to use webadi to upload data from .xls file.

For using webadi, person should know the table/columns of modules/functio nality? Can a functional consultant able to upload data from .xls file to Apps?

Lookin g for your advice/guidance ...
Quote
0 #9 subbareddy 2007-09-24 06:39
hi anil,
iam new person to apps.so can u explain how to use fndload program,lct file etc........
Quote
0 #10 subbareddy 2007-09-24 06:41
hi anil,
iam new person to apps.so can u explain how to use fndload program,lct file etc........
wai ting for ur reply.
thank u.
Quote
0 #11 chetandeep 2007-10-20 01:27
Hi Anil,

I want to create a WEB ADI template and want to restrict the LOV on currency to certain specific currencies only - do not want all enabled currencies in the LOV.

Is it possible using SQL type in Web ADI ? Or some other way to do this.

Thnks.
Quote
0 #12 lashmi 2007-12-07 08:57
this fnd loader used for wed adi concept is very good
Quote
0 #13 superwoman 2010-08-03 05:40
Hi Kali or other

Thanks for the awesome article. I am new to WEB ADI . And I did follow all your step. After creating the integrator , Interface and Layout thru backend , I could update the layout but when I clicked on Create document the integrator list did not come up my custom.

Hope are able to send me the Developer Guide.My id is
'>
Quote
0 #14 Saurabh Shrivastava Apps HRMS 2012-03-07 02:22
Please use $BNE_TOP/patch/ 115/import/bnei ntegrator.lct instead of $BNE_TOP/admin/ import/bnemap.l ct as bnemap.lct has been deprecated for R12. It migrates all the components all at once. No need to migrate each component separately.

Th anks
Saurabh
Quote
0 #15 Click This Link 2022-04-19 04:20
If you would like to increase your know-how simply keep visiting
this site and be updated with the newest information posted here.
Quote
0 #16 Discover More 2022-04-19 06:59
Link exchange is nothing else but it is only placing the other person's blog
link on your page at proper place and other person will also do same for you.
Quote
0 #17 Available Here 2022-06-02 06:29
Quality posts is the crucial to interest the users to go to
see the web site, that's what this web site
is providing.
Quote

Add comment


Security code
Refresh

Search Trainings

Fully verifiable testimonials

Apps2Fusion - Event List

<<  Apr 2024  >>
 Mon  Tue  Wed  Thu  Fri  Sat  Sun 
  1  2  3  4  5  6  7
  8  91011121314
15161718192021
22232425262728
2930     

Enquire For Training

Related Items

Fusion Training Packages

Get Email Updates


Powered by Google FeedBurner