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
how to send file attachment from oracle forms
What is an oracle report?
Explain the different levels at which oracle form services interact.
if i want to change the functionality of a item in report during runtime how like what do u write in when_button_pressed
Explain master-detail relationship with some examples.
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
Name the different triggers associated with oracle forms having a master-detail relationship.
in user parameter property we have list of values.can we write select query for binding? for example:: select empno from emp where deptno=:deptnum :deptnum is first parameter it displays distinct dept nos. if i do like this it is giving error:: bind variables are not allowed in the select statement
What is the difference between BPA AND Contract What are documents and test cases u followed
what is difference between group above and group left report
how do u compile a form i.e .fmb file in Unix or in dos
what are the new features introduced in oracle form services in 11g release 2?
If the valueset if of type –TABLE then how many tables can we attach in the valueset ?
from where do u receive the information to develop report
if some data is not transfered where it will get stored