Report export to excel doesn't work correctly

I've seen this problem is quite common, and some workarounds but none is correct for me.
I have a SQL function returning report with several filters (something based on the Issues report of the Issue Tracking Application, APEX example).
In my case seems to work correctly only when I hard code the value of :P15_CANVI_DE_CLUB. I've tried Denes Kubicek solution of setting a computation before header of this item, but it does not work. Unluckily Denes package can't be used with SQL function returning report so I cannot use it to print my report.
Anyone knows how to face this flaw?
Thanks for your help.
That's the SQL function
declare
q varchar2(20000); -- query tasques
q0 varchar2(4000); -- query suport subtasques
q1 varchar2(4000); -- query subtasques
w varchar2(4000) ; -- where, condició de filtres
w1 varchar2(4000) ; -- where, condició de tasques
w2 varchar2(4000) ; -- where, condició de subtasques
w21 varchar2(4000) ; -- where subtasques
w22 varchar2(4000) ; -- where subtasques amb filtres de pantalla
begin
-- q és la consulta de tasques ("TAS_TAS_ID" is null) a aquesta
-- consulta s'ha d'unir q1 que són les subtasques
q:= 'select null as "Tasca", '||
'"GES_GES_ID", '||
     '"TAS_ID", '||
     '"TITOL", '||
     '"DESCRIPCIO", '||
     '"ASSIGNADA", '||
     '"DATAINICI", '||
     '"PREVISIO_FI", '||
     '"DATA_FINAL", '||
     '"PRIORITAT", '||
     '"SITUACIO", '||
     '"ORIGEN", '||
     '"NUMERADOR", '||
     '"ANY_NUMERADOR", '||
'"CODI_NUMERADOR", '||
'"NUMERO", '||
'"AGR_ASS_ASS_ID", '||
     '"AGR_CODI", '||
     '"TAS_TAS_ID", '||
     '"TAS_GES_GES_ID", '||
     '"GES_GES_ID_ESTA_ASSIGNADA", '||
'"GESTOR", '||
     '"PUBLICA", '||
     '"GRUP_TASQUES", '||
     '"NOM", '||
     '"COGNOM1" '||
