FCLT#65498 fac_version_cust en fac_version_group

svn path=/Database/trunk/; revision=49443
This commit is contained in:
Erik Groener
2021-01-15 10:12:24 +00:00
parent 674bdc099f
commit 9fd40f8c85
2 changed files with 18 additions and 0 deletions

View File

@@ -190,6 +190,15 @@ BEGIN
END;
/
CREATE_TRIGGER(fac_t_fac_version_B_IU)
BEFORE INSERT OR UPDATE ON fac_version
FOR EACH ROW
BEGIN
:new.fac_version_cust := UPPER(:new.fac_version_cust);
:new.fac_version_group := UPPER(:new.fac_version_group);
END;
/
CREATE_TRIGGER(fac_t_fac_message_B_IU)
BEFORE INSERT OR UPDATE ON fac_message
FOR EACH ROW

View File

@@ -220,6 +220,15 @@ ALTER TABLE mld_opdr_uren MODIFY mld_opdr_key CONSTRAINT mld_r_ml
/////////////////////////////////////////////////////////////////////////////////////////// LOGC#65120
DEF_FAC_SRTNOT('FACREG', 127, 'lcl_noti_PRSREG', '', '0', 'perslid', 0);
/////////////////////////////////////////////////////////////////////////////////////////// FCLT#65498
CREATE_TRIGGER(fac_t_fac_version_B_IU)
BEFORE INSERT OR UPDATE ON fac_version
FOR EACH ROW
BEGIN
:new.fac_version_cust := UPPER(:new.fac_version_cust);
:new.fac_version_group := UPPER(:new.fac_version_group);
END;
/////////////////////////////////////////////////////////////////////////////////////////// FCLT#*****
///////////////////////////////////////////////////////////////////////////////////////////