Sunday, May 25, 2008

Forms

FND_GLOBAL.APPS_INITIALIZE
==========================

You will need to call FND_GLOBAL.APPS_INITIALIZE procedure before SUBMIT_REQUEST to initialize app profile setting without this profile settings SUBMIT_REQUEST will return 0
Also make sure you do a commit after SUBMIT_REQUEST otherwise your process will not be visiable from APPS.

To display debug Message
========================

fnd_message.debug('testx1');
fnd_message.show;

To add descriptive flex field in the form
=========================================

fnd_descr_flex.define(
block => 'ARC_CUSTOM_DET',
field => 'DESC_FLEX',
appl_short_name => 'CAR',
desc_flex_name => 'ARC_CUSTOM_DET');

*What is the difference between a post query and pre query?
pre query executed only once
post query executed for every row

*Sequence of firing trigger on text item
pre-text
when-new-item
key-next
when-validate
post-text

*what is library in forms?
itory of reusable components

Convert fmb to text
===================

 File ---> Administrator ---> Object List report

No comments: