Modify REP file [message #479821] |
Tue, 19 October 2010 10:33 |
ananth.dikshit
Messages: 21 Registered: November 2006 Location: HYD
|
Junior Member |
|
|
Dear All,
I am working on Oracle reports 6i. Just for R&D purpose I have opened REP file in notepad. In the notepad file I could find the queries which are there in the data model.
I did a small addition to the query and saved it in the same locaiton. I tried to open the modified REP file from RWRUN60, but it is throwing me error saying "REP-0110- Unable to open file".
Original Query in data model:
SELECT empno, sal, job, hiredate
FROM emp;
Modified Query:
SELECT empno, sal, job, hiredate
FROM emp
WHERE deptno in (10,30);
Please let me know If there is any way to do modifications to REP files.
|
|
|
Re: Modify REP file [message #479825 is a reply to message #479821] |
Tue, 19 October 2010 10:45 |
cookiemonster
Messages: 13960 Registered: September 2008 Location: Rainy Manchester
|
Senior Member |
|
|
Not in notepad no. It's a binary file - all you've done is corrupt it.
If you want to modify a query in a report the only way to do it is in report builder.
|
|
|