how to create parameterised form in oracle 10g?
and create another form from the value of the form?
AND how to assign value to a parameter?
sincerly your
mamun
Answer Posted / sudipta santra
In form-1 the written code is given below:-
list_id := Create_Parameter_List('PAR_CONTRACT');
Add_Parameter(list_id,
'CONTRACT_NO',TEXT_PARAMETER,:TBL_CONTRACT.CONTRACT_NO);
call_Form('T:\Form-2.fmx',no_hide,no_replace,
no_query_only,list_id);
In form-2 the written code is given below:-
Either in the trigger When-New-Form-Instance or in trigger
Pre-Form :-
SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW,WINDOW_STATE,MAXIMIZE);
BEGIN
IF ( :PARAMETER.PAR_CONTRACT IS NOT NULL ) THEN
/* Use this value in the WHERE clause of MY_BLOCK */
Set_Block_Property('TBL_CONTRACT',DEFAULT_WHERE,
'PAR_CONTRACT = :PARAMETER.PAR_CONTRACT');
GO_BLOCK('TBL_CONTRACT');
Execute_Query;
END IF;
END;
In that way we can use parameter inside the several forms.
If you have still any doubts , then please reach me out at:
sudipta_santra@infosys.com
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how to send file attachment from oracle forms
What do you understand by lov and how can it be used?
what is tripstop report?
from where do u receive the information to develop report
Why oracle forms required?
what are bind variables?
What is the difference between bind and lexical parameter?
how do u compile a form i.e .fmb file in Unix or in dos
Explain how one can iterate through items and records in a specified block?
if i want to change the functionality of a item in report during runtime how like what do u write in when_button_pressed
How to create Drill down report?
if u want to delete all these detail block etc what will happen in form
In what sequence do triggers get fired by oracle forms?
What is responsibility and how u attach How to create user and how u attach with responsibility.
what is a package n what r the packages availbla in report