tcatgcsd

Comments

  • I've been experimenting with Google Apps script and have gotten basic queries from the API documentation to load to a sheet: function myFunction() { var credentials = "username=MYUSERNAME&password=MYPASSWORD"; var spreadsheetKey = 'SHEETKEY'; var ss = SpreadsheetApp.openById(spreadsheetKey); var sheet =…
  • I'm using Apps Script this worked for me: var tabName = 'Models'; var url = "https://xxxxxx/helpdesk/WebObjects/Helpdesk.woa/ra/" + tabName + "?qualifier=(modelName like '*Lenovo*')" + credential;
  • Wanted to update this with the solution I used. I ended up being able to create a database link in the application from the webhelpdesk main menu. Setup > Assets > Discovery Connections and created a connection to a Database Table or View that contained the information that needed to be updated for the assets. So now when…