What is a Text_io Package?
Answers were Sorted based on User's Feedback
Answer / karthik
Print the results in .txt,.csv i.e,)notepad and excel
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / aswathy
This package is used in Oracle Forms to read and write to
an external file.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / asif
This package is used to read text from files like .txt, csv,
plain text etc.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / guest
Text_io package is used to print the result in excel sheet.
| Is This Answer Correct ? | 4 Yes | 10 No |
When will ON-VALIDATE-FIELD trigger executed ?
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
What are the triggers associated with a check box?
suppose there are two textfields t1,t2 in form and we have some value in textfield t1.now the question is that how can we copy the value of the t1 to textfield t2?
What are the Features of Forms 6i over 4.5? What are the Features of Forms 10g? What are the Features of Reports 6i? What are the Features of Reports 10g ?
What is the difference between object embedding & linking in Oracle forms?
What is the difference between system.current_field and system.cursor_field ?
what is the use of between page trigers in REPORTS... (please give answer in a explanatory way...if possible give screen shots also...)
What are display items?
I am using oracle developer suit(form 10g), On used ole2 objects to initialize excel and worksheet and on "BEFORE REPORT" i am printing report heading in excel using OLE2 objects only. if i run report from developer suit report builder it give output in excel normally and what expected but when ever i put same report on server and run report from application it gives error : " Terminated with error : <br> REP-1401 'before report': FATAL pl/sql error occured. ORA-43356; message 43356 not found; Product=RDBMS; facility = ORA." Please reply it is urgent
When the form is running in DEBUG mode, If you want to examine the values of global variables and other form variables, What package procedure command you would use in your trigger text ?
When do you use data parameter type?