What are the Built-ins used for sending Parameters to forms?
Answers were Sorted based on User's Feedback
Answer / guest
You can pass parameter values to a form when an
application executes the call_form, New_form, Open_form or
Run_product.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / binurajnair
For Preparing parameters to be passed, we can use the
following built-ins
CREATE_PARAMETER_LIST :- Creates Parameter list
ADD_PARAMETER :-Adds a parameter to parameter list
DELETE_PARAMETER
DELETE_PARAMETER_LIST
| Is This Answer Correct ? | 0 Yes | 1 No |
Which is the cheapest and quality Oracle Education provider in Bangladesh?
Can we invoke one form from another in a multi-forms application?
What is the usuage of an ON-INSERT,ON-DELETE and ON-UPDATE TRIGGERS ?
Can you mention lexical parameter in select statement in the data model?
Can a repeating frame be careated without a data group as a base?
What are the unrestricted procedures used to change the popup screen position during run time ?
what are the oracle forms services components include?
Do user parameters appear in the data modal editor in 2.5?
What are the default extension of the files created by library module?
What are the two types views available in the object navigator?
what is the exact navigation to create a radio button in form6i? can i create the radio button in report6i?
Hi...... I created a report which is geneated in .txt format. What I do for this is 1.First I change the system parameter mode to character in the report. 2.Then I place a button in my form to call the report. code in the button is as follows.. DECLARE rePid REPORT_OBJECT; rep_hndl VARCHAR2(100); BEGIN rePid := Find_Report_Object('reptxt.rdf'); Set_Report_Object_Property(rePid,Report_deStype,FILE); Set_Report_Object_Property(rePid,Report_FileName,'d:\sasi\reports\reptxt.rdf'); Set_Report_Object_Property(rePid,Report_desName,'d:\sasi\output\repprint.txt'); rep_hndl := Run_Report_Object(rePid); END; and it is working.. Now the problam is that when I preview the report from the report builder, it is in the format I needed. But when I run the form and run the report,Its alligment is not correct. Regards abc