I don't want to show the subjects in LOV after they are selected once
I tried the following SQL for record group; the subject_id goes to class_info block after selecting a subject from LOV.
select subject_name, subject_id
from subject
where subject_id not in(nvl(:class_info.SUBJECT_ID, 0)
But it's not working.
If LoV query shouldn't display values you've already selected, you'll have to
postrecords in "Subjects" block as soon as they are entered into a form. Usewhen-new-record-instancetrigger. As values (subjects) are stored into table (but not committed yet!), LoV query can reference them asI'm guessing base table name, as well as identifier that references master block primary key field; you should know their names.