How to Migrate Web ADI template from one EBS Instance to other EBS instance
Following are the components that are associated to the Web ADI that can be migrated from one instance to another:
- Integrators
- Layouts
- Mappings
- Contents
Integrators:
Identify the Integrator to migrate as below,
select integrator_code, application_short_name
from apps.bne_integrators_vl bnv
,apps.fnd_application_vl fav
where bnv.user_name = &integrator_name
and fav.application_id = bnv.application_id;
Download the Integrator:
FNDLOAD apps/$APPS_PASSWORD 0 Y DOWNLOAD $BNE_TOP/patch/115/import/bneintegrator.lct INTEGRATOR_LDTFILE.ldt BNE_INTEGRATORS INTEGRATOR_ASN="appl_short_name" INTEGRATOR_CODE="integrator_name"
Upload the Integrator:
FNDLOAD apps/$APPS_PASSWORD 0 Y UPLOAD $BNE_TOP/patch/115/import/bneintegrator.lct INTEGRATOR_LDTFILE.ldt
Layouts:
Identify the Layout to migrate as below,
select layout_code
from apps.bne_layouts_vl
where user_name = &layout_name;
Download the Layout:
FNDLOAD apps/$APPS_PASSWORD 0 Y DOWNLOAD $BNE_TOP/patch/115/import/bnelay.lct LAYOUT_LDT.ldt BNE_LAYOUTS LAYOUT_ASN="appl_short_name" LAYOUT_CODE="Layout_code"
Upload the Layout:
FNDLOAD apps/$APPS_PASSWORD 0 Y UPLOAD $BNE_TOP/admin/import/bnelay.lct LAYOUT_LDT.ldt
Mappings:
Identify the Mapping to migrate as below,
select mapping_code
from apps.bne_mappings_vl
where integrator_code = &integrator_code
Download the Mapping:
FNDLOAD apps/$APPS_PASSWORD 0 Y DOWNLOAD $BNE_TOP/patch/115/import/bnemap.lct MAPPING_LDT.ldt BNE_MAPPINGS MAPPING_ASN="appl_short_name" MAPPING_CODE="Mapping_code"
Upload the Mapping:
FNDLOAD apps/$APPS_PASSWORD 0 Y UPLOAD $BNE_TOP/admin/import/bnemap.lct MAPPING_LDT.ldt
Contents:
Identify the Contents to migrate as below,
select content_code
from apps.bne_contents_vl
where integrator_code = &integrator_code
Download the Contents:
FNDLOAD apps/$APPS_PASSWORD 0 Y DOWNLOAD $BNE_TOP/patch/115/import/bnecont.lct CONTENT_LDT.ldt BNE_CONTENTS CONTENT_ASN="appl_short_name" CONTENT_CODE="Content_code"
Upload the Contents:
FNDLOAD apps/$APPS_PASSWORD 0 Y UPLOAD $BNE_TOP/admin/import/bnecont.lct CONTENT_LDT.ldt
Post a Comment
Post a Comment