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

wzhang-Oracle
The "Row Movement disabled" warning does not block the conversion but affects whether the CTAS conversion method can be assigned, please see DMU FAQ (#15):

http://www.oracle.com/technetwork/database/globalization/dmu/learnmore/faq-345828.html

For the DMU-00114 error, have you tried refreshing the DMU repository after purging the recycle bin?
and did you do a full purge?

conn / AS sysdba
PURGE DBA_RECYCLEBIN
/
1 - 2

Post Details

Added on May 8 2022
8 comments
1,092 views