...

Отчеты.

Тема в разделе "Разработчикам", создана пользователем zazimko, 14 июн 2017.

  1. zazimko

    zazimko New Member

    Есть произвольный отчет. Вот его выборка для данных:
    select count(prcs."Id") as quantity,TO_CHAR(apq."Name") as app
    from P_FillingApplication prcs

    inner join appquality apq on prcs.appquality = apq."Value"

    where prcs.appquality <> 0 and prcs.appquality is not null
    group by TO_CHAR(apq."Name").

    Запрос рабочий проверял отдельно в PL|sql Developer/
    Но при попытке сделать отладку появляется ошибка. Как я понима это внутри ELma при рендеринге что-то происходит. Как можно победить или отладить?
    Код:
    Server Error in '/' Application.
    
    (Series2): Error CS1525: Invalid expression term '['
    (Series2): Error CS1002: ; expected
    (Series2): Error CS1002: ; expected
    (Series2): Error CS1525: Invalid expression term ']'
    (Series2): Error CS1525: Invalid expression term '['
    (Series2): Error CS1002: ; expected
    (Series2): Error CS1001: Identifier expected
    (Series2): Error CS1002: ; expected
    (Series2): Error CS1525: Invalid expression term ')'
    (Series2): Error CS1002: ; expected
    (Series2): Error CS1525: Invalid expression term ']'
    
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    
    Exception Details: FastReport.Utils.CompilerException: (Series2): Error CS1525: Invalid expression term '['
    (Series2): Error CS1002: ; expected
    (Series2): Error CS1002: ; expected
    (Series2): Error CS1525: Invalid expression term ']'
    (Series2): Error CS1525: Invalid expression term '['
    (Series2): Error CS1002: ; expected
    (Series2): Error CS1001: Identifier expected
    (Series2): Error CS1002: ; expected
    (Series2): Error CS1525: Invalid expression term ')'
    (Series2): Error CS1002: ; expected
    (Series2): Error CS1525: Invalid expression term ']'
    
    
    Source Error:
    
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    
    Stack Trace:
    
    
    [CompilerException: (Series2): Error CS1525: Invalid expression term '['
    (Series2): Error CS1002: ; expected
    (Series2): Error CS1002: ; expected
    (Series2): Error CS1525: Invalid expression term ']'
    (Series2): Error CS1525: Invalid expression term '['
    (Series2): Error CS1002: ; expected
    (Series2): Error CS1001: Identifier expected
    (Series2): Error CS1002: ; expected
    (Series2): Error CS1525: Invalid expression term ')'
    (Series2): Error CS1002: ; expected
    (Series2): Error CS1525: Invalid expression term ']'
    ]
       FastReport.Code.AssemblyDescriptor.InternalCompile() +490
       FastReport.Report.Compile() +145
       FastReport.Report.Prepare(Boolean append) +317
       FastReport.Web.WebReport.PrepareReport() +965
       EleWise.ELMA.Reports.Web.Report.Page_Load(Object sender, EventArgs e) +505
       System.Web.UI.Control.OnLoad(EventArgs e) +109
       System.Web.UI.Control.LoadRecursive() +68
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1436
     
  2. pushkarev

    pushkarev Active Member

    Судя по ошибке FastReport (генератор отчетов использующийся в ELMA) ругается на некоторое выражение, которое использовалось в форме отчета. Если выгрузите отчет, то можно будет посмотреть какое именно.
     
  3. zazimko

    zazimko New Member

    имеете ввиду экспорт конфигурации? и в конфигурации выбрать только отчет?
     
  4. zazimko

    zazimko New Member

    Сохранил файл в frx. открыл с помощью студии. увидел что для диаграммы используется поле которого нет. все заработало.
     
    1 это нравится

Поделиться: