go to post Gilberto Junior · Oct 22, 2018 Your screen print shows the serRadiology service call to the proPCMAttributeRadiology process as asynchronous.For this reason you do not have Message QueuingSorry for any mismatch, as this message has been translated by Google TranslateThank youGiba.
go to post Gilberto Junior · Oct 18, 2018 Hi JohnIn this case the problem is not in BP but in your BS asynchronous.Try a test by swapping your BS call to sync.After this change the messages will start to queue within your BPSorry for any mismatch, as this message has been translated by Google TranslateObrigado Giba.
go to post Gilberto Junior · Sep 14, 2018 Class Rest.EmailSvc Extends %CSP.REST{XData UrlMap [ XMLNamespace = "http://www.intersystems.com/urlmap" ]{<Routes> <Route Url="/TesteQuery/" Method="GET" Call="TesteQueryString"/></Routes>}ClassMethod TesteQueryString() As %Status{ Set tSC = $$$OK If 'tSC Quit tSC Set tProxy = ##class(%ZEN.proxyObject).%New() Set tProxy.Discipline = $Get(%request.Data("Discipline", 1)) Set tProxy.TestCode = $Get(%request.Data("TestCode", 1)) Set %response.ContentType = "application/json" set %response.Status = 200 Do tProxy.%ToJSON() Quit tSC}}
go to post Gilberto Junior · Sep 13, 2018 Hi Try the function## Class (% SYS.LDAP) .Err2String (7)Try the function, using the return code in place of 7 below## Class (% SYS.LDAP) .Err2String (7)My Caché is in PortugueseThis post has been translated by Google Translate, sorry for writing errors
go to post Gilberto Junior · Jun 5, 2018 Hi.Use this code in namespace %sys:update Security.Users set FullName = 'GOKU', Comment= 'Oi eu sou o GOKU' where id = 'gsjunior' where the ID is the user login
go to post Gilberto Junior · Jun 5, 2018 Hi in this case I have already used a function that returns a string, with this I came to a utility very similar to the switch case of other languages Sorry for the possible inconsistency in the response, it was translated by google translatorExample: Class Case.Teste Extends %SerialObject{ClassMethod Teste(pReq As %Integer){WRITE $CASE(pReq, 1:..Oi(),2:..Tchau(),: ..GOKU())}ClassMethod Oi() As %String{Quit "OI sou do Brasil"}ClassMethod Tchau() As %String{Quit "Um abraço"}ClassMethod GOKU() As %String{Quit "Oi Eu sou o GOKU"}Storage Default{<StreamLocation>^Case.TesteS</StreamLocation><Type>%Library.CacheSerialState</Type>}}USER>do ##Class(Case.Teste).Teste(1)OI sou do BrasilUSER>do ##Class(Case.Teste).Teste(2)Um abraçoUSER>do ##Class(Case.Teste).Teste(3)Oi Eu sou o GOKUUSER>