How to convert Custom.pll to text ? How to Convert Custom.PLL to PLD ,PLX
today we will share sample way to edit custom.pll in notepad so by this way i think it will be much faster than you edit in oracle form builder.
also this way will be helpful if you want to compare between two versions of CUSTOM.pll to make sure you didn’t touch any thing else except your modifications.
SCRIPTS FOR WINDOWS :
————————————-
1- first command to convert from CUSTOM.pll to CUSTOM.PLD :
frmcmp userid=apps/appsmavislort20001 module=CUSTOM.pll output_file=CUSTOM.pld module_type=library batch=yes Script=YES
2- second command to converted back from .PLD extension to .PLL
frmcmp userid=apps/appsmavislort20001 module=CUSTOM.pld output_file=CUSTOM.pll module_type=library batch=yes Script=YES
3- compile .PLL to generate PLX file
frmcmp userid=apps/appsmavislort20001 module=CUSTOM.pll output_file=CUSTOM.plx module_type=library batch=yes Script=YES
SCRIPTS FOR UNIX :
———————————
1- first command to convert from CUSTOM.pll to CUSTOM.PLD :
frmcmp_batch module=CUSTOM.pll userid=apps/apps output_file=CUSTOM.pld module_type=LIBRARY batch=yes Script=YES
2- second command to converted back from .PLD extension to .PLL
frmcmp_batch module=CUSTOM.pld userid=apps/apps output_file=CUSTOM.pll module_type=LIBRARY batch=yes Script=YES
3- compile .PLL to generate PLX file
frmcmp_batch module=CUSTOM.pll userid=apps/apps output_file=CUSTOM.plx module_type=LIBRARY batch=yes Script=YES
Note : PLD extension you can open it by notepad to edit.
last thing if you have two versions of CUSTOM.PLL and want to compare between them you can do this after convert .PLL to .PLD just download third party free tools like (WinMerge or ExamDiff).
hope this helpful.
Hello Hassan
Thanks for the nice blog and good reference article.
There is an error in first command for PLL to PLD, the command provided does not produce the fully readable text.
The correct command is below, note the SCRIPT=YES in the end.
frmcmp_batch.sh userid=apps/not4menow module=CUSTOM.pll output_file=CUSTOM.pld module_type=library batch=yes Script=YES
Hello Ravi,
thanks for sharing your information and your update.