Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Scrolling Report Views
Message
From
25/02/2010 08:48:13
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Reports & Report designer
Title:
Scrolling Report Views
Miscellaneous
Thread ID:
01450942
Message ID:
01450942
Views:
90
Hello!
im building a normal report but it references data from more than one table. so i used a view with 2 tables and the SQL on the view is
 FROM ;
     mainbase!recoveries ;
    INNER JOIN mainbase!cactions ;
   ON  Recoveries.recovercode = Cactions.code;
 WHERE  Recoveries.recovercode = ( 1 )
now this works very fine...i get my records.
so i have this Query
SELECT *;
 FROM ;
     v_recoveries V_recoveries;
 WHERE  V_recoveries.recovercode = ( 1 );
 INTO TABLE r  
now in my Report i had the code (on initialize)
DO qry_recoveries.qpr
SELECT R
Now when i do that the first peron gets repeated Three times. :(
but when i use the Native table...with no views..in the DE of the Report it works fine :(
any reason why i cant use my view?
Reply
Map
View

Click here to load this message in the networking platform