zoukankan      html  css  js  c++  java
  • Session for SSRS Report of Microsoft Dynamics AX

    Session for SSRS Report of Microsoft Dynamics AX

    版权声明:本文为博主原创文章,未经博主允许不得转载。

    Contract

    •A data contract class has methods with the DataMemberAttribute [DataContractAttribute] attribute. The name that follows the attribute is the parameter name that displays in Visual Studio when you bind a report data set to the RDP class
     
    •Comment: Contract class is data contract class for SSRS report .
    •Intent: Gets or sets the value of the data contract parameter.

    Controller:

    Comment: Controller class for SSRS report that is used to control the report execution as well as preprocessing of the report data. The SSRS reporting framework uses this class to modify the report dialogs, calling the SQL Server reporting services, as well preprocessing parameters for the report. Controller class extends SrsReportRunController .follow is the controller class can be used:

    1. Modifying a report query based on the input data

    2. Modifying report contract data based on the input data

    3. Control a report parameters dialog

    4. Open different reports/designs from the same menu item based on the input data

    5. Reports that are opened from a form

    Intent: The main class for report, but one report should not include this class, beacase this kind of report directly  call SrsReportRunController (Under normal circumstances, method main of controller class always call this framework class.)

    DP:

    Comment: DP class is a data provider class for report.

    Intent: The key method ‘ProcessReport’ is in DP class, DP class include all process of data processing, eg: processes the report business logic and insert data to table.

     Two important attributes are used in DP classes:

    1. SRSReportQueryAttribute: specifies which AOT query will be used in this report. If the DP class uses an AOT query to process data, define this attribute at the beginning of the class.
    2. SRSReportParameterAttribute: defines the data contract class that will be used by this report to prompt for parameter values. If the DP class contains any parameters this define this attribute at the beginning of the class.

    Both the attributes are optional. If the report does not use any query or does not want any parameter to filter report data, these attributes do not need to be used.

    UIBuilder

    Comment: User Interface (UI) Builder class builds the UI for SSRS report , this Class is used to define the layout of the parameter dialog box that opens before a report is run in Microsoft Dynamics AX. It is used to add the customizations as well as additional fields in the dialog. follow is the UIBuilder class can be used:

    1. Grouping dialog fields

    2. Overriding dialog field events

    3. Adding a customized lookup to a dialog field

    4. Binding dialog fields with Report contract parameters

    5. Changing the layout of the dialog

    6. Adding custom controls to the dialog

    Intent: Build a UI dialog, user can use this dialog to input some data parameter to print report.

    博主:海宁

    联系:whnsspu@163.com

  • 相关阅读:
    Mysql存储引擎
    数据库事务的四大特性以及事务的隔离级别
    万万没想到,面试中,连 ClassLoader类加载器 也能问出这么多问题
    万万没想到,JVM内存区域的面试题也可以问的这么难?
    SQL Server读取及导入Excel数据
    SQL Server加密与解密
    线程之间如何通信
    mybatis 批量更新 批量添加
    vue echarts 从后台获取数据形成饼图,柱状图,折线图
    vue 视频播放
  • 原文地址:https://www.cnblogs.com/haining1993/p/5276812.html
Copyright © 2011-2022 走看看