Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

where clause on data block

tayshaunMay 8 2022

I use oracle_linux, and I have oracle forms 12.2.1.4 installed
I have a form and I want to filter the records of that form by the where clause of the data block, I have a subquery related to another table that is the one with the status that I do not want to show in that form
my subquery is : that I have in the block in the where clause
not exists(select * from movh h,movd d
where h.cod_mov=d.cod_mov
and h.ncf=d.ncf and not exists(select p.period from period p
where h.company=p.company
and d.company=p.company
and h.period=p.period
and h.period=p.period
and d.period=p.period
and p.period_st='B'))
by the database when I execute the query it works fine, but when I put the query in the data block of the form it doesn't show me any records, and when I press the Shift + F1 key, it shows FRM-42100:No errors encountered recently

Comments

dvohra21

What is the JDev, and BI publisher versions?

Abdelrahman ElGiar

j dev Ver : 12.2.1.2
BI Ver : 12.2.1.4
I found that I can use a dynamic BIP data source any reference for how to use it?

1 - 2

Post Details

Added on May 8 2022
8 comments
993 views