GetScheduleOccurrenceNotes Method
- Last UpdatedApr 15, 2025
- 1 minute read
Gets a collection of records of the ScheduleOccurrenceNotesInfo lightweight object type from the Intelatrac database based on the specified criteria.
'Declaration
Public Function GetScheduleOccurrenceNotes( _
ByVal criteria As String, _
ByVal token As String _
) As Collection(Of ScheduleOccurrenceNotesInfo)
'Usage
Dim instance As SdkClient
Dim criteria As String
Dim token As String
Dim value As Collection(Of ScheduleOccurrenceNotesInfo)
value = instance.GetScheduleOccurrenceNotes(criteria, token)
public Collection<ScheduleOccurrenceNotesInfo> GetScheduleOccurrenceNotes(
string criteria,
string token
)
public:
Collection<ScheduleOccurrenceNotesInfo^>^ GetScheduleOccurrenceNotes(
String^ criteria,
String^ token
)
Parameters
- criteria
- The criteria clause used to limit the result set.
- token
- A security token retrieved via
AIMserver request
Return Value
A typed collection of ScheduleOccurrenceNotesInfo objects.
The WHERE clause in the criteria can include any of the data member names to fetch the schedule occurrence notes from the Intelatrac database. This example would fetch all the schedule occurrence notes for a particular schedule occurrence:
“WHERE ScheduleOccurrenceFK = ‘D92D38FD-1476-4693-A85C-659895EBCA44’”
This example would fetch schedule occurrence notes with Note as ‘Note1’:
“WHERE Note = ‘Note1’”
This example would fetch schedule occurrence notes based on a reason code:
“WHERE ReasonCodeFK = ‘8A2D9F18-68D8-4841-9A87-4780D36FC7A6’”