#6580
Support 1a
Participant

    These terms have the same meaning as they do in the GroupWise client. A personal item is one that has not been sent to anyone else (i.e a posted item). A draft item is one that is still being worked on, and has not been sent to anyone. A draft item usually resides in the Work in Progress folder.

    Regarding the message ID, these can be obtained a number of ways – it depends on the context in which you are trying to obtain the ID. For example, if you want to obtain the message ID of the opened message in the GroupWise client, you could use GroupWise.MessageIDFromView, or you could use the client property to obtain the command message, then access it’s messageID property:

    Sub Main(Client, GWEvent)
    
      dim iMsg
      set iMsg = Client.ClientState.CommandMessage
      MsgBox iMsg.MessageID
    
    End Sub

    Have a look at the topic “Accessing GroupWise Information” in the programmers guide. It discusses many of these types of issues.

    I hope this helps,

    Advansys Support