Page 1 of 1

Custom.pll

Posted: Tue Jun 19, 2007 3:12 am
by siva27
Hi all,

By using Custom.pll i have used Special Menu creation,this is the code as follows

procedure event(event_name varchar2) is
begin
mi_id := find_menu_item('SPECIAL.SPECIAL15');
if (form_name = 'CSXSRISR' and block_name = 'INCIDENT_NUMBER') then
IF name_in('system.cursor_block') = 'INCIDENT_NUMBER' THEN
app_special2.instantiate('SPECIAL15', 'Start Discount');
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;

IF event_name = 'SPECIAL15' THEN
-- IF form_name = 'DISMANAGER' THEN

fnd_function.execute(FUNCTION_NAME=>'DISMANAGER',
OPEN_FLAG=>'Y',
SESSION_FLAG=>'N');
fnd_message.set_string('Hello');
fnd_message.show;
END IF;
END IF;
end event;

If whn i'm trying to open in the Apps Front-end it showing like this
Error :oracle apps FRM-40700:No such trigger:SPECIAL.15

whn i clieck on Menu 'Start Discount' And also i need to call DISMANAGER Form which populates data from Apps Standrad Form to this Custom Form.

Itis bit urget any one can help me in this scenario

Regards
Siva

Posted: Sat Jun 23, 2007 11:59 am
by pullabhotlavishnu
hello,

I am new to custom PLL. Afer making chnages to the custom pll that are required by client. How do we compile it and what are steps involved.
please let me know.