compliling the .pll in oracle apps
Posted: 24 October 2005 01:20 PM   [ Ignore ]
Newbie
Rank
Total Posts:  7
Joined  2005-07-24

how to compile .pll in oracle apps.?

how to recompile the custom code developed when iam upgrading to the new version of oracle apps?

Profile
 
 
Posted: 30 October 2005 03:40 PM   [ Ignore ]   [ # 1 ]
Sr. Member
Avatar
RankRankRankRank
Total Posts:  149
Joined  2005-04-11

Hemanth,

Forms, Reports, etc. are all compiled in Oracle Apps using the adadmin utilities.  The utilities allow you to specify what you want to compile (report, library, etc.), and for what module(s).  Once specified, jobs are spawned and assigned to workers to compile.  Depending on the speed and number of CPU’s on a server, a full compile for everything can take quite some time.

You can also recompile objects from the command line on the server - the syntax varies depending on what you are compiling.

If you have custom code developed in a previous release of the Applications, the first thing you need to determine is what version of the development tool you are coming from in the old release, and going to in the new one.  It might not be as simple as recompiling your custom code if you are making a significant upgrade (say from 10.7 or 11 to 11i).  Also keep in mind that the data model can also change, so there is a chance that your code would need to be modified.

Whenever doing an upgrade, I always take an inventory of custom objects and review them to determine if 1) they are still needed (replace with vanilla code if possible!); and 2) if they will require code revisions for the upgrade.

I hope this helps.

Regards,
Michael Siebert

 Signature 

Regards,

Michael Siebert

Profile
 
 
Posted: 28 August 2006 05:44 AM   [ Ignore ]   [ # 2 ]
Newbie
Rank
Total Posts:  2
Joined  2006-08-01

Dears,

there is a script to do this, and here it is:

f60gen module=CUSTOM.pll userid=APPS/XXXX output_file=CUSTOM.plx module_type=library batch=no compile_all=special

hope this help more

Profile