how to pass 2 variables from one form to other form

Answers were Sorted based on User's Feedback



how to pass 2 variables from one form to other form..

Answer / 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

how to pass 2 variables from one form to other form..

Answer / kris

Parameter list should be passed as argument in call_form
built in.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Oracle Forms Reports Interview Questions

Can a property clause itself be based on a property clause?

1 Answers  


I developed on form as per my requirement,and register that one in apps custom_top.But the problem is ,if you open the form but not closed,I founded why this is error is comming ,the custom_top is not supported my form . I need any one your help in advicing me...what I do the custom_top supported the forms.

1 Answers  


With which function of summary item is the compute at options required?

1 Answers  


did u p prepared complex report

0 Answers  


what ia an object groups?

1 Answers  


based on parameter value layout of report should change

1 Answers  


What are the two types views available in the object navigator?

1 Answers  


Can you pass data parametrs to forms?

1 Answers  


What are the menu items that oracle forms 4.0 supports?

1 Answers  


What is the usage of the confine mode in Layout Editor ?

2 Answers   Convergys,


What is a difference between pre-select and pre-query?

1 Answers   iFlex,


What are the difference between lov & list item?

1 Answers   ESS,


Categories
  • Oracle General Interview Questions Oracle General (1808)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)