In thet custom.pll what are the events we can write.
Answers were Sorted based on User's Feedback
In the Custom pll we can write below event.
-- ZOOM
-- WHEN-NEW-FORM-INSTANCE
-- WHEN-NEW-BLOCK-INSTANCE
-- WHEN-NEW-RECORD-INSTANCE
-- WHEN-NEW-ITEM-INSTANCE
-- WHEN-VALIDATE-RECORD
| Is This Answer Correct ? | 18 Yes | 0 No |
Answer / naveen
in custom.pll their is another event are their they are
special event triggers. which is use to create menus
PROCEDURE manage_special_menu IS
mi_id menuitem;
BEGIN
mi_id := find_menu_item('SPECIAL.SPECIAL15');
IF name_in('system.cursor_block') = 'INVOICE_HEADER' THEN
app_special2.instantiate('SPECIAL15', 'Print Invoice');
set_menu_item_property(mi_id, displayed, property_true);
set_menu_item_property(mi_id, enabled, property_true);
ELSE
set_menu_item_property(mi_id, displayed, property_false);
END IF;
END manage_special_menu;
| Is This Answer Correct ? | 0 Yes | 0 No |
difference between 2 way and 4 way matching
Types of cursors?
After completing Report customization process.suppose we have 10 report parameter in report so, that we re-register that parameter in concurrent program?
What do you understand by a set of books?
in procedure how to return a value
what is MRC? Why it is needed?
please send me forms, xml pulisher questions,answers
when will formula,place holder and summary columns fire in reports?
What are different execution methods of executabls?
In SQL Loader i have 100 Records to be loaded into my table. How do i load the first 30 Records and skip the last 10 Records within a single .ctl file ? So my total no.of records to be loaded would be 60. Could anybody help me in this ?
while running a interface if we get 100 records as erors. how to debug it.
While running the concurrent program we will get the status, we have to change the status. How it will be done.