Entries by Oracle ERP Apps Guide

, , , , , ,

How to call Concurrent Program through OAF Personalization

Requirement: From OAF page i have to call a custom procedure for some activity. Solution: Create a button through OAF personalization like below. Concurrent program name is XXPRCTEST. I register this under Application Developer. ID: TestBtnPrompt: Submit ReportOA.jsp?akRegionCode=FNDCPPROGRAMPAGE&akRegionApplicationId=0&programApplName=FND&programRegion=Hide&scheduleRegion=Hide¬ifyRegion=Hide&printRegion=Hide&&programName=XXPRCTESTTarget Frame: _blank This will open a new submit window.

, , ,

Description of Libraries attached with Template.fmb

Libraries – Core($) Download from $AU_TOP/resource($) Set FORMS60_PATH on desktop to location of local libraries($) APPCORE.pll Application Standards, toolbar   VERT.pll Specific industry features   GLOBE.pll Global or regional features     JA.pll Asia/Pacific features     JE.pll Europe/Middle East/Africa features     JL.pll Latin America Code   CUSTOM.pll Customizations of standard forms($) FNDSQF.pll Flexfields, Profiles, Currency, Concurrent Request Submission, Record […]

, , ,

Develop Custom Forms in Oracle Applications

Overview of the Template Form The TEMPLATE form is the starting point for all development of new forms. The first step in creating a form for use in Oracle Applications is to copy the template form from $AU_TOP/forms/US, to a local directory and renaming it. The Template form is unique because it contains some special libraries and triggers that render the application using the template form some standard characteristics. The components of the template form are: References to object groups: The template form contains platform–independent […]

, , , , , , ,

FND_GLOBAL.APPS_INITIALIZE for initializing session in Oracle Ebusiness suite

FND_GLOBAL.APPS_INITIALIZE is used for initializing the session before calling any public or private API’s in Oracle Ebusiness suite. Its not required for all the API’s but its recommended that you set this profile before making any calls to either private or public API.  Listed below is a sample call to FND_GLOBAL.APPS_INITIALIZE function fnd_global.APPS_INITIALIZE(user_id=>l_user_id,       […]

, , , , , , ,

RETCODE & ERRBUFF Parameters in Concurrent Program

As we all know there are two mandatory parameters that need to be pased for all the procedures called1.ERRBUFF2.RETCODE.. Based on the business process if there is any undefined exeception occured while running concurrent program, we can end the concurrent program with Error/Warning. Define ERRBUFF as the first parameter and Retcode as the second one. […]