This is a Dexterity Question.
I am trying to capture the values of fields for the lines on a scrolling windows that are marked.
Specifically I want to capture the batch ID, posted date and Batch Totals that are checked on the Generate EFT Files window.
when the Generate EFT File button is pressed.
I already have a Trigger Registered and working when the Generate EFT files Window.
I am trying to grab the fields listed above and then will pass them to another proc.
I am unsure whether to referenece the fields listed above either via scrolling window Table buffer or with the scrolling window values themselves.
Here is a sample of my Dexterity of trying to capture the Batch total. I am not sure what the correct table buffer name is
if not empty('EFT Status' of table cmTransactionEFTBatch) then
temp1 = 'Batch Total' of table cmTransactionEFTBatch;
end if;
the above always returns 0.0000 for temp1 - which is supposed to be the batch total. If the field was part of the main window i would be fine but scrolling windows are a little more difficult.