-
15. Re: Attachments integration between Service now and Remedy
Suresh Loganathan Oct 26, 2017 4:20 AM (in response to Ramanee Samal)Hello Ramanee Samal,
Sorry, Still it's challenging. Probing the option to achieve this requirement.
Regards,
Suresh
-
16. Re: Attachments integration between Service now and Remedy
LJ LongWingOct 26, 2017 8:01 AM (in response to Suresh Loganathan)
2 of 2 people found this helpfulSuresh,
I have a version of my Restful plugin (Restful API Plugin – A Programming Legacy ) coming out by the end of the month that supports Attachments both to and from Remedy....this might help solve this problem.
-
17. Re: Attachments integration between Service now and Remedy
Ramanee Samal Oct 26, 2017 8:11 AM (in response to LJ LongWing)Hi Lj,
Will that be supported in Remedy ITSM 8.1?
Thanks,
Ramanee
-
18. Re: Attachments integration between Service now and Remedy
LJ LongWingOct 26, 2017 8:23 AM (in response to Ramanee Samal)
1 of 1 people found this helpfulYes...my plugin supports > 7.1 I believe....I forget exactly what version BMC switched away from native api's.....certainly doesn't work on 6.x....but 8.1 is no problem.
-
19. Re: Attachments integration between Service now and Remedy
Ramanee Samal Oct 26, 2017 8:25 AM (in response to LJ LongWing)Thanks LJ,
This will be very much helpful for me.
Please update me once it is ready for use.
Thanks,
Ramanee Samal
-
20. Re: Attachments integration between Service now and Remedy
Suresh Loganathan Oct 27, 2017 9:56 AM (in response to LJ LongWing)Hello LongWing,
Thanks for your reply. Waiting for the date and your update.
Hope, it will helpful for more people.
Regards,
Suresh L
-
21. Re: Attachments integration between Service now and Remedy
LJ LongWingOct 28, 2017 5:55 PM (in response to LJ LongWing)
1 of 1 people found this helpfulI have now published version 3.0
-
22. Re: Attachments integration between Service now and Remedy
Suresh Loganathan Oct 29, 2017 8:11 AM (in response to LJ LongWing)Thanks for the update LJ. Will try to do in my environment. Hope, it will resolve the attachment issue.
Regards,
Suresh L
-
23. Re: Attachments integration between Service now and Remedy
LJ LongWingOct 30, 2017 8:16 AM (in response to Suresh Loganathan)
I hope it will as well
-
25. Re: Attachments integration between Service now and Remedy
LJ LongWingNov 1, 2017 9:16 AM (in response to Suresh Loganathan)
1 of 1 people found this helpfulSuresh,
My sincerest apologies, I work really hard to try and get rid of all of the darn __c from all of my forms...I missed a few in this sample. I have re-published 3.0 with the updated sample, please re-download and verify.
-
26. Re: Attachments integration between Service now and Remedy
Suresh Loganathan Nov 2, 2017 4:01 AM (in response to LJ LongWing)Thanks LJ now I am able to import the form successfully.
My requirement is to push the attachments when added to the worklog of an incident to service now.
1. So to accomplish this, when I add an attachment to the worklog,I will be pushing the attachment to vendor form as well.(Assume APL:Sample Attachment in our case)
Is my understanding correct ?
2. Once I push it to that form, plugin will push the attachment contents in base64encoding format to mentioned endpoint in the APL:RestfulVendorForms:Table for that vendor form.
Appreciate your help and efforts towards this.
Thanks,
Suresh.
-
27. Re: Attachments integration between Service now and Remedy
LJ LongWingNov 2, 2017 9:07 AM (in response to Suresh Loganathan)
Suresh,
The samples are just that....samples...they are functional examples of various aspects of the tools capabilities. With that said, the samples won't do ANYTHING with ServiceNow....you will need to build out a Table record that corresponds properly with your ServiceNow instance, build out the fields, then create a Vendor form that utilizes the Table/Field records....then, once you have all of that built out and tested, you can start utilizing the Vendor form to push attachments out to ServiceNow.
You will need to read the user manual, likely many times, to understand how the plugin works....restful communication is an exceedingly complex subject and takes awhile to get your head wrapped around it
-
28. Re: Attachments integration between Service now and Remedy
Fred Grooms Nov 2, 2017 12:49 PM (in response to Suresh Loganathan)Since you are using SOAP... When you put your cursor over the "payload" element (in Developer Studio while mapping) what type does it say that element is?
Remedy already uses base64Binary for an attachment. If the Service Now WSDL is describing the payload element as a String then the Service Now WSDL needs to be corrected. Sometimes you can cheat and save the WSDL to your local PC, edit the WSDL in Notepad changing the payload element to be type base64Binary and use that as the WSDL source of your Set Fields call. You will then be able to map the Attachment data to the payload. (Size is not required to be mapped to them)
Be careful as Service Now has in the past had a limit on the size of an attachment (something around 60k) due to their using of a string internally.
Fred
-
29. Re: Attachments integration between Service now and Remedy
Suresh Loganathan Nov 6, 2017 7:51 AM (in response to LJ LongWing)I completely agree and understand LJ what you have said.
My point was to say that once I have my new vendor form configured with URL which I need to post, authentication and template defined for request along with an attachment field, only think to achieve later will be to create a new record in my vendor form is to push the attachment name from my workflow. Once a record is created PLUGIN would push to the URL specified as in the table for that vendor form. Is that correct?