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 do you understand by oracle forms?
did u received a single file or multiple files
Is it possible to execute a dynamic sql from forms?
What do you understand by lov and how can it be used?
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
how to use buttons,check boxes in paper layout,paper design and paper parameter form in oracle report developer 10g
If the valueset if of type –TABLE then how many tables can we attach in the valueset ?
what is a package n what r the packages availbla in report
What do you understand by oracle forms and why are they required?
if u want to delete all these detail block etc what will happen in form
what are the new features introduced in oracle form services in 11g release 2?
What is an implicit anchor and how is it a different form explicit anchor in a report builder?
In oracle forms report, what is the maximum length of record group column? What are the different types of record groups?
HI Friends I m new dev(forms & report). can anyone tell me how we upload a document on form 11g.??
how report can be generated if we have the database designed in oracle 10g?