how to pass 2 variables from one form to other form
Answers were Sorted based on User's Feedback
Assalam-o-Alikum.
you can pass the value of two variable from form F1 to form
F2
First you have to create the two parameter on form F2 name
p1 and p2 and save the form.
then you go on to F1 and write tis code on button on text
item through which you want to send the parameter.
Declare
para ParamList;
Begin
para:=get_parameter_list('plist') /*plist can be replace by
any character*/
if not id_null(para) then
destroy_parameter_list('plist');
end if;
para:=create parameter_list('plist');
Add_Parameter(para,'P1',variable_1);
Add_Parameter(para,'P2',variable_2);
---after this you can add
call_form('F2');
--you can see the argument pass through form F1 to FORM F2.
end;
| Is This Answer Correct ? | 10 Yes | 7 No |
Answer / kris
Parameter list should be passed as argument in call_form
built in.
| Is This Answer Correct ? | 2 Yes | 0 No |
What are the different default triggers created when Master Deletes Property is set to isolated?
i don't want to give the path of .Dat file in .Ctl file dynamically i want to give how
What is a Package Procedure ?
Identify package function from the following ?
Does a grouping done for objects in the layout editor affect the grouping done in the datamodel editor?
How can a button be used in a report to give a drill down facility?
What are the two panes that Appear in the design time pl/sql ?
What are the different window events activated at runtimes?
HOW TO MAKE A MATRIX REPORT MANUALLY WITH SINGLE GROUPT QUERY OR MULTIPLE GROUP QUERY ?
How many windows in a form can have console?
Explain the different levels at which oracle form services interact.
What are the built-ins used for Creating and deleting groups?