GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Oracle Apps  >  Apps Technical

 Print  |  
Question:  Can you call APPCORE library in CUSTOM library ?

Answer: you cannot attach the APPCORE library to CUSTOM because it would cause a recursion problem (because CUSTOM is attached to APPCORE). As of Oracle Applications Release 11i, you may attach the APPCORE2 library to CUSTOM. The APPCORE2 library duplicates most APPCORE routines with the following packages: APP_ITEM_PROPERTY2
APP_DATE2
APP_SPECIAL2
These packages contain the same routines as the corresponding APPCORE packages. Follow the documentation for the corresponding APPCORE routines, but add a 2 to the package names.


January 01, 2006 09:14:52 #1
 P.Maria Varuvel Raj   Member Since: Visitor    Total Comments: N/A 

RE: Can you call APPCORE library in CUSTOM library ?
 

hi

 You cann't call appcore library from custom library.Becuase the Custom.pll is itself attached (called ) by APPCORE pll.

So once you try to call Appcore in forms a indefinite cycle.

So instead you can call the APPCORE2 which duplicate all functions and properties of APPCORE except it wouldn't reffer custom.pll.

     

 

Back To Question