Translation:
Hi, i'm developing an application using developer 2000, and would like to add online help.
I think d2k has tools to create online help, but I don't know what they are or how to use them.
Can anyone help me? Thanks a lot.
Personalmente, nunca habia oido hablar de que developer 2000...
Imagine this situation:
You have a parameter form which asks you for an employee code, then it asks you for a date. The date depends on the code previously entered. The list of values for the date field should be something like this :
select mydate
from mytable
where code = :empCode
How can...
I'd like to know when did Oracle end the support for SqlForms 3.0 and SqlReportWriter 1.1.
Also, when will Oracle end its support for ORACLE 7.3.4, Forms 4.5 and Reports 2.5
Thanks
Can a parameter LOV reference a previous parameter? If not, how can i do something like this?
select desc
from table
where cod = :x
where x is a previous parameter.
Yep. Forgot that little detail! That's why I prefer to copy the data to another table, run the script that created the table (modified), and then insert back the data again.
It's easier this way.
can a parameter LOV reference a previous parameter? If not how can i do something like this?
select desc
from table
where cod = :x
where x is a previous parameter.
First construct the following view:
create or replace view bed_occupation as
select c1.bed_id bed,
max(c1.date_assigned) from,
min(c2.date_assigned) to,
c1.patient_id patient
from bed_history c1,
bed_history c2
where c1.bed_id = c2.bed_id
and...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.