Forum Replies Created
-
AuthorReplies
-
No this is not the solution. I installed now a Groupwise Client Version 8 with Formativ 2.5 and… no applets… it seems as it is not the combination of GW2012 and Formative…
Formativ is registrated. The problem only apears on new installed Clients. Updated clients, from Groupwise 8, do not have the problem. My Workaround for new clients at the moment is, install Groupwise 8 then update to Groupwise 2012.
In the meantime I found the registrationswitch so now I only need the information about how to make the existing applets visible.
Hi
I have tested my workflows with GW 2012 SP1. Now it’s working.
Thanks
Rolf Ziegler
Hi
I changed a small Workflow by adding Trace-Messages. So it seems not to be a XML-Issue. I think, it’s a problem with the GW Integration. Because, when i receive the message and i should get an “GW#C#OPEN” Event, Formativ seems not to start.
Here is my sample Code:
Sub Main(Client, GWEvent)
1 MsgBox “Trace: Before Select”
select case GWEventcase “NULL”
2 MsgBox “NULL”
Antrag.fDatum.Text = Date
Antrag.fErsteller.Text = GroupWise.Account.Owner.DisplayName
Antrag.ShowModal‘someone opens the message – the GUI will be recreated
case “GW#C#OPEN”3 MsgBox “Trace: GW#C#OPEN”
set oClient = Client
set iMsg = oClient.ClientState.CommandMessage
Read_XML(iMsg)……
Under GW 8 and before: all MSGBOX’s do appear. The first and second appear, when i create the form. The third MSGBOX, when i get the Form (sent before) and the mail will be forwarded to Formativ.
Unter GW 2012: I get the first and second MSGBOX when i create the form. When i open the Mail i sent before, i get no MSGBOX, so i think, that the integration does not work.
Thanks for your Help
Rolf Ziegler
Hi
I write custom solutions which no longer work with GW2012. We are using xml-Code to send Data and to show Input Forms. In GW2012, the form will not be shown. Only the xml-Mail is viaible. In GW 8 and before, the code works well. I’have this code to show up the form:
‘No Trigger – we create a new NewUser-Dialog
case “NULL”
ComposeNewUserDlg()‘someone opens the message – the UI will be recreated
case “GW#C#OPEN”
set oClient = Client
set iMsg = oClient.ClientState.CommandMessageOpenNewUserMsg(Client)
…..
The Case “Null” is working, but the recreation of the UI fails.
This is a part of the function “OpenNewUserMsg”:
‘——————————————————————————-
‘ Show the NewUser Dialog with the parameter filled in by the customer
‘——————————————————————————-
Sub OpenNewUserMsg(Client)Dim iDom
dim iDoc
dim erg
dim iMsgon Error Resume Next
set iMsg = Client.ClientState.CommandMessage
if iMsg is Nothing then
Exit Sub
end if‘Create a XML Document
set iDom = Utilities.XMLDom
set iDoc = iDom.Document
set iDoc.async = “false”‘Load the xml string in to xml Document
iDoc.LoadXML(iMsg.BodyText.PlainText)‘Load the Nodes into the appriopriate fields on the form
NewUser.NUNachname.Text =iDoc.getElementsbyTagName(“Nachname”).item(0).text
NewUser.NUVorname.Text = iDoc.getElementsByTagName(“Vorname”).item(0).text
NewUser.NUAbteilung.Text = iDoc.getElementsByTagName(“Abteilung”).item(0).text
NewUser.NUEintritt.Date = iDoc.getElementsByTagName(“Eintritt”).item(0).text
NewUser.NUNetzwerk.Checked = iDoc.getElementsByTagName(“Netzwerk”).item(0).text
NewUser.NUTextverarbeitung.Checked = iDoc.getElementsByTagName(“Textverarbeitung”).item(0).text
NewUser.NUExcel.Checked = iDoc.getElementsByTagName(“Excel”).item(0).text
NewUser.NUSonstiges.Text = iDoc.getElementsByTagName(“Sonstiges”).item(0).text
NewUser.NUAS400.Checked = iDoc.getElementsByTagName(“AS400”).item(0).text
NewUser.NUProfid.Checked = iDoc.getElementsByTagName(“Profid”).item(0).text
NewUser.NUOntime.Checked = iDoc.getElementsByTagName(“Ontime”).item(0).text
NewUser.NUFinanz.Checked = iDoc.getElementsByTagName(“Finanz”).item(0).text
NewUser.NUCompas.Checked = iDoc.getElementsByTagName(“Compas”).item(0).text
NewUser.NUP400.Checked = iDoc.getElementsByTagName(“P400”).item(0).text……
I think, there is a problem with GW2012, Formativ and XML.
Have you any ideas?
Thanks
Rolf Ziegler
quote:Originally posted by Support 2:
Hi Rolf,Thanks for your message. Yes, there is a plan. Unfortunately, for a range of reasons, the project timeline has extended well beyond our expectations. The release of our Advansys RecollX for Skype product in the next two weeks will enable us to diversify into a growing market, which in turn will help us to continue servicing the changing GroupWise market.
quote:…because our Formativ Workflows do not run on GW 2012Could you please provide more details on what you mean by Formativ Workflows? Have you written custom solutions which no longer work? What type of problems are you experiencing?
Kind Regards,
Advansys Support
Hi
We are waiting for a GW 2012 Update. We can not rollout the new client, because our Formativ Workflows do not run on GW 2012.
Is there a update plan?
Greetings
Rolf Ziegler
quote:Originally posted by Support 2:
Hi Jason,Thanks for the feedback. Your work-around is correct and we’ll be finalising a formal update after tests with the GroupWise release code are completed, which should be within 6 to 8 weeks. There is likely to be a beta download during this period. It is correct that GW 2012 is not yet officially supported for Formativ until this update is released. We’ll be updating the information our site soon to reflect these plans.
Kind Regards,
Advansys Support
The send command follows below
i want to send an appointment but i don’t wont participate this appointment. From my workflow, I have to create an appointment in an other user’s mailbox.
Thanks Support3 – re-convertig to a string was the reason.
Thanks
Hi Support!!
I’ve sent you long times ago the mentionned file… but I have still no answer!
Please help us we have several users with the same problem!!
regards
mel
Thanks. Yes the Runtimeversion is registered. I will send you the informations you mentioned.
thanks
Mel
Thanks for the hint. This solved the problem, of the item-name. Unforunately there are still no applets available. The only item under applets is Quick Config…
Greetings
Mel
After a while i found the associate button in the configuration page.
Thanks
This answer doesn’t help me. What is to do, when i want to change the properties. My Code look as follows:
set mClient = oClient
set mMsg = mClient.ClientState.CommandMessage
MsgBox(mMsg.TaskPriority)
mMsg.TaskPriority = 2
msgBox(mMsg.TaskPriority)Something is missing. The first MsgBox tell me the actual TaskPriority. The following Code is ignored, the second MsgBox will not be shown and the TaskPriority has the same value as before.
Thanks
Thanks for your help. I used the novell documentation. Im now using the address book control (GWAB).
First i choosed the Property “ShowButtons” to get the OK and the Cancel Button. Then I set the Property to select only one entry and last: using the Count() method I can now read the “GWAB.EMailAdress(count)” to determine the selected E-Mail-Address.
-
AuthorReplies