├── .gitignore
├── README.md
├── automations
└── copy_user_to_tenant.md
├── data
└── consumersales
│ ├── AggSales.qvd
│ ├── Basket.qvd
│ ├── BudgetPeriod.qvd
│ ├── Channel.qvd
│ ├── Consumer Sales.qvf
│ ├── CustomerAddress.qvd
│ ├── CustomerMapCoordinates.qvd
│ ├── CustomerType.qvd
│ ├── Division.qvd
│ ├── FiscalRank.qvd
│ ├── ItemBranch.qvd
│ ├── ItemMaster.qvd
│ ├── MasterPlanning.qvd
│ ├── OrderDates1.qvd
│ ├── ProductGroup.qvd
│ ├── ProductSubGroup.qvd
│ ├── Regional.qvd
│ ├── SalesHeader.qvd
│ ├── SalesRep.qvd
│ ├── Salesdecile-1.qvd
│ ├── ShipToAddress2.qvd
│ ├── ZipData.qvd
│ └── maptype.qvd
├── examples
├── qcs_deployment
│ ├── clean_tenant.js
│ ├── configure_tenant.js
│ ├── create_jwt.js
│ ├── create_jwt_client_managed.js
│ ├── create_tenant.js
│ ├── deploy_content.js
│ ├── interactive_login.html
│ ├── jwt_timing_tests.js
│ ├── package-lock.json
│ ├── package.json
│ ├── qct_config_template.json
│ └── resources
│ │ ├── Template_Finance.qvf
│ │ └── Transactions.txt
├── qs_encryption_qvd_performance
│ ├── 00_Main.qvs
│ ├── 01_Config.qvs
│ ├── 02_sTimerEnd().qvs
│ ├── 03_TimerLog & Start.qvs
│ ├── 04_Badges.qvs
│ ├── 05_Post History.qvs
│ ├── 06_Posts.qvs
│ ├── 07_Users.qvs
│ ├── 08_Store Logging.qvs
│ ├── 09_exit script.qvs
│ └── Encrypted QVD Performance.qvf
├── qs_flexible_pivot.qvf
├── qs_variable_load
│ ├── MyVariables.xlsx
│ └── qs_variable_load.qvf
└── recno_rowno_speed.qvf
└── snippets
├── Server Disk Space v1.qvf
├── bat_DriveSpace.bat
├── bat_ServiceCheck.bat
├── node_gen_date_range.js
├── q_all_fields.md
├── q_colours.md
├── q_gitignore
├── q_groupby_performance.md
├── q_load_dynamic_date_fields.md
├── q_random_data.md
├── q_variable_creator.md
├── q_version_tab.qvs
├── qcs_audit_delete_data_connections.md
├── qcs_create_user_assign_license.md
├── qcs_deleteAllGroups.md
├── qcs_exporting_content.md
├── qcs_genericLink.md
├── qcs_monitor_reload_task_disabled.md
├── qcs_qpo_snippets.md
├── qcs_qvds_from_qvf.md
├── qcs_reloadTrigger.md
├── qcs_resource_update_owner_space.md
├── qcs_space_delete_files.md
├── qs-geoanalytics-eastings-northings.md
├── qs_attachedfiles.md
├── qs_backup_node.ps1
├── qs_enumerations.md
├── qs_recursive_qvd_index.qvs
├── qs_repository_explorer.qvs
├── qs_rest_qrs_api.md
├── qs_section_access_search.md
├── qs_task_status.qvs
└── qs_user_sessions.md
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | lerna-debug.log*
8 | .pnpm-debug.log*
9 |
10 | # Diagnostic reports (https://nodejs.org/api/report.html)
11 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
12 |
13 | # Runtime data
14 | pids
15 | *.pid
16 | *.seed
17 | *.pid.lock
18 |
19 | # Directory for instrumented libs generated by jscoverage/JSCover
20 | lib-cov
21 |
22 | # Coverage directory used by tools like istanbul
23 | coverage
24 | *.lcov
25 |
26 | # nyc test coverage
27 | .nyc_output
28 |
29 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
30 | .grunt
31 |
32 | # Bower dependency directory (https://bower.io/)
33 | bower_components
34 |
35 | # node-waf configuration
36 | .lock-wscript
37 |
38 | # Compiled binary addons (https://nodejs.org/api/addons.html)
39 | build/Release
40 |
41 | # Dependency directories
42 | node_modules/
43 | jspm_packages/
44 |
45 | # Snowpack dependency directory (https://snowpack.dev/)
46 | web_modules/
47 |
48 | # TypeScript cache
49 | *.tsbuildinfo
50 |
51 | # Optional npm cache directory
52 | .npm
53 |
54 | # Optional eslint cache
55 | .eslintcache
56 |
57 | # Optional stylelint cache
58 | .stylelintcache
59 |
60 | # Microbundle cache
61 | .rpt2_cache/
62 | .rts2_cache_cjs/
63 | .rts2_cache_es/
64 | .rts2_cache_umd/
65 |
66 | # Optional REPL history
67 | .node_repl_history
68 |
69 | # Output of 'npm pack'
70 | *.tgz
71 |
72 | # Yarn Integrity file
73 | .yarn-integrity
74 |
75 | # dotenv environment variable files
76 | .env
77 | .env.development.local
78 | .env.test.local
79 | .env.production.local
80 | .env.local
81 |
82 | # parcel-bundler cache (https://parceljs.org/)
83 | .cache
84 | .parcel-cache
85 |
86 | # Next.js build output
87 | .next
88 | out
89 |
90 | # Nuxt.js build / generate output
91 | .nuxt
92 | dist
93 |
94 | # Gatsby files
95 | .cache/
96 | # Comment in the public line in if your project uses Gatsby and not Next.js
97 | # https://nextjs.org/blog/next-9-1#public-directory-support
98 | # public
99 |
100 | # vuepress build output
101 | .vuepress/dist
102 |
103 | # vuepress v2.x temp and cache directory
104 | .temp
105 | .cache
106 |
107 | # Docusaurus cache and generated files
108 | .docusaurus
109 |
110 | # Serverless directories
111 | .serverless/
112 |
113 | # FuseBox cache
114 | .fusebox/
115 |
116 | # DynamoDB Local files
117 | .dynamodb/
118 |
119 | # TernJS port file
120 | .tern-port
121 |
122 | # Stores VSCode versions used for testing VSCode extensions
123 | .vscode-test
124 |
125 | # yarn v2
126 | .yarn/cache
127 | .yarn/unplugged
128 | .yarn/build-state.yml
129 | .yarn/install-state.gz
130 | .pnp.*
131 |
132 | # Remove configs
133 | examples/qcs_deployment/qct_config.json
134 | examples/qcs_deployment/certs/
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # qlik
2 |
3 | A bucket for snippets and examples that don't have their own repository.
4 |
--------------------------------------------------------------------------------
/automations/copy_user_to_tenant.md:
--------------------------------------------------------------------------------
1 | ## Copy user to tenant
2 |
3 | Copies a user from one tenant to another, searched by email address
4 |
5 | ```JSON
6 | {"blocks":[{"id":"4CEA1436-BBF4-4E4A-AD72-C1CA041EFAE5","type":"StartBlock","disabled":false,"name":"Start","displayName":"Start","comment":"","childId":"8F88DA32-D889-4364-9320-C3C1CFC4E2AC","inputs":[{"id":"run_mode","value":"manual","type":"select","structure":{}}],"settings":[],"collapsed":[{"name":"loop","isCollapsed":false}],"x":0,"y":0},{"id":"CD3186BB-FE18-4C9B-8FC4-77D6D496A8AD","type":"EndpointBlock","disabled":false,"name":"createTenant","displayName":"Qlik Platform Operations - Create Tenant","comment":"","childId":"E8812B96-5A4E-4AD8-903A-38FE2937BB8B","inputs":[{"id":"349488c0-98c7-11ed-a36c-d756b982108d","value":"eu","type":"string","structure":[]},{"id":"804e0d80-eaff-11ec-9d3c-27c65d22b2cd","value":"{$.GetLicenseOverview.licenseKey}","type":"string","structure":[]}],"settings":[{"id":"datasource","value":null,"type":"select","structure":[]},{"id":"blendr_on_error","value":"stop","type":"select","structure":[]},{"id":"automations_censor_data","value":false,"type":"checkbox","structure":[]}],"collapsed":[{"name":"loop","isCollapsed":false}],"x":573,"y":431,"datasourcetype_guid":"c7e48240-e0f2-11ec-ada1-d5ef75014b77","endpoint_guid":"dda61e00-e0f2-11ec-a33b-895d4cdc49ef","endpoint_role":"create"},{"id":"8F88DA32-D889-4364-9320-C3C1CFC4E2AC","type":"SnippetBlock","disabled":false,"name":"GetTenantNameAndRegion","displayName":"Qlik Platform Operations - Get Tenant Name And Region","comment":"","childId":"3B80F45B-164E-4E1A-AD7B-EB1356C65359","inputs":[{"id":"575d1740-b1e2-11ed-958a-598edfec33b8","value":"orchestration.eu.qlikcloud.com","type":"string","structure":[]}],"settings":[{"id":"datasource","value":null,"type":"select","structure":[]},{"id":"blendr_on_error","value":"stop","type":"select","structure":[]},{"id":"automations_censor_data","value":false,"type":"checkbox","structure":[]}],"collapsed":[{"name":"loop","isCollapsed":false}],"x":-246,"y":96,"datasourcetype_guid":"c7e48240-e0f2-11ec-ada1-d5ef75014b77","snippet_guid":"bd5c1ce0-ad14-11ed-83f6-1d42e53790dd"},{"id":"3B80F45B-164E-4E1A-AD7B-EB1356C65359","type":"EndpointBlock","disabled":false,"name":"GetLicenseOverview","displayName":"Qlik Platform Operations - Get License Overview","comment":"","childId":"E62006ED-8248-4106-90CB-50E6510DD8D9","inputs":[{"id":"6ee8e9c0-9d78-11ed-9bc8-9be121ac3db0","value":"{$.GetTenantNameAndRegion}","type":"string","structure":[]}],"settings":[{"id":"datasource","value":null,"type":"select","structure":[]},{"id":"blendr_on_error","value":"stop","type":"select","structure":[]},{"id":"cache","value":"0","type":"select","structure":[]},{"id":"automations_censor_data","value":false,"type":"checkbox","structure":[]}],"collapsed":[{"name":"loop","isCollapsed":false}],"x":-329,"y":213,"datasourcetype_guid":"c7e48240-e0f2-11ec-ada1-d5ef75014b77","endpoint_guid":"6ea9fa20-9d78-11ed-a228-a3d1b7dd2e0f","endpoint_role":"get"},{"id":"E62006ED-8248-4106-90CB-50E6510DD8D9","type":"EndpointBlock","disabled":false,"name":"listUsers","displayName":"Qlik Platform Operations - List Users","comment":"","childId":"CD3186BB-FE18-4C9B-8FC4-77D6D496A8AD","inputs":[{"id":"447b9eb0-7634-11ed-a9df-a788128e422e","value":"{$.GetTenantNameAndRegion}","type":"string","structure":[]},{"id":"eb56ff20-9ca8-11ed-82cb-752b6b37b1a7","value":"email eq \"email.address@email.com\"","type":"string","structure":[]}],"settings":[{"id":"datasource","value":null,"type":"select","structure":[]},{"id":"maxitemcount","value":"","type":"string","structure":[]},{"id":"blendr_on_error","value":"stop","type":"select","structure":[]},{"id":"cache","value":"0","type":"select","structure":[]},{"id":"automations_censor_data","value":false,"type":"checkbox","structure":[]}],"collapsed":[{"name":"loop","isCollapsed":false}],"x":-346,"y":87,"datasourcetype_guid":"c7e48240-e0f2-11ec-ada1-d5ef75014b77","endpoint_guid":"445157c0-7634-11ed-9b40-9720b0f37135","endpoint_role":"list"},{"id":"763B3844-BE30-4D39-AA37-861CE293C44E","type":"EndpointBlock","disabled":false,"name":"listRoles","displayName":"Qlik Platform Operations - List Roles","comment":"","childId":"28F15612-088B-4373-9F27-B0630F206056","inputs":[{"id":"bae46270-b76f-11ed-a52b-d71383a5b940","value":"{$.GetTenantNameAndRegion2}","type":"string","structure":[]},{"id":"35bbb150-b77a-11ed-9a99-9b0cd6b2a9ab","value":"name eq \"TenantAdmin\"","type":"string","structure":[]}],"settings":[{"id":"datasource","value":null,"type":"select","structure":[]},{"id":"maxitemcount","value":"","type":"string","structure":[]},{"id":"blendr_on_error","value":"stop","type":"select","structure":[]},{"id":"cache","value":"0","type":"select","structure":[]},{"id":"automations_censor_data","value":false,"type":"checkbox","structure":[]}],"collapsed":[{"name":"loop","isCollapsed":false}],"x":-341,"y":93,"datasourcetype_guid":"c7e48240-e0f2-11ec-ada1-d5ef75014b77","endpoint_guid":"ba493570-b76f-11ed-b6ab-6fd465c15105","endpoint_role":"list"},{"id":"28F15612-088B-4373-9F27-B0630F206056","type":"EndpointBlock","disabled":false,"name":"createUser","displayName":"Qlik Platform Operations - Create User","comment":"","childId":"86A71FBE-570D-40FA-8A2C-4BFD8C057454","inputs":[{"id":"6c07a470-44c9-11ed-81ec-2dfd98774628","value":"{$.GetTenantNameAndRegion2}","type":"string","structure":[]},{"id":"6beaed10-44c9-11ed-9f5a-2de80bbba99e","value":"{$.listUsers[0].name}","type":"string","structure":[]},{"id":"ca85a980-b9c0-11ed-823f-0315a7948c75","value":"{$.listUsers[0].email}","type":"string","structure":[]},{"id":"4410c760-44ca-11ed-b584-69b354d9bb1f","value":"{$.listUsers[0].subject}","type":"string","structure":[]},{"id":"32d487a0-44ca-11ed-842e-55c135bb046d","value":"{$.listRoles}","type":"string","structure":[]}],"settings":[{"id":"datasource","value":null,"type":"select","structure":[]},{"id":"blendr_on_error","value":"stop","type":"select","structure":[]},{"id":"automations_censor_data","value":false,"type":"checkbox","structure":[]}],"collapsed":[{"name":"loop","isCollapsed":false}],"x":-368,"y":402,"datasourcetype_guid":"c7e48240-e0f2-11ec-ada1-d5ef75014b77","endpoint_guid":"6bd82bf0-44c9-11ed-80c7-0507c09f13f9","endpoint_role":"create"},{"id":"E8812B96-5A4E-4AD8-903A-38FE2937BB8B","type":"SnippetBlock","disabled":false,"name":"GetTenantNameAndRegion2","displayName":"Qlik Platform Operations - Get Tenant Name And Region 2","comment":"","childId":"763B3844-BE30-4D39-AA37-861CE293C44E","inputs":[{"id":"575d1740-b1e2-11ed-958a-598edfec33b8","value":"{$.createTenant.hostnames[0]}","type":"string","structure":[]}],"settings":[{"id":"datasource","value":null,"type":"select","structure":[]},{"id":"blendr_on_error","value":"stop","type":"select","structure":[]},{"id":"automations_censor_data","value":false,"type":"checkbox","structure":[]}],"collapsed":[{"name":"loop","isCollapsed":false}],"x":-338,"y":391,"datasourcetype_guid":"c7e48240-e0f2-11ec-ada1-d5ef75014b77","snippet_guid":"bd5c1ce0-ad14-11ed-83f6-1d42e53790dd"},{"id":"86A71FBE-570D-40FA-8A2C-4BFD8C057454","type":"ShowBlock","disabled":false,"name":"output","displayName":"Output","comment":"","childId":null,"inputs":[{"id":"input","value":"## Created tenant and added user\n\nTenant: [{$.createTenant.hostnames[0]}](https://{$.createTenant.hostnames[0]})\nUser: { $.createUser.name } / { $.createUser.email } / { $.createUser.subject }","type":"string","structure":[]}],"settings":[{"id":"display_mode","value":"add","type":"select","structure":[]}],"collapsed":[{"name":"loop","isCollapsed":false}],"x":408,"y":397}],"variables":[]}
7 | ```
--------------------------------------------------------------------------------
/data/consumersales/AggSales.qvd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/withdave/qlik/930874175e114138aa4ec560880bfa2d3ccad23d/data/consumersales/AggSales.qvd
--------------------------------------------------------------------------------
/data/consumersales/Basket.qvd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/withdave/qlik/930874175e114138aa4ec560880bfa2d3ccad23d/data/consumersales/Basket.qvd
--------------------------------------------------------------------------------
/data/consumersales/BudgetPeriod.qvd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/withdave/qlik/930874175e114138aa4ec560880bfa2d3ccad23d/data/consumersales/BudgetPeriod.qvd
--------------------------------------------------------------------------------
/data/consumersales/Channel.qvd:
--------------------------------------------------------------------------------
1 |
2 |
3 | 50667
4 | fc09b392-9e39-4cbc-a63d-924862edddd5
5 | 2023-04-13 18:39:25
6 |
7 |
8 | -1
9 |
10 | Channel
11 |
12 |
13 | Channel Name
14 | 0
15 | 3
16 | 0
17 |
18 | UNKNOWN
19 | 0
20 | 0
21 |
22 |
23 |
24 |
25 | 7
26 | 0
27 | 71
28 |
29 |
30 | $ascii
31 | $text
32 |
33 |
34 |
35 | Channel
36 | 3
37 | 5
38 | 0
39 |
40 | UNKNOWN
41 | 0
42 | 0
43 |
44 |
45 |
46 |
47 | 8
48 | 71
49 | 33
50 |
51 |
52 | $ascii
53 | $text
54 | $key
55 |
56 |
57 |
58 |
59 | 1
60 | 8
61 | 104
62 | 8
63 |
64 |
65 |
66 |
67 |
68 |
69 | Catalog Direct Internet Hospital Government Distribution Retail C10 C9 C1 C2 C3 C6 C7 C8 #,5>
--------------------------------------------------------------------------------
/data/consumersales/Consumer Sales.qvf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/withdave/qlik/930874175e114138aa4ec560880bfa2d3ccad23d/data/consumersales/Consumer Sales.qvf
--------------------------------------------------------------------------------
/data/consumersales/CustomerAddress.qvd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/withdave/qlik/930874175e114138aa4ec560880bfa2d3ccad23d/data/consumersales/CustomerAddress.qvd
--------------------------------------------------------------------------------
/data/consumersales/CustomerMapCoordinates.qvd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/withdave/qlik/930874175e114138aa4ec560880bfa2d3ccad23d/data/consumersales/CustomerMapCoordinates.qvd
--------------------------------------------------------------------------------
/data/consumersales/CustomerType.qvd:
--------------------------------------------------------------------------------
1 |
2 |
3 | 50667
4 | fc09b392-9e39-4cbc-a63d-924862edddd5
5 | 2023-04-13 18:39:31
6 |
7 |
8 | -1
9 |
10 | CustomerType
11 |
12 |
13 | Customer Type Name
14 | 0
15 | 2
16 | 0
17 |
18 | UNKNOWN
19 | 0
20 | 0
21 |
22 |
23 |
24 |
25 | 3
26 | 0
27 | 35
28 |
29 |
30 | $ascii
31 | $text
32 |
33 |
34 |
35 | Customer Type
36 | 2
37 | 6
38 | 0
39 |
40 | UNKNOWN
41 | 0
42 | 0
43 |
44 |
45 |
46 |
47 | 3
48 | 35
49 | 12
50 |
51 |
52 | $ascii
53 | $text
54 | $key
55 |
56 |
57 |
58 |
59 | 1
60 | 3
61 | 47
62 | 3
63 |
64 |
65 |
66 |
67 |
68 |
69 | International Domestic Canadian G1 G2 G3
70 |
--------------------------------------------------------------------------------
/data/consumersales/Division.qvd:
--------------------------------------------------------------------------------
1 |
2 |
3 | 50667
4 | fc09b392-9e39-4cbc-a63d-924862edddd5
5 | 2023-04-13 18:39:43
6 |
7 |
8 | -1
9 |
10 | Division
11 |
12 |
13 | Division Name
14 | 0
15 | 0
16 | 0
17 |
18 | UNKNOWN
19 | 0
20 | 0
21 |
22 |
23 |
24 |
25 | 1
26 | 0
27 | 10
28 |
29 |
30 | $ascii
31 | $text
32 |
33 |
34 |
35 | Division
36 | 0
37 | 8
38 | 0
39 |
40 | UNKNOWN
41 | 0
42 | 0
43 |
44 |
45 |
46 |
47 | 1
48 | 10
49 | 7
50 |
51 |
52 | $key
53 | $numeric
54 | $integer
55 |
56 |
57 |
58 |
59 | 1
60 | 1
61 | 17
62 | 1
63 |
64 |
65 |
66 |
67 |
68 |
69 | Domestic 2
--------------------------------------------------------------------------------
/data/consumersales/FiscalRank.qvd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/withdave/qlik/930874175e114138aa4ec560880bfa2d3ccad23d/data/consumersales/FiscalRank.qvd
--------------------------------------------------------------------------------
/data/consumersales/ItemBranch.qvd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/withdave/qlik/930874175e114138aa4ec560880bfa2d3ccad23d/data/consumersales/ItemBranch.qvd
--------------------------------------------------------------------------------
/data/consumersales/ItemMaster.qvd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/withdave/qlik/930874175e114138aa4ec560880bfa2d3ccad23d/data/consumersales/ItemMaster.qvd
--------------------------------------------------------------------------------
/data/consumersales/MasterPlanning.qvd:
--------------------------------------------------------------------------------
1 |
2 |
3 | 50667
4 | fc09b392-9e39-4cbc-a63d-924862edddd5
5 | 2023-04-13 18:39:26
6 |
7 |
8 | -1
9 |
10 | MasterPlanning
11 |
12 |
13 | Master Planning Family Desc
14 | 0
15 | 0
16 | 0
17 |
18 | UNKNOWN
19 | 0
20 | 0
21 |
22 |
23 |
24 |
25 | 1
26 | 0
27 | 21
28 |
29 |
30 | $ascii
31 | $text
32 |
33 |
34 |
35 | Master Planning Family
36 | 0
37 | 8
38 | 0
39 |
40 | UNKNOWN
41 | 0
42 | 0
43 |
44 |
45 |
46 |
47 | 1
48 | 21
49 | 5
50 |
51 |
52 | $ascii
53 | $text
54 |
55 |
56 |
57 |
58 | 1
59 | 1
60 | 26
61 | 1
62 |
63 |
64 |
65 |
66 |
67 |
68 | Print on Price List P01
--------------------------------------------------------------------------------
/data/consumersales/OrderDates1.qvd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/withdave/qlik/930874175e114138aa4ec560880bfa2d3ccad23d/data/consumersales/OrderDates1.qvd
--------------------------------------------------------------------------------
/data/consumersales/ProductGroup.qvd:
--------------------------------------------------------------------------------
1 |
2 |
3 | 50667
4 | fc09b392-9e39-4cbc-a63d-924862edddd5
5 | 2023-04-13 18:39:17
6 |
7 |
8 | -1
9 |
10 | ProductGroup
11 |
12 |
13 | Product Group Desc
14 | 0
15 | 8
16 | 0
17 |
18 | UNKNOWN
19 | 0
20 | 0
21 |
22 |
23 |
24 |
25 | 17
26 | 0
27 | 200
28 |
29 |
30 | $ascii
31 | $text
32 |
33 |
34 |
35 | Product Group
36 | 8
37 | 8
38 | 0
39 |
40 | UNKNOWN
41 | 0
42 | 0
43 |
44 |
45 |
46 |
47 | 17
48 | 200
49 | 129
50 |
51 |
52 | $key
53 | $numeric
54 | $integer
55 |
56 |
57 |
58 |
59 | 2
60 | 17
61 | 329
62 | 34
63 |
64 |
65 |
66 |
67 |
68 |
69 | Alcoholic Beverages Baked Goods Beverages Breakfast Foods Canned Foods Dairy Deli Meat Produce Seafood Snack Foods Snacks Baking Goods Canned Products Eggs Frozen Foods Starchy Foods 1 2 4 5 6
70 | 10 11 16 19 20 21 22 3 7 12
13 23
71 |
72 |
--------------------------------------------------------------------------------
/data/consumersales/ProductSubGroup.qvd:
--------------------------------------------------------------------------------
1 |
2 |
3 | 50667
4 | fc09b392-9e39-4cbc-a63d-924862edddd5
5 | 2023-04-13 18:39:18
6 |
7 |
8 | -1
9 |
10 | ProductSubGroup
11 |
12 |
13 | Product Sub Group Desc
14 | 0
15 | 8
16 | 0
17 |
18 | UNKNOWN
19 | 0
20 | 0
21 |
22 |
23 |
24 |
25 | 70
26 | 0
27 | 708
28 |
29 |
30 | $ascii
31 | $text
32 |
33 |
34 |
35 | Product Sub Group
36 | 8
37 | 8
38 | 0
39 |
40 | UNKNOWN
41 | 0
42 | 0
43 |
44 |
45 |
46 |
47 | 70
48 | 708
49 | 555
50 |
51 |
52 | $key
53 | $numeric
54 | $integer
55 |
56 |
57 |
58 |
59 | 2
60 | 70
61 | 1263
62 | 140
63 |
64 |
65 |
66 |
67 |
68 |
69 | Nuts Shellfish Canned Fruit Spices Pasta Yogurt Coffee Deli Meats Ice Cream TV Dinner Cheese Chips Fresh Vegetables Sour Cream Cottage Cheese Deli Salads Dried Meat Soda Fresh Fish Bagels Muffins Sliced Bread Pancake Mix Pancakes Juice Jelly Jam Preserves Waffles Cereal Chocolate Candy Gum Hard Candy Beer Wine Cookies Pretzels Sauces Cooking Oil Sugar Chocolate Flavored Drinks Peanut Butter Popcorn Rice Soup Frozen Vegetables Canned Vegetables French Fries Pizza Hamburger Eggs Tofu Milk Fresh Chicken Hot Dogs Crackers Dips Donuts Bologna Tuna Shrimp Anchovies Clams Oysters Sardines Fresh Fruit Frozen Chicken Dried Fruit Popsicles 1 2 3 4 5 6 Z 90 8 9
70 | 10 11 12 = 61 14 15 16 17 19 24 25 26 27 28 29 30 31 32 ! 33 " 34 # 35 $ 36 % 37 &