Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
MA1
Contributor III
Contributor III

rest conector and date

Hi

I use the rest connector in qlikview  and I want to load only 1 month

it is field "moment"  -   format 2014-01-09 11:38:00

RestConnectorMasterTable:

SQL SELECT

"__KEY_root",

(SELECT

"id" AS "id_u0",

"accountId",

"shared",

"version",

"updated",

"name" AS "name_u1",

"externalCode",

"moment",

"applicable",

"sum",

"created",

"vatEnabled",

"vatIncluded",

"vatSum",

"payedSum",

"__KEY_rows",

"__FK_rows"

FROM "rows" PK "__KEY_rows" FK "__FK_rows")

FROM JSON (wrap on) "root" PK "__KEY_root"

;

Thanks.

1 Reply
Anil_Babu_Samineni

May be this?

Load * where moment = 'monthname';

RestConnectorMasterTable:

SQL SELECT

"__KEY_root",

(SELECT

"id" AS "id_u0",

"accountId",

"shared",

"version",

"updated",

"name" AS "name_u1",

"externalCode",

"moment",

"applicable",

"sum",

"created",

"vatEnabled",

"vatIncluded",

"vatSum",

"payedSum",

"__KEY_rows",

"__FK_rows"

FROM "rows" PK "__KEY_rows" FK "__FK_rows")

FROM JSON (wrap on) "root" PK "__KEY_root"

;

Make sure, the month name should be calculated like

Month(moment) as Month_moment

Please add me Anil_Babu_Samineni to interact faster when reply back. Speak low think High.

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)