What is the use of CUSTOM Library in Oracle Apps?

Showing Answers 1 - 6 of 6 Answers

rajivk

  • Aug 19th, 2005
 

Custom library is used to perform the cutomizations reuired thru custom.pll.AS other plls are non editable and seeded oraacle has given provision to customize 1pll that is custom.pll or custom library for customizations.

  Was this answer useful?  Yes

PRASAD

  • Sep 5th, 2005
 

Hi, 
 
When ever user can enter any form then Custom.pll r read in to Buffer, if we want to Customize any existing forms means ( if we ristrict the User at some Condtions r if we want to show some Messages ) 
we will add some Procedures to this Custom.pll

  Was this answer useful?  Yes

Bhikshapathi

  • Sep 28th, 2005
 

Custom.pll library is used to validate the existing base apps forms with out changing / modifying it. Custom.pll allows to modify the existing forms validtions.

  Was this answer useful?  Yes

Santosh Mudaliar

  • Jan 18th, 2006
 

Custom library or custom.pll give the programmer a flexibility to add code on allowed custom events . As custom .pll is general for all the forms that open in application , you have to specify in you code , the exact form name , block name , item name and event name where the code should execute.

However not all the events are supported in custom .pll but you can very control the behaviour of object and add logic to some extent with the help of custom .pll coding. For more information please refere Oracle Applications Developers Reference Manual

  Was this answer useful?  Yes

Bonthu N Reddy

  • Feb 14th, 2006
 

         Custom Library allows extensions of oracle application modules with out modifying module code

       Custom Library can found in $AU_TOP/res/plsql directory.

        After designing & Developing u must replace ur code in custom library.

        After ur code has been written, u must compile & Generate the library using oracle forms on the application server ( not the development machine ) & place in $AU_TOP/resource directory.

       .plx (executable code) is created when u generate .pll (librarary code) when u generate a library using the forms generator COMPILE_ALL parameter set to ' YES ' .

Cheers,

Bonthu N Reddy.

  Was this answer useful?  Yes

naveen nagula

  • Dec 12th, 2006
 

hi,CUSTOM.PLL is an library which exists in TEMPLATE.fmb ,it is an oracle form devloper PL/SQL library , which alows the developers to attach thier own custom code to the oracle applications without modifiying the orginal application code....it consists of two 2 function 1 procedure2 functions are 1 ZOOM_AVAILABLEthis is a function which returns boolean value ...this function always test on form_name and block_name , if the test is sucessful then this function returns TRUE else FALSEby default it returns FALSE2.STYLE: this is also function which determines the execution style of the formit contains three package variablescustom.strandardcustom.beforecustom.aftercustom.overide( i am not sure wehter it is over ride or in place..or some other name to it)by default it returns custom.strandard, which does not have any effect or modification on the form3. EVENT(PROCEDURE)This is a proceure

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions