Kbase P54120: Displaying the recid(record) is returning ?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  2/17/2004 |
|
Status: Unverified
FACT(s) (Environment):
Progress 9.1C
SYMPTOM(s):
The recid(record) is returning ?
CAUSE:
The record is not available.
FIX:
Check to see that the record is available.
Example Code Snippet that demonstrates the AVAILABLE Function:
REPEAT:
PROMPT-FOR item.item-num.
FIND item USING item-num NO-ERROR.
IF AVAILABLE item
THEN DISPLAY RECID(item).
ELSE MESSAGE "Not found".
END.