Wednesday, July 20, 2022

FNDLOAD for multi-language(ARABIC - ENGLISH)

FNDLOAD for Arabic and English


we want to move Lookups, Concurrent Programs, Messages etc with their translation also for Multilingual/Territory like English and Arabic.


In such scenario we have to download and upload LDTs for both languages.

Lets suppose we have to move Concurrent Program with both English and Arabic translations.


DOWNLOAD

Before downloading we have to set the export language style like,

For English

*****************************************************************

export NLS_LANG=AMERICAN_AMERICA.AR8MSWIN1256

*****************************************************************

FNDLOAD apps/apps O Y DOWNLOAD $FND_TOP/patch/115/import/afcpprog.lct XXTST_CONCURRENT_PRG_US.ldt PROGRAM APPLICATION_SHORT_NAME="XXTST" CONCURRENT_PROGRAM_NAME="XXTST_CONCURRENT_PRG"


For Arabic

*****************************************************************

export NLS_LANG=ARABIC_AMERICA.AR8MSWIN1256

*****************************************************************

FNDLOAD apps/apps O Y DOWNLOAD $FND_TOP/patch/115/import/afcpprog.lct XXTST_CONCURRENT_PRG_AR.ldt PROGRAM APPLICATION_SHORT_NAME="XXTST" CONCURRENT_PROGRAM_NAME="XXTST_CONCURRENT_PRG"

*****************************************************************

UPLOAD

Similarly for Upload LDTs we have to set the language style.

For English           

set NLS_LANG=AMERICAN_AMERICA.AR8MSWIN1256

FNDLOAD apps/apps O Y UPLOAD $FND_TOP/patch/115/import/afcpprog.lct XX_CONCURRENT_PRG_US.ldt UPLOAD_MODE=REPLACE CUSTOM_MODE=FORCE

*****************************************************************

For Arabic

set NLS_LANG=ARABIC_AMERICA.AR8MSWIN1256


FNDLOAD apps/apps O Y UPLOAD $FND_TOP/patch/115/import/afcpprog.lct XX_CONCURRENT_PRG_AR.ldt UPLOAD_MODE=REPLACE CUSTOM_MODE=FORCE

No comments:

Post a Comment

SQL Query to Convert number into Words for Money

SELECT INITCAP ( DECODE ( FLOOR (TO_NUMBER ( :amount)), 0, '', TO_CHAR (TO_DATE...