Kbase P19146: Mismatched number of parameters passed to procedure fetchRow
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  2/11/2003 |
|
Status: Unverified
SYMPTOM(s):
Mismatched number of parameters passed to procedure fetchRowIdent adm2/data.p
(3234)
Program contains the statement:
DYNAMIC-FUNCTION('fetchRowIdent':U IN h_dcust2000, cRowID).
CAUSE:
The fetchRowIdent function expects two input parameters and only one is being passed in the code.
FIX:
Pass the two parameters required by this function as per the following syntax.
DYNAMIC-FUNCTION('fetchRowIdent':U IN h_dcust2000,
INPUT pcRowIdent /* CHARACTER */,
INPUT pcViewColList /* CHARACTER */)