'from     "STASVWREPORT_TASQUES" ';
-- Les següents línies calculen les condicions de filtres de pantalla
-- Filtre origen
if :P15_ORIGEN!='-1' THEN
w:= w||' AND "STASVWREPORT_TASQUES"."ORIGEN"=:P15_ORIGEN';
end if;
-- Filtre prioritats
if :P15_PRIORITATS<>'-1' then
w:= w||' AND "PRIORITAT"=:P15_PRIORITATS';
end if;
-- Filtre situacions
if :P15_SITUACIONS<>'-1' then
w:= w||' AND "SITUACIO"=:P15_SITUACIONS';
end if;
-- Filtre grup de tasques
w:=
case :P15_GRUPS_TASQUES
when '%' then w||' AND ("STASVWREPORT_TASQUES"."AGR_CODI" LIKE (''%'') or
"STASVWREPORT_TASQUES"."AGR_CODI" IS NULL)'
when '-2' then w||' AND ("STASVWREPORT_TASQUES"."AGR_CODI" IS NULL)'
else w||' AND "STASVWREPORT_TASQUES"."AGR_CODI"=:P15_GRUPS_TASQUES and '||
'"STASVWREPORT_TASQUES"."AGR_ASS_ASS_ID"=:ASSOCIAT '
end;
-- Filtre obertes/tancades
if :P15_OBERTES='O' then
w:= w||' AND "DATA_FINAL" IS NULL';
end if;
if :P15_OBERTES='T' then
w:= w||' AND "DATA_FINAL" IS NOT NULL';
end if;
-- Filtre títol/DESCRIPCIO
IF :P15_TITOL_DESCRIPCIO=1 THEN
IF :P15_TITOL IS NOT NULL then
w:= w || ' AND TRANSLATE(UPPER("STASVWREPORT_TASQUES"."TITOL")';
w:= w || ',''ÀÁÈÉÍÏÒÓÚÜ'', ''AAEEIIOOUU'') ';
w:= w ||'LIKE ';
w:= w ||'TRANSLATE(UPPER(''%';
w:= w ||:P15_TITOL||'%''),''ÀÁÈÉÍÏÒÓÚÜ'', ''AAEEIIOOUU'')';
END IF;
ELSE
IF :P15_TITOL IS NOT NULL then
w:= w || ' AND TRANSLATE(UPPER(';
w:= w || '"STASVWREPORT_TASQUES"."DESCRIPCIO")';
w:= w || ',''ÀÁÈÉÍÏÒÓÚÜ'', ''AAEEIIOOUU'') ';
w:= w ||'LIKE ';
w:= w ||'TRANSLATE(UPPER(''%';
w:= w ||:P15_TITOL||'%''),''ÀÁÈÉÍÏÒÓÚÜ'', ''AAEEIIOOUU'')';
END IF;
END IF;
-- Filtre propietari/gestor
if :P15_GESTOR_PROPIETARI='-1' then
w:= w||' AND ("STASVWREPORT_TASQUES"."GES_GES_ID"=:GESTOR) ';
end if;
if :P15_GESTOR_PROPIETARI='-2' then
w:= w||' AND ("STASVWREPORT_TASQUES"."GES_GES_ID_ESTA_ASSIGNADA"=:GESTOR) ';
end if;
if :P15_GESTOR_PROPIETARI='-3' then
w:= w||' AND (("STASVWREPORT_TASQUES"."GES_GES_ID"=:GESTOR ';
w:= w||'OR "STASVWREPORT_TASQUES"."GES_GES_ID_ESTA_ASSIGNADA"=:GESTOR)';
w:= w||'OR ("STASVWREPORT_TASQUES"."AGR_ASS_ASS_ID"=:P15_CANVI_DE_CLUB ';
w:= w||' AND "STASVWREPORT_TASQUES"."PUBLICA"=''S''))';
end if;
if :P15_GESTOR_PROPIETARI='-4' then
w:= w||' AND ("STASVWREPORT_TASQUES"."GES_GES_ID"=:GESTOR ';
w:= w||'OR "STASVWREPORT_TASQUES"."GES_GES_ID_ESTA_ASSIGNADA"=:GESTOR)';
end if;
-- Filtre dates
if :P15_SELECCIO_DATES = '1' and :P15_DATA_INICI_F is not null then
w:= w|| 'and ("STASVWREPORT_TASQUES"."DATAINICI" >= :P15_DATA_INICI_F ' ;
w:= w|| 'and "STASVWREPORT_TASQUES"."DATAINICI" <= :P15_DATA_FI_F) ';
end if;
if :P15_SELECCIO_DATES = '2' and :P15_DATA_INICI_F is not null then
w:= w|| ' and ("STASVWREPORT_TASQUES"."PREVISIO_FI" >= :P15_DATA_INICI_F and ';
w:= w|| '"STASVWREPORT_TASQUES"."PREVISIO_FI" <= :P15_DATA_FI_F) ';
end if;
if :P15_SELECCIO_DATES = '3' and :P15_DATA_INICI_F is not null then
w:= w|| 'and ("STASVWREPORT_TASQUES"."DATA_FINAL" >= :P15_DATA_INICI_F and ';
w:= w|| '"STASVWREPORT_TASQUES"."DATA_FINAL" <= :P15_DATA_FI_F) ';
end if;
if :P15_CALCULAR_NUMERO='NUM' then w:= '"STASVWREPORT_TASQUES"."GES_GES_ID_ESTA_ASSIGNADA"="STASTBGESTORS"."GES_ID"(+) '||
'and "STASVWREPORT_TASQUES"."AGR_ASS_ASS_ID"="STASTBAGRUPACIO"."ASS_ASS_ID"(+) '||
'and "STASVWREPORT_TASQUES"."AGR_CODI"="STASTBAGRUPACIO"."CODI"(+) ';
w:= w||' AND (("STASVWREPORT_TASQUES"."GES_GES_ID"=:GESTOR ';
w:= w||'OR "STASVWREPORT_TASQUES"."GES_GES_ID_ESTA_ASSIGNADA"=:GESTOR)';
w:= w||'OR ("STASVWREPORT_TASQUES"."AGR_ASS_ASS_ID"=:P15_CANVI_DE_CLUB ';
w:= w||' AND "STASVWREPORT_TASQUES"."PUBLICA"=''S''))';
if :P15_CODIS_GRUPS!='-1' then
w:= w||' and "STASVWREPORT_TASQUES"."CODI_NUMERADOR"=:P15_CODIS_GRUPS ';
else
w:= w||' and "STASVWREPORT_TASQUES"."CODI_NUMERADOR" is null ';
end if;
w:= w||' and "STASVWREPORT_TASQUES"."NUMERADOR"=:P15_NUMERO ';
w:= w||' and "STASVWREPORT_TASQUES"."ANY_NUMERADOR"=:P15_ANY ';
:P15_CALCULAR_NUMERO:='NO';
end if;
w1:= '"STASVWREPORT_TASQUES"."TAS_TAS_ID" is null ' ||w;
q:= q || ' WHERE '|| w1;
-- La mateixa consulta però seleccionant només els TAS_ID
q0 := 'select "TAS_ID" '||
'from "STASVWREPORT_TASQUES" ';
q0:= q0 || ' WHERE '|| w1;
-- q1 dóna les subtasques de les tasques triades a q
-- (STASTBTASQUES"."TAS_ID" in(q0)) i a més a més les subtasques que
-- cumpleixen les condicions de filtres de pantalla
-- (TAS_TAS_ID is not null and w)
q1 := 'select ''Subtasca'' as "Tasca", '||
'"GES_GES_ID", '||
     '"TAS_ID", '||
     '"TITOL", '||
     '"DESCRIPCIO", '||
     '"ASSIGNADA", '||
     '"DATAINICI", '||
     '"PREVISIO_FI", '||
     '"DATA_FINAL", '||
     '"PRIORITAT", '||
     '"SITUACIO", '||
     '"ORIGEN", '||
     '"NUMERADOR", '||
     '"ANY_NUMERADOR", '||
'"CODI_NUMERADOR", '||
'"NUMERO", '||
'"AGR_ASS_ASS_ID", '||
     '"AGR_CODI", '||
     '"TAS_TAS_ID", '||
     '"TAS_GES_GES_ID", '||
     '"GES_GES_ID_ESTA_ASSIGNADA", '||
'"GESTOR", '||
     '"PUBLICA", '||
     '"GRUP_TASQUES", '||
     '"NOM", '||
     '"COGNOM1" '||
'from     STASVWREPORT_TASQUES ';
w21:= '"TAS_TAS_ID" IN ('||q0||')';
w22:= '"TAS_TAS_ID" IS NOT NULL '||w;
w2:='('||w21||') OR ('||w22||')';
q1:= q1 || ' WHERE '|| w2;
q:= q ||' UNION ' || q1;
return q;
end;

Problem solved!!
<br><br>
See this part of the query:
<br><br>
if :P15_GESTOR_PROPIETARI='-3' then<br>
w:= w||' AND (("STASVWREPORT_TASQUES"."GES_GES_ID"=:GESTOR ';<br>
w:= w||'OR "STASVWREPORT_TASQUES"."GES_GES_ID_ESTA_ASSIGNADA"=:GESTOR)';<br>
w:= w||'OR ("STASVWREPORT_TASQUES"."AGR_***_***_ID"=<FONT color=red>:P15_CANVI_DE_CLUB</FONT> ';
w:= w||' AND "STASVWREPORT_TASQUES"."PUBLICA"=''S''))';<br>
end if;<br>
<br>
when instead of :P15_CANVI_DE_CLUB I put a value (say ''EE'') it works correctly, finally I created an application item (ASSOCIAT) and when when I change :P15_CANVI_DE_CLUB I set :ASSOCIAT to the same value and the query is based on this application item:
<br><br>
if :P15_GESTOR_PROPIETARI='-3' then<br>
w:= w||' AND (("STASVWREPORT_TASQUES"."GES_GES_ID"=:GESTOR ';<br>
w:= w||'OR "STASVWREPORT_TASQUES"."GES_GES_ID_ESTA_ASSIGNADA"=:GESTOR)';<br>
w:= w||'OR ("STASVWREPORT_TASQUES"."AGR_***_***_ID"=<FONT color=red>:ASSOCIAT </FONT>';<br>
w:= w||' AND "STASVWREPORT_TASQUES"."PUBLICA"=''S''))';<br>
end if;<br>
<br>

Similar Messages

  • Export to excel doesn't work anymore

    Hello all;
    I recently re-installed Excel, and the "export to excel" function in B1 doesn't work anymore. Even when I do "File> Export> MS-excel", it doesn't offer an *.xls file type to save.
    Any ideas?
    Thanks,
    Lazar

    Dear Lazo,
    For export option activate On SAP B1 client machine you have go general setting > Go to path > than provide SAP sever Excel Doc Path.
    and  please confirm in that folder Auto open.xls file is there or not.
    and than go to new excel file > Tools >Option .security > Macro setting > Select Security level Medium.
    Than try to open excel file.
    May it help you.
    If its not work so you check on sever if its working on sever than if definitely client machine problem.
    for that you have re-installed SAP client.
    Regards
    Mangesh Pagdhare.

  • JHS: Export to Excel doesn't work when having leading zeros

    Oracle JHeadstart Release 11.1.1.2.29
    We are using the Export to excel option, but when we have leading zeros it doesn't export it as text so the data is incorrect.
    Can any one please tell how doe we configure JHeadstart/ADF to have the leading zeros and export it as text rather than as number.
    Regards
    Ram

    Ram,
    Export to excel is native ADF feature,not related to JHeadstart. Please post your question on the JDeveloper forum.
    Steven davelaar,
    JHeadstart team.

  • Export to excel doesn't work

    Hi all,
    I'm having a problem with exporting a workbook into an excel sheet.
    The problem is that NOTHING HAPPEND. I realy don't know what is going on. For the same account I tried to export another report... and every thing was ok (the only thing that I saw is thet for some I have the option to save the report or open it... and for others It opens directly...)
    Does someone ever had the same problem??...

    Hi
    Try closing the browser session and trying again. I have seen it lock like this sometimes.
    Take a look also at this recent thread: Can't export from Disco Plus but am able to export From Desktop
    Best wishes
    Michael

  • Access Report exporting to Excel Horizontally

    I've got a rather large report in Access, based on a couple of forms.
    When i preview it looks fine, Textboxes are all in order with the make and model then the data in text boxes in a column below.
    There are 7 columns of text boxes like this.
    When I export to a PDF, it's in the right format, 7 columns next to each other.
    When I export to Word and even a text file it works fine.
    When I export to Excel, they all go horizontal...textbox name in row 1 and all the data in row 2, clear to column IV and that's it.
    What am I doing wrong?
    Thank you for any help.
    Gee

    Hi Gee,
    According to the desription, when the report exported to Excel, the layout is incorrect.
    Based on my test, the Access doesn't export the textbox into Excel, it just export the data in the report. Here are the test steps for your reference:
    1. Create a table with some fields in Access 2013
    2. Create a reprot based on the table by default
    3. Export the report to Excel by External data->Export->Excel
    Did I misunderstood? Also a demo database to help us reproduce this issue is much appreciate.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Report Generation Toolkit Evaluation doesn't work

    Hello,
    I tried to insert data into an Excel file but it seems the Report Generation Toolkit Evaluation doesn't work.
    Attached file my VI.
    LV is saying i have to activate the product in order to run it. An error occurs on each Report Generation subVI, which involve i never could test my application.
    I went on Help/Activate Labview component and the evalution is well activate.
    Someone has an idea why the evaluation version doesn't run Report Generation Toolkit ? A solution asap please...
    PS : I still have 15 days evaluation left.
    Solved!
    Go to Solution.
    Attachments:
    Test_insert_data.vi ‏9 KB
    Test.xls ‏14 KB

    UP
    With message failure
    Attachments:
    Sans titre.JPG ‏50 KB

  • AddChild doesn't work correctly in 11.9

    comparing the two releases listed below, somehow my Flash program doesn't work correctly on the latest version anymore, nothing was changed in my program but after upgrading to the latest Flash Player, it doesn't work properly anymore, specifically, the items I add through the addChild method doesn't appear properly, was there any changes in between these versions that could have affected the addChild behavior? I'm testing with Windows  7 IE debug version and I see no script errors
    Released 10/8/2013) Flash Player 11.9.900.117 (156.2 MB)
    (Released 9/24/2013) Flash Player 11.8.800.175 (Win IE only) (50 MB)

    Could you please open a new bug report on this over at bugbase.adobe.com?  When adding the bug, please include sample code, test url or a test swf so we can quickly test this out internally.  If you'd like to keep this private, feel free to email the attachment to me directly ([email protected]). 
    Once added, please post back with the bug URL and I'll investigate internally.
     

  • IPhoto doesn`t work correctly with german "umlaut" (ä,ö,ü) in keywords

    iPhoto doesn`t work correctly with german "umlaut" (ä,ö,ü) in keywords. They get to ä̈,ö̈, ü̈ when I write the keyword a second time. Can anybody tell me why. Thank you. Heinz

    It apparently does not like non-standard English characters - use A-Z and 0-9 adn you should be OK
    report to Apple - iPhoto menu ==> provide iPhoto feedback
    LN

  • Translation from CS5 to Cloud doesn't  work correct, navi and linked images are broken.

    Translation from CS5 to Cloud doesn't  work correct, <navi> and linked images are broken.
    The data of CS5 was created at another PC. I installed Cloud version into two different PC. One has had the site data since dreamweaver CS5 and it works correct in Cloud version. Another PC got the site data from remote server and it doesn't work correct. <navi> and linked image are broken.

    Another PC got the site data from remote server and it doesn't work correct. <navi> and linked image are broken.
    This implies your site is not properly defined in DW.  Go to Site > Manage Sites.
    Or simply go to your other installation of DW and export the site definition file from Manage Sites.
    Save it to a flash stick or other removable drive.  Then import the STE file into your 2nd installation of  DW.
    Nancy O.

  • Job Pricing Reports - Exporting to Excel

    Hi,
    I am testing the standard reports that are availabe in Job Pricing from within the portal.  Example the one report Salary Survey Participation, which is a report that is accessed from ERP, the option to Export to Excel is not working.  In the selection screen if I choose the Output format 'Spreadsheet' I get the error message 'It is not possible to download Excel in the WebGui.  If I then change the Output format to 'SAP List Viewer' then choose the from the Menu - List - Export - Spreadsheet nothing happens.  If I also select 'Print Preview' and then 'Spreadsheet' nothing happens.
    Thanks

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly

  • SSRS report export to excel

    Hi All,
    I have one developed SSRS report which is a matrix report (having customer name in column area and customer code in row area);
    and it is working ok no issue here. 
    Now I want to do something like :
    Is it possible while exporting to excel, I can interchange rows data to columns data and columns data to rows data ? (so that customer name comes in row area; and customer code comes in column area)
    Hope question is straight forward and clear.
    Regards 

    Hi ,
    I have tried to do dynamic grouping based on the Format of rendering, however in dynamic grouping not allowed to use the Global Built-In Fields, Variables, ReportItems collections.
    Finally only way left for us to use our classical trick to set the visibility on and off.
    This trick can be applied by creating two different Matrix and show one matrix depending on Format rendering.
    My trick is to create two groups within the matrix and hide and show one group based on format rendering.
    I have created detailed level of post in below link.
    https://msbitips.wordpress.com/2015/04/21/ssrs-transpose-columns-of-a-report-dynamically-when-rendering-in-different-format/
    RDL for your reference:-
    <?xml version="1.0" encoding="utf-8"?>
    <Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
    <Body>
    <ReportItems>
    <Textbox Name="textbox1">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>SSRS report export to excel</Value>
    <Style>
    <FontFamily>Tahoma</FontFamily>
    <FontSize>14pt</FontSize>
    <FontWeight>Bold</FontWeight>
    <Color>SteelBlue</Color>
    </Style>
    </TextRun>
    </TextRuns>
    <Style>
    <TextAlign>Center</TextAlign>
    </Style>
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>textbox1</rd:DefaultName>
    <Height>0.36in</Height>
    <Width>5in</Width>
    <Style>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    <Tablix Name="Tablix2">
    <TablixCorner>
    <TablixCornerRows>
    <TablixCornerRow>
    <TablixCornerCell>
    <CellContents>
    <Textbox Name="Textbox14">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>Customer Code</Value>
    <Style />
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>Textbox14</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixCornerCell>
    </TablixCornerRow>
    </TablixCornerRows>
    </TablixCorner>
    <TablixBody>
    <TablixColumns>
    <TablixColumn>
    <Width>1in</Width>
    </TablixColumn>
    <TablixColumn>
    <Width>1in</Width>
    </TablixColumn>
    </TablixColumns>
    <TablixRows>
    <TablixRow>
    <Height>0.25in</Height>
    <TablixCells>
    <TablixCell>
    <CellContents>
    <Textbox Name="Textbox18">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>=Sum(Fields!Result.Value)</Value>
    <Style />
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>Textbox18</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixCell>
    <TablixCell>
    <CellContents>
    <Textbox Name="Textbox16">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value />
    <Style />
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>Textbox16</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixCell>
    </TablixCells>
    </TablixRow>
    <TablixRow>
    <Height>0.25in</Height>
    <TablixCells>
    <TablixCell>
    <CellContents>
    <Textbox Name="Textbox19">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value />
    <Style />
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>Textbox19</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixCell>
    <TablixCell>
    <CellContents>
    <Textbox Name="Result">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>=Sum(Fields!Result.Value)</Value>
    <Style />
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>Result</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixCell>
    </TablixCells>
    </TablixRow>
    </TablixRows>
    </TablixBody>
    <TablixColumnHierarchy>
    <TablixMembers>
    <TablixMember>
    <Group Name="CustomerCode1">
    <GroupExpressions>
    <GroupExpression>=Fields!CustomerCode.Value</GroupExpression>
    </GroupExpressions>
    </Group>
    <SortExpressions>
    <SortExpression>
    <Value>=Fields!CustomerCode.Value</Value>
    </SortExpression>
    </SortExpressions>
    <TablixHeader>
    <Size>0.25in</Size>
    <CellContents>
    <Textbox Name="CustomerCode1">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>=Fields!CustomerCode.Value</Value>
    <Style />
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>CustomerCode1</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixHeader>
    <Visibility>
    <Hidden>=IIF(Globals!RenderFormat.Name="EXCEL",false,true)</Hidden>
    </Visibility>
    </TablixMember>
    <TablixMember>
    <Group Name="customerName">
    <GroupExpressions>
    <GroupExpression>=Fields!customerName.Value</GroupExpression>
    </GroupExpressions>
    </Group>
    <SortExpressions>
    <SortExpression>
    <Value>=Fields!customerName.Value</Value>
    </SortExpression>
    </SortExpressions>
    <TablixHeader>
    <Size>0.25in</Size>
    <CellContents>
    <Textbox Name="customerName">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>=Fields!customerName.Value</Value>
    <Style />
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>customerName</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixHeader>
    <Visibility>
    <Hidden>=IIF(Globals!RenderFormat.Name="EXCEL",true,false)</Hidden>
    </Visibility>
    </TablixMember>
    </TablixMembers>
    </TablixColumnHierarchy>
    <TablixRowHierarchy>
    <TablixMembers>
    <TablixMember>
    <Group Name="customerName1">
    <GroupExpressions>
    <GroupExpression>=Fields!customerName.Value</GroupExpression>
    </GroupExpressions>
    </Group>
    <SortExpressions>
    <SortExpression>
    <Value>=Fields!customerName.Value</Value>
    </SortExpression>
    </SortExpressions>
    <TablixHeader>
    <Size>1in</Size>
    <CellContents>
    <Textbox Name="customerName1">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>=Fields!customerName.Value</Value>
    <Style />
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>customerName1</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixHeader>
    <Visibility>
    <Hidden>=IIF(Globals!RenderFormat.Name="EXCEL",false,true)</Hidden>
    </Visibility>
    </TablixMember>
    <TablixMember>
    <Group Name="CustomerCode">
    <GroupExpressions>
    <GroupExpression>=Fields!CustomerCode.Value</GroupExpression>
    </GroupExpressions>
    </Group>
    <SortExpressions>
    <SortExpression>
    <Value>=Fields!CustomerCode.Value</Value>
    </SortExpression>
    </SortExpressions>
    <TablixHeader>
    <Size>1in</Size>
    <CellContents>
    <Textbox Name="CustomerCode">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>=Fields!CustomerCode.Value</Value>
    <Style />
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>CustomerCode</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixHeader>
    <Visibility>
    <Hidden>=IIF(Globals!RenderFormat.Name="EXCEL",true,false)</Hidden>
    </Visibility>
    </TablixMember>
    </TablixMembers>
    </TablixRowHierarchy>
    <DataSetName>DataSet1</DataSetName>
    <Top>0.53in</Top>
    <Left>0.5925in</Left>
    <Height>0.75in</Height>
    <Width>3in</Width>
    <ZIndex>1</ZIndex>
    <Style>
    <Border>
    <Style>None</Style>
    </Border>
    </Style>
    </Tablix>
    </ReportItems>
    <Height>1.51958in</Height>
    <Style />
    </Body>
    <Width>5in</Width>
    <Page>
    <LeftMargin>1in</LeftMargin>
    <RightMargin>1in</RightMargin>
    <TopMargin>1in</TopMargin>
    <BottomMargin>1in</BottomMargin>
    <Style />
    </Page>
    <AutoRefresh>0</AutoRefresh>
    <DataSources>
    <DataSource Name="DS">
    <DataSourceReference>DS</DataSourceReference>
    <rd:SecurityType>None</rd:SecurityType>
    <rd:DataSourceID>36063f24-6742-4f6a-a067-0e7a60156149</rd:DataSourceID>
    </DataSource>
    </DataSources>
    <DataSets>
    <DataSet Name="DataSet1">
    <Query>
    <DataSourceName>DS</DataSourceName>
    <CommandText>select 'customer1' customerName,'Code1'CustomerCode,11 Result
    union
    select 'customer1' customerName,'Code2'CustomerCode,14 Result
    union
    select 'customer1' customerName,'Code3'CustomerCode,17 Result
    union
    select 'customer2' customerName,'Code1'CustomerCode,12 Result
    union
    select 'customer2' customerName,'Code2'CustomerCode,15 Result
    union
    select 'customer2' customerName,'Code3'CustomerCode,18 Result</CommandText>
    <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
    </Query>
    <Fields>
    <Field Name="customerName">
    <DataField>customerName</DataField>
    <rd:TypeName>System.String</rd:TypeName>
    </Field>
    <Field Name="CustomerCode">
    <DataField>CustomerCode</DataField>
    <rd:TypeName>System.String</rd:TypeName>
    </Field>
    <Field Name="Result">
    <DataField>Result</DataField>
    <rd:TypeName>System.Int32</rd:TypeName>
    </Field>
    </Fields>
    </DataSet>
    </DataSets>
    <Language>en-US</Language>
    <ConsumeContainerWhitespace>true</ConsumeContainerWhitespace>
    <rd:ReportUnitType>Inch</rd:ReportUnitType>
    <rd:ReportID>3c1c52a7-70c0-4ed8-8f18-f621ef973a48</rd:ReportID>
    </Report>
    Thanks
    Prasad

  • Game Center doesn't work correctly

    Game Center on iPod Touch 2nd Gen doesn't work correctly under iOS 4.2.1
    It shows wrong language (Englist but not my native language. My region setting is right and the system language right too.)
    Besides, the "Games" page only has a button "Find Game Center Games", while it should show my Game Center Games.
    The Friends page shows all my friends. But when I press a friend the sub page doesn't show the game my friend and I have in common.
    I've restored my device several times, but it didn't help.
    How to solve it?

    I've had exactly the same problem on my 2nd gen since early May when it just stopped working out of the blue.
    There are a few threads here on the subject. I believe that every 2nd gen is affected as I've yet to hear a 2nd gen owner say that theirs works.
    Other than waiting for Apple to fix it I don't think there is a solution.

  • After upgrade my iphone 4 to IOS6, sound doesn't work correctly

    After upgrade my iphone 4 to IOS6, sound doesn't work correctly.
    During a phone call, there is no sound. But if I turn on the speaker, there is sound. itune works fine since it's on the speaker.

    Dear All
    i have done the same activity ( buy a new iphone 4 -> upgrade to ios5 - > configure email) with success-
    than when i start to move the contacts from old mobile to iphone (using the microsim) i receive the same crash
    in disgnosis e use i saw 2 dump with this title 'latestCrash-Preferences.plist and LatestCrash.plist. in each file the date is the same and i read:
    Exception Tyle: EXC_CRASH (SIGABRT)
    Exception code: 0x00000000, 0x00000000
    Chrashed Thread: 6
    in thread 6: name: Dispatch queue:
    com.apple.addressBookUI.ContactsSettingPlugin
    and thaan a lot of data.
    Have you any idea?
    thank in advance
    Fabio

  • Report an app that doesn't work

    Can someone please tell me how to report an app that doesn't work and get a refund?
    The app won't allow feedback (as soon as you type anything the "Submit" button is disabled) and the link for its support goes to a web site that appears to be totally unrelated.
    The "Report a problem" link on iTunes just takes me to the generic support page with a 1000 links to various forums etc. That's for nothing Apple.
    I can provide more details but I don't even know if this is the right place yet.
    Now maybe it's just me being a newbie with this whole Apps/iPad thing but it is NOT a user-friendly system IMO.
    Rob

    Express Lane is indeed how you contact the iTunes Store. The page I provided the link to is the one you reach when you click "Contact Support" in the sidebar.
    Is there no simple way to immediately cancel an order if you realize in the first fifteen minutes that it is not working as expected?
    There is no way to cancel an order at all, not within fifteen minutes, not within fifteen seconds. Once you click the "buy" button, you've purchased the item, and the Terms of Sale for the iTunes Store state clearly that "all sales are final". So if you are requesting a refund, you have to email the iTunes Store via the form you reach through Express Lane, explain the reasons for the request and hope that iTunes Store Customer Service will grant you an exception.
    Regards.

  • ITunes 10.4 full screen with Win7-64bit doesn't work correctly.

    iTunes 10.4 full screen with Win7-64 doesn't work correctly. I have the Windows taskbar on the left side of my screen. Maximized iTunes is panned to the left.

    Same issue here. When the Windows taskbar is position on the top of the screen and then the iTunes windows is maximised, it's position is as if the Windows taskbar is at the bottom of the screen so the top of the iTunes window sits under the taskbar.
    For those wanting a workaround, hold shift and right click the iTunes icon in the taskbar/quick launch bar and click restore, at least then you can adjust it to be full screen manually.
    System:
    Windows 7 Ultimate x64
    iTunes 10.4
    ATI 5750 video card

Maybe you are looking for

  • Droid Razr M

    Is the Droid razr m compatable with the square? I have heard it works great and I have also heard that it will lock up.. Anyone?

  • Script to choose which account mail is to be sent from in Mail?

    Does anyone have an AppleScript which will automatically set the default Mail account to an account chosen in script? I use FileMaker to send mail automatically, but have to use Eudora because it makes it easy to auto reset the default account from w

  • Internal Orders - settlement in Previous year

    Hi All, we have a balance sitting in Internal Orders which has to be settle. which was not settled in previous year. And previous fincal year is closed. How can we settle this amount? what are other options? Please advice, Misbah

  • Differemces between CRM 4.0 and CRM 5.0

    Hi Can someone help me out with 5-6 differences between CRMVersion 4 and 5? I need to know the differences from the Architecture side and in Sales and Marketing. Thanks Tarang

  • How to make Preview default viewer

    Whenever I click on a .jpeg to view it, RealPlayer opens up and only displays the top 1/10 of the image. How can I make Apple's Preview the default viewer?