how to pass 2 variables from one form to other form
Answer Posted / farrukh shaikh
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 |
Post New Answer View All Answers
what are bind variables?
What do you understand by lov and how can it be used?
What is an implicit anchor and how is it a different form explicit anchor in a report builder?
What is an oracle report?
what are the oracle forms services components include?
What is a matrix report and how many minimum groups are required to prepare the same?
how to use buttons,check boxes in paper layout,paper design and paper parameter form in oracle report developer 10g
Explain how can you use the same lov for 2 columns?
if i want to change the functionality of a item in report during runtime how like what do u write in when_button_pressed
a text item is there what r the different types of triggers associated with it
Can any one send me oracle form and reports tutorials from which i may get help.contact me on my mail cse_kashif@hotmail.com.
In oracle forms report, what is the maximum length of record group column? What are the different types of record groups?
I have a frame that contains headings. This frame is enclosed in side a repeating frame. However the headings are not displayed on all pages it is displayed only on the last page. Please let me know why is this happening. print object on = All pages base printing on = enclosing object
How to create Drill down report?
What do you understand by lov?