Hi Dmitry,
Thank you for your answer.
Best Regards, Flávio.
- Log in to post comments
Hi Dmitry,
Thank you for your answer.
Best Regards, Flávio.
Hi Evgeny,
Thank you for your answer, I will see the video.
Best Regards, Flávio.
Hi John Murray,
Thank you for your comment, I will look for this extension.
Best Regards, Flávio.
Thank You.
Thank You, I'll do this.
I saw this command, but I have a problem, this application .Exe open a Windows Form, with this command don't open.
I want to write Excel files.
Thank you Henrique,
But i need to write Excel files with a client server architecture, this is not a web application. I thought in a Class or something like this.
Thank you,
But how i use the RTD or DDE function?
Thank you,
This's very helpfull.
Thank you
Hi Robert,
Do you know some article who teach how to create the Web Service to make a call? The Caché PHP module, didn't work for me, because works only locally.
Regards,
Flávio.
Muito legal o conteúdo.
English:
Very cool the slides.
With the bellow code, you will can count all nodes.
USER>S COUNTRY="",COUNT=0,NIV=""
USER>F S COUNTRY=$O(^Locations(COUNTRY)) Q:COUNTRY="" F S NIV=$O(^Locations(COUNTRY,NIV)) Q:NIV="" S COUNT=COUNT+1
USER>W COUNT
5
Count only USA
USER>S COUNTRY="USA",COUNT=0,NIV=""
USER>F S NIV=$O(^Locations(COUNTRY,NIV)) Q:NIV="" S COUNT=COUNT+1
USER>W COUNT
3
Count only Canada
USER>S COUNTRY="Canada",COUNT=0,NIV=""
USER>F S NIV=$O(^Locations(COUNTRY,NIV)) Q:NIV="" S COUNT=COUNT+1
USER>W COUNT
2
If you want to execute a Method in the Terminal, you need to use the DO command with the Method, program and parameters.
Ex.
DO METHOD^PROGRAM --> Call one Method Without Parameters
DO METHOD^PROGRAM(PAR1,PAR2) --> Call one method with two paramaters.
DO METHOD^PROGRAM(PAR1,PAR2),METHOD^PROGRAM --> Call two Methods in the same command.
Hello Robert,
I faced the same problem other day.
That was the query: "SELECT PROE,DESP,ID FROM ZVBMAPEAMENTO.SVINFOUVND WHERE JOB=1224 GROUP BY PROE"
Att. Flávio.
Hello Brendan,
I faced the same problem other day.
That was the query: "SELECT PROE,DESP,ID FROM ZVBMAPEAMENTO.SVINFOUVND WHERE JOB=1224 GROUP BY PROE". All is %String.
Att. Flávio.
I think this can solve your problem
SET DATE="20201121090000"
WRITE $ZD($ZDH($E(DATE,1,8),8),3) // DAY
WRITE $E(DATE,9,10)_":"_$E(DATE,11,12)_":"_$E(DATE,13,14) // HOURI liked this idea
It would be great if journal file show what program execute the command.
Try to acess in your local machine this folder. There are some examples to acess the database.
C:\InterSystems\Cache\dev
Thanks Anastasia.
Congratulations to all winners!
I think the same, Flutter is easier to develop in my opinion, but it's just personal taste.
When I had problems with Cors I use overload of methods in my SuperClass to solve this problem.
ClassMethod HandleDefaultCorsRequest(pUrl As %String) As %Status [ Private ]
{
Do %response.SetHeader("Access-Control-Allow-Origin","*")
Do %response.SetHeader("Access-Control-Allow-Credentials","true")
Do %response.SetHeader("Access-Control-Allow-Methods","GET, PUT, POST, DELETE, PATCH, OPTIONS")
Do %response.SetHeader("Access-Control-Allow-Headers","Access-Control-*, Content-Type, Authorization, Accept, Accept-Language, X-Requested-With, Origin")
Quit $$$OK
}Eduard answered perfectly
I read a little about this documentation, but i thought that's about file text, not about photo
Thanks, I read about stream, but i thought that work only for text, i never used to save a photo.
Thanks Dmitry.
I understand, but the text "public" below, don't should solve the problem of visibility?
label(test) public{
}