Haz
12
2015

FND_LOAD Metodu İle Geliştirmelerin Farklı Ortamlara Taşınması

Merhaba,

Bu konuda FND_LOAD download/upload yöntemi kullanarak test ya da devolopment ortamlarda yaptığımız geliştirmelerin, canlı ya da farklı ortamlara nasıl aktarılabileceğini göreceğiz.

FND_LOAD Yöntemi ile test ya da development ortamlarında oluşturulan geliştirmeler ve setuplar download yöntemi ile indirilerek, daha sonra istediğimiz farklı bir ortama upload yöntemi ile hızlıca taşınabilir. Bu yöntemi kullanılarak ortam taşıması yapabileceğimiz işlemler,
– Form tanımlamaları,
– Menü tanımlamaları,
– Eş zamanlı tanımlamaları,
– Ekran kişiselleştirmeleri,
– Profil tanımlamaları,
– Değer kümeleri,
– Esnek alanlar,
– Arama kodları

gibi işlemler olabilir.

Download İşlemleri için Aşağıdaki Scriptler Kullanılabilir

 

 echo ON
 
echo "Apps Password :"
stty -echo
read AppsPWD;
stty echo
 
myHost=`sh -c 'hostname'`
 
CurrentDir=`pwd`
export CurrentDir
 
IFS="
"
export NLS_LANG="Turkish_America.WE8ISO8859P9" 
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afsload.lct $CurrentDir/FORM.ldt FORM APPLICATION_SHORT_NAME="XX%"
 
IFS="
"
export NLS_LANG="Turkish_America.WE8ISO8859P9" 
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afsload.lct $CurrentDir/FUNCTION.ldt FUNCTION FUNCTION_NAME="XX%"
 
 
IFS="
"
export NLS_LANG="Turkish_America.WE8ISO8859P9" 
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afsload.lct $CurrentDir/MENU.ldt MENU MENU_NAME="XX%"
 
IFS="
"
export NLS_LANG="Turkish_America.WE8ISO8859P9" 
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afscursp.lct $CurrentDir/FND_RESPONSIBILITY.ldt FND_RESPONSIBILITY APPLICATION_SHORT_NAME="XX%"
 
IFS="
"
export NLS_LANG="Turkish_America.WE8ISO8859P9" 
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afcpprog.lct $CurrentDir/EXECUTABLE.ldt EXECUTABLE APPLICATION_SHORT_NAME="XX%"
 
IFS="
"
export NLS_LANG="Turkish_America.WE8ISO8859P9" 
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afcpprog.lct $CurrentDir/PROGRAM.ldt PROGRAM APPLICATION_SHORT_NAME="XX%"
 
IFS="
"
export NLS_LANG="Turkish_America.WE8ISO8859P9" 
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afcpreqg.lct $CurrentDir/REQUEST_GROUP.ldt REQUEST_GROUP APPLICATION_SHORT_NAME="XX%"
 
IFS="
"
export NLS_LANG="Turkish_America.WE8ISO8859P9" 
 
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y DOWNLOAD  $FND_TOP/patch/115/import/afmdmsg.lct $CurrentDir/MS_TR/FND_NEW_MESSAGES.ldt FND_NEW_MESSAGES APPLICATION_SHORT_NAME='XX%' MESSAGE_NAME="XX%"
 
IFS="
"
export NLS_LANG="American_America.WE8ISO8859P9" 
 
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y DOWNLOAD  $FND_TOP/patch/115/import/afmdmsg.lct $CurrentDir/MS_US/FND_NEW_MESSAGES.ldt FND_NEW_MESSAGES APPLICATION_SHORT_NAME='XX%' MESSAGE_NAME="XX%"
 
IFS="
"
export NLS_LANG="Turkish_America.WE8ISO8859P9" 
    $FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct $CurrentDir/VALUE_SET.ldt VALUE_SET FLEX_VALUE_SET_NAME="XX%"
 
IFS="
"	
export NLS_LANG="Turkish_America.WE8ISO8859P9" 
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afscprof.lct $CurrentDir/PROFILE.ldt PROFILE APPLICATION_SHORT_NAME="XX%"
 
IFS="
"
export NLS_LANG="Turkish_America.WE8ISO8859P9" 
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct $CurrentDir/DESC_FLEX.ldt DESC_FLEX P_LEVEL='COL_ALL:REF_ALL:CTX_ONE:SEG_ONE' APPLICATION_SHORT_NAME="XX%"	
 
IFS="
"
export NLS_LANG="Turkish_America.WE8ISO8859P9" 
    $FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/aflvmlu.lct $CurrentDir/LOOKUPS.ldt FND_LOOKUP_TYPE APPLICATION_SHORT_NAME="XX%"

 

Upload İşlemleri İçin Aşağıdaki Scriptler Kullanılabilir

 

 echo ON
 
echo "Apps Password :"
stty -echo
read AppsPWD;
stty echo
 
myHost=`sh -c 'hostname'`
 
CurrentDir=`pwd`
export CurrentDir
 
IFS="
"
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y UPLOAD $FND_TOP/patch/115/import/afsload.lct $CurrentDir/FORM.ldt  CUSTOM_MODE=FORCE
 
IFS="
"
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y UPLOAD $FND_TOP/patch/115/import/afsload.lct $CurrentDir/FUNCTION.ldt  CUSTOM_MODE=FORCE
 
IFS="
"
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y UPLOAD $FND_TOP/patch/115/import/afsload.lct $CurrentDir/MENU.ldt  CUSTOM_MODE=FORCE
 
 
IFS="
"
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y UPLOAD $FND_TOP/patch/115/import/afcpprog.lct $CurrentDir/EXECUTABLE.ldt CUSTOM_MODE=FORCE
 
IFS="
"
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y UPLOAD $FND_TOP/patch/115/import/afcpprog.lct $CurrentDir/PROGRAM.ldt CUSTOM_MODE=FORCE
 
IFS="
"
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y UPLOAD $FND_TOP/patch/115/import/afcpreqg.lct $CurrentDir/REQUEST_GROUP.ldt CUSTOM_MODE=FORCE
 
IFS="
"
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y UPLOAD $FND_TOP/patch/115/import/afscursp.lct $CurrentDir/FND_RESPONSIBILITY.ldt
 
IFS="
"
    $FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y UPLOAD $FND_TOP/patch/115/import/afffload.lct $CurrentDir/VALUE_SET.ldt
 
IFS="
"
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y UPLOAD $FND_TOP/patch/115/import/afffload.lct $CurrentDir/DESC_FLEX.ldt
 
IFS="
"
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y UPLOAD $FND_TOP/patch/115/import/aflvmlu.lct $CurrentDir/LOOKUPS.ldt CUSTOM_MODE=FORCE
 
IFS="
"	
	$FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y UPLOAD $FND_TOP/patch/115/import/afscprof.lct $CurrentDir/PROFILE.ldt CUSTOM_MODE=FORCE
 
IFS="
"
export NLS_LANG="Turkish_America.WE8ISO8859P9"
    $FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y UPLOAD $FND_TOP/patch/115/import/afmdmsg.lct $CurrentDir/MS_TR/FND_NEW_MESSAGES.ldt CUSTOM_MODE=FORCE
 
IFS="
"
export NLS_LANG="American_America.WE8ISO8859P9"
    $FND_TOP/bin/FNDLOAD apps/$AppsPWD 0 Y UPLOAD $FND_TOP/patch/115/import/afmdmsg.lct $CurrentDir/MS_US/FND_NEW_MESSAGES.ldt CUSTOM_MODE=FORCE

 



Yorum yapın

*