I have fltrte_P1_Plt_Per_Id_Fk (Pilot) and fltrte_P2_Plt_Per_Id_Fk (Co-Pilot) 2 column

when displaying data in report I need to group based pilot name ,he may be pilot or co-pilot it should come in same group.how to achieve grouping in birt report

link|improve this question

0% accept rate
How should the report determine whether to use the Pilot or Co-Pilot for grouping - for example, will the Pilot be null when grouping by Co-Pilot? Alternatively, do you want separate rows in your report for Pilot and Co-Pilot? – Mark Bannister Nov 29 '11 at 14:28
thanks for your response, But here I have To achieve like below – user901882 Nov 29 '11 at 14:32
Like what below what? – Mark Bannister Nov 29 '11 at 14:41
thanks for your response, But here I have To achieve like (some time pilot(person) will pilot or co pilot in flight,that we storing in different column fltrte_P1_Plt_Per_Id_Fk (Pilot) and fltrte_P2_Plt_Per_Id_Fk (Co-Pilot) , then I am doing pilot summery report there I want group based on pilot(person) he may pilot or co pilot in flight but we need to display under his group and calculating duty time and etc.. for that perticuler pilot(Person) group – user901882 Nov 29 '11 at 14:43
I think you understand my question – user901882 Nov 29 '11 at 14:50
feedback

1 Answer

I suggest amending your query from:

select fltrte_P1_Plt_Per_Id_Fk, fltrte_P2_Plt_Per_Id_Fk, ... from flight_Log_Table

to:

select fltrte_P1_Plt_Per_Id_Fk as group_By, ... from flight_Log_Table
union all
select fltrte_P2_Plt_Per_Id_Fk as group_By, ... from flight_Log_Table

then amend your report to group on the new group_By field in the query.

link|improve this answer
thanks,I will try and let you know – user901882 Nov 29 '11 at 15:02
thank you very much, I Got solution but i have small issue global ordering – user901882 Nov 30 '11 at 14:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.