Login
`
Templates, Tools and Utilities
|
||
Add a comment to an Icetips ArticlePlease add your comments to this article.
Please note that you must provide both a name and a valid email address in order
for us to publish your comment. Comments are moderated and are not visible until they have been approved. Spam is never approved!
Back to article list Search Articles Add Comment Printer friendly Direct link Par2: Passing fields and keys as parameters 1998-03-09 -- Jim Katz Prototype your procedure:
MyProc PROCEDURE(*? FldName,*Key MyKey)
In MyProc in your data section:
PassedField ANY !! << This is important, you must use an ANY type here.
PassedKey ?Key
In your code in MyProc
Code
.....
PassedField &= FldName
PassedKey &= MyKey
Set(PassedKey)
or
Do FieldPriming
Set(PassedKey,PassedKey)
You would call MyProc, just by using the field and key labels as
declared in your data dictionary.
Today is December 3, 2024, 11:38 am This article has been viewed 35309 times.
|
|