RecallSubmitted
Find the syntax, use, parameters, return values, and an example for the RecallSubmitted macro command in Connexion client.
Syntax | BOOL = CS.RecallSubmitted (sSymbol) |
---|---|
Use to | Recall a record from review. Same as using the Action > Recall Submitted Record menu command. |
Parameters | None |
Comments | You must be logged on to run this macro. |
Return values | TRUE if the action is successful, or FALSE if not. |
Example | Sub Main()
Dim CS As Object If CS.Search(“BS”, “rs:submitted”) > 0 Then bResult = CS.RecallSubmitted If bResult = True ThenMsgBox “Submitted record successfully recalled from review” Else MsgBox “Submitted record not recalled from review” End If End Sub |
What this example does |
|