raviteja.m123@g
29th July 2022, 10:41
Hi Guys,

I have a requirement like reading the data from the marked records when a form command is executed.

I have form field called 'order.number' on the session and also two other table fields. I am able to get the table field values correctly, but the form field value is not showing properly.

Could you guys please help me on this.

I have written a logic something like this.

code:

for i = 1 to filled.occ
if mark.table(i) then
do.occ(i, update.record.in.table)
endif
endfor

function update.record.in.table()
{
insert.records(order.number)
}

Thanks & Regards
Ravi

mark_h
29th July 2022, 15:48
Is this a multi-occurrence session? On 4c4 In my multi-occurrence sessions I always used table fields in the do.occ() portion. I can't recall why I did this but I know I had issues with updateable fields in the multiocc forms.

Wait for an LN expert.

raviteja.m123@g
1st August 2022, 09:47
Hi Mark,

Thank you for your reply. yes this is a Multi-occurrence session. It is working fine for the table fields. it is having problem with form fields only.


Thanks & Regards
Ravi