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
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
did u p prepared complex report
how do u compile a form i.e .fmb file in Unix or in dos
What do you understand by lov and how can it be used?
What is a matrix report and how many minimum groups are required to prepare the same?
How do u print the data horizantally by using XML report? EX:Suppose there is one table names as SAMPLE in that we have only two columns say empno,ename.I want the output like this,At run time user may enter 3 colums(i.e to data print horizantally). empno ename empno ename empno ename 100 aaa 101 bbb 102 ccc 103 ddd 104 eee 105 fff
I need a query to list out "Subinventory Transfer" record from Oct 2016 to Oct 2017 for few users
What do you understand by oracle forms?
can you convert or reverse engineer a fmx back to a fmb file?
What are the Features of Forms 6i over 4.5? What are the Features of Forms 10g? What are the Features of Reports 6i? What are the Features of Reports 10g ?
what are the oracle forms services components include?
Name the different triggers associated with oracle forms having a master-detail relationship.
how to use buttons,check boxes in paper layout,paper design and paper parameter form in oracle report developer 10g
in after report trigger if you don't write Srw.user_exit(Fnd_user exit) what it will do it will stop report execution or it will just not free the memory
Explain master-detail relationship with some examples.