hi iam working in TCS kolkata actually i want to navigate from form1 to form2 when button pressed
so i have written the following code in WHEN_BUTTON_PRESSED trigger of form1
DECLARE
lv_trip_name VARCHAR2(40) : :parameter.param1;
lv_post_flag BOOLEAN;
lv_parameters VARCHAR2(1000) : null;
BEGIN
lv_parameters : 'param1 "'||lv_trip_name||'"' ;
lv_post_flag : APP_FORM.QUIETPOST(10);
IF (lv_post_flag) THEN
fnd_function.execute(FUNCTION_NAME >'form2_fn'
OPEN_FLAG >'Y'
SESSION_FLAG >'N'
OTHER_PARAMS >lv_parameters);
END IF;
End;
in the above code param1 is my user parameter form2_fn is the function name of form2 to which
i want to navigate from form1 to form2.
when iam compiling it is not giving any error it is telling that module compiled succesfully but after registering in to the apps when iam pressing the button it is not
doing any thing it is not going to form2.
Can u please suggest me is there any wrong in this code or is it necessary to do any modifications for form to navigate.
Please suggest me as soon as possible.