Kbase P111605: Code sample show in System Administration Guide chapter 18.2.3 Trigger based replication procedure p
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  07/12/2005 |
|
Status: Unverified
FACT(s) (Environment):
Progress 8.x
SYMPTOM(s):
Code sample show in System Administration Guide chapter 18.2.3 Trigger based replication procedure puts wrong data in database
The include file used for replication trigger is storing the literal pre-proccessor definition instead of the value expected
CAUSE:
Error in documnetation
FIX:
The include file reads:
ASSIGN ... RepLog.KeyValue = '{&Key}'
It should be
ASSIGN ... RepLog.KeyValue = {&Key}.
Also the trigger procedure should pass &key as "STRING( oldcust.cust-num", double quotes are included.