Skip to main content
OCLC Support

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
     Dim bResult As Integer

     Set CS = GetObject(“Connex.Client”)

     If CS.IsOnline = False Then
          CS.Logon ““, ““, ““
     End If

     If CS.Search(“BS”, “rs:submitted”) > 0 Then
          CS.GetFirstItem
     End If

     bResult = CS.RecallSubmitted

     If bResult = True Then
          MsgBox “Submitted record successfully recalled from review”
     Else
          MsgBox “Submitted record not recalled from review”
     End If
End Sub
What this example does
  • Logs on to Connexion if not already logged on, using the default authorization and password you selected in Tools > Options > Authorizations tab.
  • Searches the online bibliographic save file for records your library submitted for review.

     Note: You can also search for all sum.

  • If the search retrieves multiple records, selects and opens the first record in the list.
  • Removes the review status “Submitted” from the record and withdraws it from review.
  • If successful, returns the message: Submitted record successfully recalled from review. If not, returns the message: Submitted record not recalled from review.

     Note: You can also search for all submitted records.