Hallo zusammen
nach vielen erfolglosen Versuchen / auch das Suchen hier
möchte ich mein Problem hier schildern.
Das Probelm ist
1 Ravereport mit
1 Databand1 als Master / Dataview: nursing_h_ / Detailkey: ID
1 Databand2 als Detail / Dataview: nursing_h_c_ / Detailkey: ID_AREA / MasterDataview: nursing_h_ / MasterKey: ID
1 Databand3 als Detail / Dataview: nursing_h_d_ / Detailkey: ID_AREA / MasterDataview: nursing_h_ / MasterKey: ID
1 Databand4 als Detail / Dataview: nursing_h_dd_ / Detailkey: ID_D / MasterDataview: nursing_h_d_ / MasterKey: ID
das Problem ist sobald ich den letzten Datenband ( Databand4 ) hinzufüge wird der Report unendlich.
Da ich Fibplus verwende arbeite ich auch mit DriverDataview.
1 Databand1 als Master:
Query:
SQL-Code:
Select
T1.*
From
NURSING_H T1
1 Databand2 als Detail:
Query:
SQL-Code:
Select
T1.*
From
NURSING_H_C T1
where
ID_AREA = :ID
Query Parameter:
ID = nursing_h_.ID
1 Databand3 als Detail:
Query:
SQL-Code:
Select
T1.*
From
NURSING_H_D T1
WHERE
ID_AREA = :ID
Query Parameter:
ID = nursing_h_.ID
1 Databand3 als Detail:
Query:
SQL-Code:
Select
T1.*
From
NURSING_H_DD T1,
NURSING_H_D T2
where
T1.ID_D = T2.ID
Query Parameter:
ID = nursing_h_d_.ID
währe echt dankbar für einen Tipp
Manfred