What are the built-ins that are used to Attach an LOV
programmatically to an item?
Answer / guest
set_item_property
get_item_property
(by setting the LOV_NAME property)
| Is This Answer Correct ? | 1 Yes | 1 No |
How image_items can be populate to field in forms 4.0?
Can you attach an lov to a field at design time?
What is an LOV?
What is a Query Record Group?
What are the default extentions of the files created by menu module?
how do u call a report from form
How can you format a character field in a report Layout editor ?
What are the built_ins used the display the LOV?
What is AppCore and AppCore2 ?
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
Explain the various types of oracle report?
WHAT IS THE ORACLE FORM TRIGGER WHICH CAN BE FIT IN ALL THREE LEVELS i.e., IN FORM LEVEL, BLOCK LEVEL AND ITEM LEVEL ?