Thursday, March 15, 2018

How to download form personalization and upload it to another instance

Step 1: Download your personalization.
From Linux, set the environment file, your .ldt file will be created on the current directory

FNDLOAD <apps_user>/<password> 0 Y DOWNLOAD

$FND_TOP/patch/115/import/affrmcus.lct <file_name>.ldt FND_FORM_CUSTOM_RULES

form_name=<form_name>

 Here three parameters are used :

<apps_user>    = apps user name normally apps
<password>     = apps password
<file_name>      = file name (in our case test.ldt)
<form name>    = form name can be get form Help > About Oracle Applications

Usage:
FNDLOAD apps/*** 0 Y DOWNLOAD $FND_TOP/patch/115/import/affrmcus.lct test.ldt

FND_FORM_CUSTOM_RULES form_name=FNDSCAUS


Step 2: Upload your personalization to another instance.

 From Linux, set the environment file, go to the path where .ldt file is copied

 FNDLOAD <apps_user>/<password> 0 Y UPLOAD$FND_TOP/patch/115/import/affrmcus.lct

 <file_name>.ldt

Usage:
FNDLOAD apps/*** 0 Y UPLOAD $FND_TOP/patch/115/import/affrmcus.lct test.ldt


Example :

TO DOWNLOAD:
FNDLOAD apps/$CLIENT_APPS_PWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/affrmcus.lct OEXOEORD.ldt FND_FORM_CUSTOM_RULES fnd_form_name="ONT_OEXOEORD" 


TO UPLOAD: 
FNDLOAD apps/$apps_pwd 0 Y UPLOAD $FND_TOP/patch/115/import/affrmcus.lct OEXOEORD.ldt FND_FORM_CUSTOM_RULES form_name='OEXOEORD'

No comments:

Post a Comment