File Information
Database Conditions File: ABCFLAG.DCF
The line
*Â DATABASE:Â ABC.FMP
should reflect the appropriate project name, that is,
* DATABASE: <proj>.FMP
where
<proj>
= your project code. This project code must also be used in the file name, that is,
<proj>flag.dcf
.
* DB scripting file generated by isis field calc
* DATABASE: ABC.FMP
* KEY : *
* RECORD : LITH
* Test record an
if (db_cur_record eq "SURV") then
if (match("*",DHID)) then
update = 1
else
update = 0
endif
endif
* Test data record
if (db_cur_record eq "LITH" and update) then
* Apply equations
if (FF eq "F" or TF eq "F") then
FLAG = "P"
else
FLAG = "M"
endif
endif
*> RELOADABLE DEFINITIONS
*> KEY:T90
*> RECORD:LITH
*> FIRST_TRUE_EQUATIONS
*> COND:FF eq "F" or TF eq "F"
*> FIELD:FLAG
*> EQUAT:P
Was this page helpful?