Skip to main content
Solved

Display column

  • 13 March 2023
  • 1 reply
  • 54 views

Hi Team,

 

I’m trying to add column in FS305700 ( schedule tab) to display below TranDesc column from FS305100.

 

 

Irrespective of the entries, it should display only the first line of TranDesc. Can someone help here, how to achieve this.

1 reply

Userlevel 7
Badge +9

I assume you mean by code customizations. So, you will need to

  1. add a Custom string field to the target DAC Ext. If you want to be able to modify and save changes in the target DAC use DB field otherwise if it is just for display purpose then unbound field will do the work.
  2. add a FieldSelecting event to the Graph Ext for the new Custom Field to retrieve the data from the source table and display. If you want to always bring the first record you can append your select query by .FirstOrDefault() or .SelectWindowed(Graph, 0, 1, [params])

Reply