Sage 100

 View Only
  • 1.  Does anyone have a sample script that will open a

    Posted 09-04-2018 09:18
    Does anyone have a sample script that will open a url from a UDF? Thanks!


  • 2.  RE: Does anyone have a sample script that will open a

    Posted 09-04-2018 09:28
    This will open the Customer URL in the default browser: Dim wsh Set wsh=CreateObject(""WScript.Shell"") wsh.Run AR_Customer_bus_URLAddress


  • 3.  RE: Does anyone have a sample script that will open a

    Posted 09-04-2018 10:04
    Thanks. I am trying to launch a url from an inventory item UDF I have this as my script: Dim Itemurl Itemurl = """" retVal = """" retVal = oBusObj.GetValue(""UDF_IMAGE_URL$"", Itemurl) Set fs = CreateObject(""Scripting.FileSystemObject"") Set Shell = CreateObject(""WScript.Shell"") Shell.Run(Itemurl) I am getting an OLE Error Number : 424 Description : Object required: 'oBusObj' Any thoughts?


  • 4.  RE: Does anyone have a sample script that will open a

    Posted 09-04-2018 10:06
    Is ""Allow External Access"" turned on in Company Maintenance?


  • 5.  RE: Does anyone have a sample script that will open a

    Posted 09-04-2018 10:08
    @MichaelNottoli That was it. Thanks so much!