英文:
Is there any way to get the Acumatica base URL through BLC / graph code?
问题
是否有一种方法可以通过业务逻辑代码获取Acumatica基础URL?
英文:
Is there a way to get the Acumatica Base URL through the business logic code?
答案1
得分: 0
你可以使用 PXInstanceHelper.HostName
,它会返回你的计算机名称,或者你可以使用 System.Web
中的 HTTPContext:
HttpContext.Current.Request.Url.Host + HttpContext.Current.Request.ApplicationPath;
英文:
You can use PXInstanceHelper.HostName
, it returns with your computer's name, or you can use HTTPContext from System.Web
:
HttpContext.Current.Request.Url.Host + HttpContext.Current.Request.ApplicationPath;
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论