Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/algorithm/11.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Delphi Rave报告,组件动态变化_Delphi_Rave Reports - Fatal编程技术网

Delphi Rave报告,组件动态变化

Delphi Rave报告,组件动态变化,delphi,rave-reports,Delphi,Rave Reports,我在Rave Report中设计了工资证书格式,并通过数据视图(从oracle数据库)获取数据和绑定 I Have one problem in it For some employees some Allowances should hide (0 Amt Allowances ). How Can we design Rave report for it. 范例 “人员A工资证书”:人员B工资证书 **Fixed:**

我在Rave Report中设计了工资证书格式,并通过数据视图(从oracle数据库)获取数据和绑定

I Have one problem in it  
   For some employees some Allowances should hide (0 Amt Allowances ).
How Can we design Rave report for it.
范例 “人员A工资证书”:人员B工资证书

     **Fixed:**                                 **Fixed:**
         Basic      :   xxx                        Basic      :   xxx
         HRA        :   xxx                        HRA        :   xxx
         Conveyance :   xxx                        Conveyance :   xxx
         DA         :   xxx                        DA         :   xxx 

      **Optional**                             **Optional**
         Management Incent : xxx                   Night Shift Allow  :xxx
         Site Allowance    : xxx                  
         Night Shift Allow  :xxx      

     Please observe the Above 2 persons Salary certificates.

              In Above data, Person B don't have 
                        Management Incentive, 
                        Site  Allowance.
               So Night Shift Allowance Field should move Top.

      How can manage this with single design in Rave Reports.
提前谢谢。
Ravendra.

如果我想在报告中隐藏某些内容,有时还想根据某个条件显示某些内容,那么可以使用DataMirrorSection。你需要做的步骤很少

  • 创建一个新页面,在其中添加要显示的信息(将其添加为DataMirrorSection)
  • 将新的DataMirrorSection添加到您希望在其中执行操作的主页面
  • 选择您想要作为条件的数据字段(例如津贴)
  • 转到DataMirrors添加新的DataMirror(从镜像部分,您可以选择要显示的部分)
  • 在字段值处添加数据字段必须满足的值,以显示所选节
  • 对任意多个值重复此操作
  • 你也可以联系到这一点