flonat-research 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (285) hide show
  1. package/.claude/agents/domain-reviewer.md +336 -0
  2. package/.claude/agents/fixer.md +226 -0
  3. package/.claude/agents/paper-critic.md +370 -0
  4. package/.claude/agents/peer-reviewer.md +289 -0
  5. package/.claude/agents/proposal-reviewer.md +215 -0
  6. package/.claude/agents/referee2-reviewer.md +367 -0
  7. package/.claude/agents/references/journal-referee-profiles.md +354 -0
  8. package/.claude/agents/references/paper-critic/council-personas.md +77 -0
  9. package/.claude/agents/references/paper-critic/council-prompts.md +198 -0
  10. package/.claude/agents/references/peer-reviewer/report-template.md +199 -0
  11. package/.claude/agents/references/peer-reviewer/sa-prompts.md +260 -0
  12. package/.claude/agents/references/peer-reviewer/security-scan.md +188 -0
  13. package/.claude/agents/references/proposal-reviewer/report-template.md +144 -0
  14. package/.claude/agents/references/proposal-reviewer/sa-prompts.md +149 -0
  15. package/.claude/agents/references/referee-config.md +114 -0
  16. package/.claude/agents/references/referee2-reviewer/audit-checklists.md +287 -0
  17. package/.claude/agents/references/referee2-reviewer/report-template.md +334 -0
  18. package/.claude/rules/design-before-results.md +52 -0
  19. package/.claude/rules/ignore-agents-md.md +17 -0
  20. package/.claude/rules/ignore-gemini-md.md +17 -0
  21. package/.claude/rules/lean-claude-md.md +45 -0
  22. package/.claude/rules/learn-tags.md +99 -0
  23. package/.claude/rules/overleaf-separation.md +67 -0
  24. package/.claude/rules/plan-first.md +175 -0
  25. package/.claude/rules/read-docs-first.md +50 -0
  26. package/.claude/rules/scope-discipline.md +28 -0
  27. package/.claude/settings.json +125 -0
  28. package/.context/current-focus.md +33 -0
  29. package/.context/preferences/priorities.md +36 -0
  30. package/.context/preferences/task-naming.md +28 -0
  31. package/.context/profile.md +29 -0
  32. package/.context/projects/_index.md +41 -0
  33. package/.context/projects/papers/nudge-exp.md +22 -0
  34. package/.context/projects/papers/uncertainty.md +31 -0
  35. package/.context/resources/claude-scientific-writer-review.md +48 -0
  36. package/.context/resources/cunningham-multi-analyst-agents.md +104 -0
  37. package/.context/resources/cunningham-multilang-code-audit.md +62 -0
  38. package/.context/resources/google-ai-co-scientist-review.md +72 -0
  39. package/.context/resources/karpathy-llm-council-review.md +58 -0
  40. package/.context/resources/multi-coder-reliability-protocol.md +175 -0
  41. package/.context/resources/pedro-santanna-takeaways.md +96 -0
  42. package/.context/resources/venue-rankings/abs_ajg_2024.csv +1823 -0
  43. package/.context/resources/venue-rankings/abs_ajg_2024_econ.csv +356 -0
  44. package/.context/resources/venue-rankings/cabs_4_4star_theory.csv +40 -0
  45. package/.context/resources/venue-rankings/core_2026.csv +801 -0
  46. package/.context/resources/venue-rankings.md +147 -0
  47. package/.context/workflows/README.md +69 -0
  48. package/.context/workflows/daily-review.md +91 -0
  49. package/.context/workflows/meeting-actions.md +108 -0
  50. package/.context/workflows/replication-protocol.md +155 -0
  51. package/.context/workflows/weekly-review.md +113 -0
  52. package/.mcp-server-biblio/formatters.py +158 -0
  53. package/.mcp-server-biblio/pyproject.toml +11 -0
  54. package/.mcp-server-biblio/server.py +678 -0
  55. package/.mcp-server-biblio/sources/__init__.py +14 -0
  56. package/.mcp-server-biblio/sources/base.py +73 -0
  57. package/.mcp-server-biblio/sources/formatters.py +83 -0
  58. package/.mcp-server-biblio/sources/models.py +22 -0
  59. package/.mcp-server-biblio/sources/multi_source.py +243 -0
  60. package/.mcp-server-biblio/sources/openalex_source.py +183 -0
  61. package/.mcp-server-biblio/sources/scopus_source.py +309 -0
  62. package/.mcp-server-biblio/sources/wos_source.py +508 -0
  63. package/.mcp-server-biblio/uv.lock +896 -0
  64. package/.scripts/README.md +161 -0
  65. package/.scripts/ai_pattern_density.py +446 -0
  66. package/.scripts/conf +445 -0
  67. package/.scripts/config.py +122 -0
  68. package/.scripts/count_inventory.py +275 -0
  69. package/.scripts/daily_digest.py +288 -0
  70. package/.scripts/done +177 -0
  71. package/.scripts/extract_meeting_actions.py +223 -0
  72. package/.scripts/focus +176 -0
  73. package/.scripts/generate-codex-agents-md.py +217 -0
  74. package/.scripts/inbox +194 -0
  75. package/.scripts/notion_helpers.py +325 -0
  76. package/.scripts/openalex/query_helpers.py +306 -0
  77. package/.scripts/papers +227 -0
  78. package/.scripts/query +223 -0
  79. package/.scripts/session-history.py +201 -0
  80. package/.scripts/skill-health.py +516 -0
  81. package/.scripts/skill-log-miner.py +273 -0
  82. package/.scripts/sync-to-codex.sh +252 -0
  83. package/.scripts/task +213 -0
  84. package/.scripts/tasks +190 -0
  85. package/.scripts/week +206 -0
  86. package/CLAUDE.md +197 -0
  87. package/LICENSE +21 -0
  88. package/MEMORY.md +38 -0
  89. package/README.md +269 -0
  90. package/docs/agents.md +44 -0
  91. package/docs/bibliography-setup.md +55 -0
  92. package/docs/council-mode.md +36 -0
  93. package/docs/getting-started.md +245 -0
  94. package/docs/hooks.md +38 -0
  95. package/docs/mcp-servers.md +82 -0
  96. package/docs/notion-setup.md +109 -0
  97. package/docs/rules.md +33 -0
  98. package/docs/scripts.md +303 -0
  99. package/docs/setup-overview/setup-overview.pdf +0 -0
  100. package/docs/skills.md +70 -0
  101. package/docs/system.md +159 -0
  102. package/hooks/block-destructive-git.sh +66 -0
  103. package/hooks/context-monitor.py +114 -0
  104. package/hooks/postcompact-restore.py +157 -0
  105. package/hooks/precompact-autosave.py +181 -0
  106. package/hooks/promise-checker.sh +124 -0
  107. package/hooks/protect-source-files.sh +81 -0
  108. package/hooks/resume-context-loader.sh +53 -0
  109. package/hooks/startup-context-loader.sh +102 -0
  110. package/package.json +51 -0
  111. package/packages/cli-council/.github/workflows/claude-code-review.yml +44 -0
  112. package/packages/cli-council/.github/workflows/claude.yml +50 -0
  113. package/packages/cli-council/README.md +100 -0
  114. package/packages/cli-council/pyproject.toml +43 -0
  115. package/packages/cli-council/src/cli_council/__init__.py +19 -0
  116. package/packages/cli-council/src/cli_council/__main__.py +185 -0
  117. package/packages/cli-council/src/cli_council/backends/__init__.py +8 -0
  118. package/packages/cli-council/src/cli_council/backends/base.py +81 -0
  119. package/packages/cli-council/src/cli_council/backends/claude.py +25 -0
  120. package/packages/cli-council/src/cli_council/backends/codex.py +27 -0
  121. package/packages/cli-council/src/cli_council/backends/gemini.py +26 -0
  122. package/packages/cli-council/src/cli_council/checkpoint.py +212 -0
  123. package/packages/cli-council/src/cli_council/config.py +51 -0
  124. package/packages/cli-council/src/cli_council/council.py +391 -0
  125. package/packages/cli-council/src/cli_council/models.py +46 -0
  126. package/packages/llm-council/.github/workflows/claude-code-review.yml +44 -0
  127. package/packages/llm-council/.github/workflows/claude.yml +50 -0
  128. package/packages/llm-council/README.md +453 -0
  129. package/packages/llm-council/pyproject.toml +42 -0
  130. package/packages/llm-council/src/llm_council/__init__.py +23 -0
  131. package/packages/llm-council/src/llm_council/__main__.py +259 -0
  132. package/packages/llm-council/src/llm_council/checkpoint.py +193 -0
  133. package/packages/llm-council/src/llm_council/client.py +253 -0
  134. package/packages/llm-council/src/llm_council/config.py +232 -0
  135. package/packages/llm-council/src/llm_council/council.py +482 -0
  136. package/packages/llm-council/src/llm_council/models.py +46 -0
  137. package/packages/mcp-bibliography/MEMORY.md +31 -0
  138. package/packages/mcp-bibliography/_app.py +226 -0
  139. package/packages/mcp-bibliography/formatters.py +158 -0
  140. package/packages/mcp-bibliography/log/2026-03-13-2100.md +35 -0
  141. package/packages/mcp-bibliography/pyproject.toml +15 -0
  142. package/packages/mcp-bibliography/run.sh +20 -0
  143. package/packages/mcp-bibliography/scholarly_formatters.py +83 -0
  144. package/packages/mcp-bibliography/server.py +1857 -0
  145. package/packages/mcp-bibliography/tools/__init__.py +28 -0
  146. package/packages/mcp-bibliography/tools/_registry.py +19 -0
  147. package/packages/mcp-bibliography/tools/altmetric.py +107 -0
  148. package/packages/mcp-bibliography/tools/core.py +92 -0
  149. package/packages/mcp-bibliography/tools/dblp.py +52 -0
  150. package/packages/mcp-bibliography/tools/openalex.py +296 -0
  151. package/packages/mcp-bibliography/tools/opencitations.py +102 -0
  152. package/packages/mcp-bibliography/tools/openreview.py +179 -0
  153. package/packages/mcp-bibliography/tools/orcid.py +131 -0
  154. package/packages/mcp-bibliography/tools/scholarly.py +575 -0
  155. package/packages/mcp-bibliography/tools/unpaywall.py +63 -0
  156. package/packages/mcp-bibliography/tools/zenodo.py +123 -0
  157. package/packages/mcp-bibliography/uv.lock +711 -0
  158. package/scripts/setup.sh +143 -0
  159. package/skills/beamer-deck/SKILL.md +199 -0
  160. package/skills/beamer-deck/references/quality-rubric.md +54 -0
  161. package/skills/beamer-deck/references/review-prompts.md +106 -0
  162. package/skills/bib-validate/SKILL.md +261 -0
  163. package/skills/bib-validate/references/council-mode.md +34 -0
  164. package/skills/bib-validate/references/deep-verify.md +79 -0
  165. package/skills/bib-validate/references/fix-mode.md +36 -0
  166. package/skills/bib-validate/references/openalex-verification.md +45 -0
  167. package/skills/bib-validate/references/preprint-check.md +31 -0
  168. package/skills/bib-validate/references/ref-manager-crossref.md +41 -0
  169. package/skills/bib-validate/references/report-template.md +82 -0
  170. package/skills/code-archaeology/SKILL.md +141 -0
  171. package/skills/code-review/SKILL.md +265 -0
  172. package/skills/code-review/references/quality-rubric.md +67 -0
  173. package/skills/consolidate-memory/SKILL.md +208 -0
  174. package/skills/context-status/SKILL.md +126 -0
  175. package/skills/creation-guard/SKILL.md +230 -0
  176. package/skills/devils-advocate/SKILL.md +130 -0
  177. package/skills/devils-advocate/references/competing-hypotheses.md +83 -0
  178. package/skills/init-project/SKILL.md +115 -0
  179. package/skills/init-project-course/references/memory-and-settings.md +92 -0
  180. package/skills/init-project-course/references/organise-templates.md +94 -0
  181. package/skills/init-project-course/skill.md +147 -0
  182. package/skills/init-project-light/skill.md +139 -0
  183. package/skills/init-project-research/SKILL.md +368 -0
  184. package/skills/init-project-research/references/atlas-pipeline-sync.md +70 -0
  185. package/skills/init-project-research/references/atlas-schema.md +81 -0
  186. package/skills/init-project-research/references/confirmation-report.md +39 -0
  187. package/skills/init-project-research/references/domain-profile-template.md +104 -0
  188. package/skills/init-project-research/references/interview-round3.md +34 -0
  189. package/skills/init-project-research/references/literature-discovery.md +43 -0
  190. package/skills/init-project-research/references/scaffold-details.md +197 -0
  191. package/skills/init-project-research/templates/field-calibration.md +60 -0
  192. package/skills/init-project-research/templates/pipeline-manifest.md +63 -0
  193. package/skills/init-project-research/templates/run-all.sh +116 -0
  194. package/skills/init-project-research/templates/seed-files.md +337 -0
  195. package/skills/insights-deck/SKILL.md +151 -0
  196. package/skills/interview-me/SKILL.md +157 -0
  197. package/skills/latex/SKILL.md +141 -0
  198. package/skills/latex/references/latex-configs.md +183 -0
  199. package/skills/latex-autofix/SKILL.md +230 -0
  200. package/skills/latex-autofix/references/known-errors.md +183 -0
  201. package/skills/latex-autofix/references/quality-rubric.md +50 -0
  202. package/skills/latex-health-check/SKILL.md +161 -0
  203. package/skills/learn/SKILL.md +220 -0
  204. package/skills/learn/scripts/validate_skill.py +265 -0
  205. package/skills/lessons-learned/SKILL.md +201 -0
  206. package/skills/literature/SKILL.md +335 -0
  207. package/skills/literature/references/agent-templates.md +393 -0
  208. package/skills/literature/references/bibliometric-apis.md +44 -0
  209. package/skills/literature/references/cli-council-search.md +79 -0
  210. package/skills/literature/references/openalex-api-guide.md +371 -0
  211. package/skills/literature/references/openalex-common-queries.md +381 -0
  212. package/skills/literature/references/openalex-workflows.md +248 -0
  213. package/skills/literature/references/reference-manager-sync.md +36 -0
  214. package/skills/literature/references/scopus-api-guide.md +208 -0
  215. package/skills/literature/references/wos-api-guide.md +308 -0
  216. package/skills/multi-perspective/SKILL.md +311 -0
  217. package/skills/multi-perspective/references/computational-many-analysts.md +77 -0
  218. package/skills/pipeline-manifest/SKILL.md +226 -0
  219. package/skills/pre-submission-report/SKILL.md +153 -0
  220. package/skills/process-reviews/SKILL.md +244 -0
  221. package/skills/process-reviews/references/rr-routing.md +101 -0
  222. package/skills/project-deck/SKILL.md +87 -0
  223. package/skills/project-safety/SKILL.md +135 -0
  224. package/skills/proofread/SKILL.md +254 -0
  225. package/skills/proofread/references/quality-rubric.md +104 -0
  226. package/skills/python-env/SKILL.md +57 -0
  227. package/skills/quarto-deck/SKILL.md +226 -0
  228. package/skills/quarto-deck/references/markdown-format.md +143 -0
  229. package/skills/quarto-deck/references/quality-rubric.md +54 -0
  230. package/skills/save-context/SKILL.md +174 -0
  231. package/skills/session-log/SKILL.md +98 -0
  232. package/skills/shared/concept-validation-gate.md +161 -0
  233. package/skills/shared/council-protocol.md +265 -0
  234. package/skills/shared/distribution-diagnostics.md +164 -0
  235. package/skills/shared/engagement-stratified-sampling.md +218 -0
  236. package/skills/shared/escalation-protocol.md +74 -0
  237. package/skills/shared/external-audit-protocol.md +205 -0
  238. package/skills/shared/intercoder-reliability.md +256 -0
  239. package/skills/shared/mcp-degradation.md +81 -0
  240. package/skills/shared/method-probing-questions.md +163 -0
  241. package/skills/shared/multi-language-conventions.md +143 -0
  242. package/skills/shared/paid-api-safety.md +174 -0
  243. package/skills/shared/palettes.md +90 -0
  244. package/skills/shared/progressive-disclosure.md +92 -0
  245. package/skills/shared/project-documentation-content.md +443 -0
  246. package/skills/shared/project-documentation-format.md +281 -0
  247. package/skills/shared/project-documentation.md +100 -0
  248. package/skills/shared/publication-output.md +138 -0
  249. package/skills/shared/quality-scoring.md +70 -0
  250. package/skills/shared/reference-resolution.md +77 -0
  251. package/skills/shared/research-quality-rubric.md +165 -0
  252. package/skills/shared/rhetoric-principles.md +54 -0
  253. package/skills/shared/skill-design-patterns.md +272 -0
  254. package/skills/shared/skill-index.md +240 -0
  255. package/skills/shared/system-documentation.md +334 -0
  256. package/skills/shared/tikz-rules.md +402 -0
  257. package/skills/shared/validation-tiers.md +121 -0
  258. package/skills/shared/venue-guides/README.md +46 -0
  259. package/skills/shared/venue-guides/cell_press_style.md +483 -0
  260. package/skills/shared/venue-guides/conferences_formatting.md +564 -0
  261. package/skills/shared/venue-guides/cs_conference_style.md +463 -0
  262. package/skills/shared/venue-guides/examples/cell_summary_example.md +247 -0
  263. package/skills/shared/venue-guides/examples/medical_structured_abstract.md +313 -0
  264. package/skills/shared/venue-guides/examples/nature_abstract_examples.md +213 -0
  265. package/skills/shared/venue-guides/examples/neurips_introduction_example.md +245 -0
  266. package/skills/shared/venue-guides/journals_formatting.md +486 -0
  267. package/skills/shared/venue-guides/medical_journal_styles.md +535 -0
  268. package/skills/shared/venue-guides/ml_conference_style.md +556 -0
  269. package/skills/shared/venue-guides/nature_science_style.md +405 -0
  270. package/skills/shared/venue-guides/reviewer_expectations.md +417 -0
  271. package/skills/shared/venue-guides/venue_writing_styles.md +321 -0
  272. package/skills/split-pdf/SKILL.md +172 -0
  273. package/skills/split-pdf/methodology.md +48 -0
  274. package/skills/sync-notion/SKILL.md +93 -0
  275. package/skills/system-audit/SKILL.md +157 -0
  276. package/skills/system-audit/references/sub-agent-prompts.md +294 -0
  277. package/skills/task-management/SKILL.md +131 -0
  278. package/skills/update-focus/SKILL.md +204 -0
  279. package/skills/update-project-doc/SKILL.md +194 -0
  280. package/skills/validate-bib/SKILL.md +242 -0
  281. package/skills/validate-bib/references/council-mode.md +34 -0
  282. package/skills/validate-bib/references/deep-verify.md +71 -0
  283. package/skills/validate-bib/references/openalex-verification.md +45 -0
  284. package/skills/validate-bib/references/preprint-check.md +31 -0
  285. package/skills/validate-bib/references/report-template.md +62 -0
@@ -0,0 +1,1823 @@
1
+ title,print_issn,e_issn,field,ajg_2024
2
+ Accounting Review,0001-4826,1558-7967,ACCOUNT,4*
3
+ "Accounting, Organizations and Society",0361-3682,1873-6289,ACCOUNT,4*
4
+ Journal of Accounting and Economics,0165-4101,1879-1980,ACCOUNT,4*
5
+ Journal of Accounting Research,0021-8456,1475-679X,ACCOUNT,4*
6
+ Contemporary Accounting Research,0823-9150,1911-3846,ACCOUNT,4
7
+ Review of Accounting Studies,1380-6653,1573-7136,ACCOUNT,4
8
+ Abacus,0001-3072,1467-6281,ACCOUNT,3
9
+ Accounting and Business Research,0001-4788,2159-4260,ACCOUNT,3
10
+ Accounting Forum,0155-9982,1467-6303,ACCOUNT,3
11
+ Accounting Horizons,0888-7993,1558-7975,ACCOUNT,3
12
+ "Accounting, Auditing and Accountability Journal",0951-3574,1758-4205,ACCOUNT,3
13
+ Auditing,0278-0380,1558-7991,ACCOUNT,3
14
+ Behavioral Research in Accounting,1050-4753,1558-8009,ACCOUNT,3
15
+ British Accounting Review,0890-8389,1095-8347,ACCOUNT,3
16
+ British Tax Review,0007-1870,2754-1525,ACCOUNT,3
17
+ Critical Perspectives on Accounting,1045-2354,1095-9955,ACCOUNT,3
18
+ European Accounting Review,0963-8180,1468-4497,ACCOUNT,3
19
+ Financial Accountability and Management,0267-4424,1468-0408,ACCOUNT,3
20
+ Foundations and Trends in Accounting,1554-0642,1554-0650,ACCOUNT,3
21
+ International Journal of Accounting,1094-4060,2213-3933,ACCOUNT,3
22
+ Journal of Accounting and Public Policy,0278-4254,1873-2070,ACCOUNT,3
23
+ Journal of Accounting Literature,0737-4607,2452-1469,ACCOUNT,3
24
+ "Journal of Accounting, Auditing and Finance",0148-558X,2160-4061,ACCOUNT,3
25
+ Journal of Business Finance and Accounting,0306-686X,1468-5957,ACCOUNT,3
26
+ Journal of Financial Reporting,2380-2154,2380-2146,ACCOUNT,3
27
+ "Journal of International Accounting, Auditing and Taxation",1061-9518,1879-1603,ACCOUNT,3
28
+ Journal of the American Taxation Association,0198-9073,1558-8017,ACCOUNT,3
29
+ Management Accounting Research,1044-5005,1096-1224,ACCOUNT,3
30
+ Accounting and Finance,0810-5391,1467-629X,ACCOUNT,2
31
+ Accounting and the Public Interest,1530-9320,1530-9320,ACCOUNT,2
32
+ Accounting in Europe,1744-9480,1744-9499,ACCOUNT,2
33
+ Accounting Research Journal,1030-9616,1839-5465,ACCOUNT,2
34
+ "Accounting, Economics and Law: A Convivium",,2152-2820,ACCOUNT,2
35
+ Advances in Accounting,0882-6110,1046-5715,ACCOUNT,2
36
+ Advances in Accounting Behavioral Research,1475-1488,,ACCOUNT,2
37
+ Advances in Management Accounting,1474-7871,,ACCOUNT,2
38
+ Advances in Taxation,1058-7497,,ACCOUNT,2
39
+ Asia-Pacific Journal of Accounting and Economics,1608-1625,2164-2257,ACCOUNT,2
40
+ Asian Review of Accounting,1321-7348,1758-8863,ACCOUNT,2
41
+ Australian Accounting Review,1035-6908,1835-2561,ACCOUNT,2
42
+ China Journal of Accounting Research,1755-3091,2214-1421,ACCOUNT,2
43
+ Current Issues in Auditing,1936-1270,,ACCOUNT,2
44
+ International Journal of Accounting and Information Management,1834-7649,1758-9037,ACCOUNT,2
45
+ International Journal of Accounting Information Systems,1467-0895,1873-4723,ACCOUNT,2
46
+ "International Journal of Accounting, Auditing and Performance Evaluation",1740-8008,1740-8016,ACCOUNT,2
47
+ International Journal of Auditing,1090-6738,1099-1123,ACCOUNT,2
48
+ International Journal of Disclosure and Governance,1741-3591,1746-6539,ACCOUNT,2
49
+ International Journal of Managerial and Financial Accounting,1753-6715,1753-6723,ACCOUNT,2
50
+ Journal of Accounting and Organizational Change,1832-5912,1839-5473,ACCOUNT,2
51
+ Journal of Accounting in Emerging Economies,2042-1168,2042-1176,ACCOUNT,2
52
+ Quantitative Finance and Economics,,2573-0134,ECON,1
53
+ Quarterly Journal of Austrian Economics,1098-3708,1936-4806,ECON,1
54
+ Research in Economics,1090-9443,1090-9451,ECON,1
55
+ Research in Transportation Economics,0739-8859,1875-7979,ECON,1
56
+ Review of Austrian Economics,0889-3047,1573-7128,ECON,1
57
+ Review of Economic Analysis,,1973-3909,ECON,1
58
+ Review of Economics and Political Science,2356-9980,2631-3561,ECON,1
59
+ Review of Financial Economics,1058-3300,1873-5924,ECON,1
60
+ Review of Radical Political Economics,0486-6134,1552-8502,ECON,1
61
+ Russian Journal of Economics,2618-7213,2405-4739,ECON,1
62
+ SERIEs,1869-4187,1869-4195,ECON,1
63
+ South African Journal of Economic and Management Sciences,1015-8812,2222-3436,ECON,1
64
+ South African Journal of Economics,0038-2280,1813-6982,ECON,1
65
+ South Asia Economic Journal,1391-5614,0973-077X,ECON,1
66
+ Statistical Analysis and Data Mining,1932-1864,1932-1872,ECON,1
67
+ Strategic Behavior and the Environment,1944-012X,1944-0138,ECON,1
68
+ Studies in Agricultural Economics,1418-2106,2063-0476,ECON,1
69
+ Studies in Economics and Finance,1086-7376,1755-6791,ECON,1
70
+ Studies in Microeconomics,2321-0222,2321-8398,ECON,1
71
+ Swiss Journal of Economics and Statistics,,2235-6282,ECON,1
72
+ The Forum for Social Economics,0736-0932,1874-6381,ECON,1
73
+ The Journal of Retirement,2326-6899,2326-6902,ECON,1
74
+ Tijdschrift Voor Economische en Sociale Geografie,0040-747X,1467-9663,ECON,1
75
+ Entrepreneurship Theory and Practice,1042-2587,1540-6520,ENT-SBM,4*
76
+ Journal of Business Venturing,0883-9026,1873-2003,ENT-SBM,4*
77
+ Strategic Entrepreneurship Journal,1932-4391,1932-443X,ENT-SBM,4
78
+ Entrepreneurship and Regional Development,0898-5626,1464-5114,ENT-SBM,3
79
+ Family Business Review,0894-4865,1741-6248,ENT-SBM,3
80
+ International Journal of Entrepreneurial Behaviour and Research,1355-2554,1758-6534,ENT-SBM,3
81
+ International Small Business Journal,0266-2426,1741-2870,ENT-SBM,3
82
+ Journal of Small Business Management,0047-2778,1540-627X,ENT-SBM,3
83
+ Small Business Economics,0921-898X,1573-0913,ENT-SBM,3
84
+ Entrepreneurship Research Journal,2194-6175,2157-5665,ENT-SBM,2
85
+ International Journal of Entrepreneurship and Innovation,1465-7503,2043-6882,ENT-SBM,2
86
+ International Journal of Entrepreneurship and Small Business,1476-1297,1741-8054,ENT-SBM,2
87
+ International Review of Entrepreneurship ,1649-2269,2009-2822,ENT-SBM,2
88
+ Journal of Business Venturing Insights,2352-6734,2352-6734,ENT-SBM,2
89
+ Journal of Family Business Strategy,1877-8585,1877-8593,ENT-SBM,2
90
+ Journal of Research in Marketing and Entrepreneurship,1471-5201,1471-5201,ENT-SBM,2
91
+ Journal of Small Business and Enterprise Development,1462-6004,1462-6004,ENT-SBM,2
92
+ Journal of Social Entrepreneurship,1942-0676,1942-0684,ENT-SBM,2
93
+ Venture Capital,1369-1066,1464-5343,ENT-SBM,2
94
+ International Entrepreneurship and Management Journal,1554-7191,1555-1938,ENT-SBM,1
95
+ International Journal of Entrepreneurial Venturing,1742-5360,1742-5379,ENT-SBM,1
96
+ International Journal of Management and Enterprise Development,1468-4330,1741-8127,ENT-SBM,1
97
+ International Journal of Small and Medium Enterprises,2576-7712,2576-7720,ENT-SBM,1
98
+ Journal of Enterprising Communities,1750-6204,1750-6204,ENT-SBM,1
99
+ Journal of Enterprising Culture,0218-4958,1793-6330,ENT-SBM,1
100
+ Journal of Entrepreneurship,0971-3557,0973-0745,ENT-SBM,1
101
+ Journal of Entrepreneurship and Innovation in Emerging Economies,2393-9575,2394-9945,ENT-SBM,1
102
+ Journal of Entrepreneurship and Public Policy,2045-2101,2045-211X,ENT-SBM,1
103
+ Journal of Entrepreneurship in Emerging Economies,2053-4604,2053-4612,ENT-SBM,1
104
+ "Journal of Entrepreneurship, Management and Innovation",2299-7075,2299-7326,ENT-SBM,1
105
+ Journal of International Entrepreneurship,1570-7385,1573-7349,ENT-SBM,1
106
+ Journal of Small Business and Entrepreneurship,0827-6331,2169-2610,ENT-SBM,1
107
+ Small Business International Review,,2531-0046,ENT-SBM,1
108
+ Small Enterprise Research,1321-5906,1175-0979,ENT-SBM,1
109
+ Social Enterprise Journal,1750-8614,1750-8533,ENT-SBM,1
110
+ "World Review of Entrepreneurship, Management and Sustainable Development",1746-0573,1746-0581,ENT-SBM,1
111
+ Academy of Management Annals,1941-6520,1941-6067,ETHICS-CSR-MAN,4*
112
+ Academy of Management Journal,0001-4273,1948-0989,ETHICS-CSR-MAN,4*
113
+ Academy of Management Review,0363-7425,1930-3807,ETHICS-CSR-MAN,4*
114
+ Administrative Science Quarterly,0001-8392,1930-3815,ETHICS-CSR-MAN,4*
115
+ Journal of Management,0149-2063,1557-1211,ETHICS-CSR-MAN,4*
116
+ Academy of Management Perspectives,1558-9080,1943-4529,ETHICS-CSR-MAN,4
117
+ British Journal of Management,1045-3172,1467-8551,ETHICS-CSR-MAN,4
118
+ Journal of Management Studies,0022-2380,1467-6486,ETHICS-CSR-MAN,4
119
+ Academy of Management Discoveries ,,2168-1007,ETHICS-CSR-MAN,3
120
+ Business and Society,0007-6503,1552-4205,ETHICS-CSR-MAN,3
121
+ Business Ethics Quarterly,1052-150X,2153-3326,ETHICS-CSR-MAN,3
122
+ California Management Review,0008-1256,2162-8564,ETHICS-CSR-MAN,3
123
+ European Management Review,1740-4754,1740-4762,ETHICS-CSR-MAN,3
124
+ Gender and Society,0891-2432,1552-3977,ETHICS-CSR-MAN,3
125
+ "Gender, Work and Organization",0968-6673,1468-0432,ETHICS-CSR-MAN,3
126
+ Harvard Business Review,0017-8012,0017-8012,ETHICS-CSR-MAN,3
127
+ International Journal of Management Reviews,1460-8545,1468-2370,ETHICS-CSR-MAN,3
128
+ Journal of Business Ethics,0167-4544,1573-0697,ETHICS-CSR-MAN,3
129
+ Journal of Business Research,0148-2963,1873-7978,ETHICS-CSR-MAN,3
130
+ Journal of Management Inquiry,1056-4926,1552-6542,ETHICS-CSR-MAN,3
131
+ MIT Sloan Management Review,1532-9194,1532-8937,ETHICS-CSR-MAN,3
132
+ Africa Journal of Management,2332-2373,2332-2381,ETHICS-CSR-MAN,2
133
+ Australian Journal of Management,0312-8962,1327-2020,ETHICS-CSR-MAN,2
134
+ BRQ Business Research Quarterly,2340-9436,2340-9444,ETHICS-CSR-MAN,2
135
+ Business and Politics,1469-3569,1369-5258,ETHICS-CSR-MAN,2
136
+ "Business Ethics, the Environment and Responsibility",2694-6416,2694-6424,ETHICS-CSR-MAN,2
137
+ Business Horizons,0007-6813,1873-6068,ETHICS-CSR-MAN,2
138
+ Canadian Journal of Administrative Sciences,0825-0383,1936-4490,ETHICS-CSR-MAN,2
139
+ Competition and Change,1024-5294,1477-2221,ETHICS-CSR-MAN,2
140
+ "Equality, Diversity and Inclusion: an International Journal",2040-7149,2040-7149,ETHICS-CSR-MAN,2
141
+ Eurasian Business Review,1309-4297,2147-4281,ETHICS-CSR-MAN,2
142
+ European Business Review,0955-534X,1758-7107,ETHICS-CSR-MAN,2
143
+ European Journal of Women's Studies,1350-5068,1461-7420,ETHICS-CSR-MAN,2
144
+ European Management Journal,0263-2373,1873-5681,ETHICS-CSR-MAN,2
145
+ Feminist Economics,1354-5701,1466-4372,ETHICS-CSR-MAN,2
146
+ Feminist Review,0141-7789,1466-4380,ETHICS-CSR-MAN,2
147
+ Global Journal of Flexible Systems Management,0972-2696,0974-0198,ETHICS-CSR-MAN,2
148
+ IIM Kozhikode Society & Management Review,2277-9752,2321-029X,ETHICS-CSR-MAN,2
149
+ International Journal of Business Governance and Ethics,1477-9048,1741-802X,ETHICS-CSR-MAN,2
150
+ International Journal of Conflict Management,1044-4068,1758-8545,ETHICS-CSR-MAN,2
151
+ International Journal of Gender and Entrepreneurship,1756-6266,1756-6274,ETHICS-CSR-MAN,2
152
+ International Studies of Management and Organization,0020-8825,1558-0911,ETHICS-CSR-MAN,2
153
+ Journal of Intellectual Capital,1469-1930,1758-7468,ETHICS-CSR-MAN,2
154
+ Journal of Management and Organization,1833-3672,1839-3527,ETHICS-CSR-MAN,2
155
+ Management Decision,0025-1747,1758-6070,ETHICS-CSR-MAN,2
156
+ Management Revue,0935-9915,1861-9908,ETHICS-CSR-MAN,2
157
+ Review of Managerial Science,1863-6683,1863-6691,ETHICS-CSR-MAN,2
158
+ Scandinavian Journal of Management,0956-5221,1873-3387,ETHICS-CSR-MAN,2
159
+ Schmalenbach Journal of Business Research,0341-2687,2366-6153,ETHICS-CSR-MAN,2
160
+ Sex Roles,0360-0025,1573-2762,ETHICS-CSR-MAN,2
161
+ Signs,0097-9740,1545-6943,ETHICS-CSR-MAN,2
162
+ Acta Commercii ,2413-1903,1684-1999,ETHICS-CSR-MAN,1
163
+ American Journal of Business ,1935-5181,1935-5181,ETHICS-CSR-MAN,1
164
+ Annals of Work Exposures and Health,2398-7308,2398-7316,ETHICS-CSR-MAN,1
165
+ Asian Journal of Management Cases,0972-8201,0973-0621,ETHICS-CSR-MAN,1
166
+ Baltic Journal of Management,1746-5265,1746-5273,ETHICS-CSR-MAN,1
167
+ Business & Professional Ethics Journal,0277-2027,2153-7828,ETHICS-CSR-MAN,1
168
+ Business and Human Rights Journal,2057-0198,2057-0201,ETHICS-CSR-MAN,1
169
+ Business Perspectives and Research,2278-5337,2394-9937,ETHICS-CSR-MAN,1
170
+ CASE Journal,1544-9106,1544-9106,ETHICS-CSR-MAN,1
171
+ Cogent Business and Management,,2331-1975,ETHICS-CSR-MAN,1
172
+ Economic and Business Review,1580-0466,2335-4216,ETHICS-CSR-MAN,1
173
+ Emerald Emerging Markets Case Studies,,2045-0621,ETHICS-CSR-MAN,1
174
+ FIIB Business Review ,2319-7145,2455-2658,ETHICS-CSR-MAN,1
175
+ Gender in Management: An International Journal,1754-2413,1754-2421,ETHICS-CSR-MAN,1
176
+ Global Business Review,0972-1509,0973-0664,ETHICS-CSR-MAN,1
177
+ International Journal of Arts Management,1480-8986,1480-8986,ETHICS-CSR-MAN,1
178
+ International Journal of Business Competition and Growth,2042-3845,2042-3853,ETHICS-CSR-MAN,1
179
+ International Journal of Business Environment,1740-0589,1740-0597,ETHICS-CSR-MAN,1
180
+ International Journal of Business Excellence,1756-0047,1756-0055,ETHICS-CSR-MAN,1
181
+ International Journal of Contemporary Management,2449-8920,2449-8939,ETHICS-CSR-MAN,1
182
+ International Journal of Globalisation and Small Business,1479-3059,1479-3067,ETHICS-CSR-MAN,1
183
+ International Journal of Knowledge-Based Development,2040-4468,2040-4476,ETHICS-CSR-MAN,1
184
+ International Journal of Management and Decision Making,1462-4621,1741-5187,ETHICS-CSR-MAN,1
185
+ International Journal of Management Concepts and Philosophy,1478-1484,1741-8135,ETHICS-CSR-MAN,1
186
+ International Journal of Management Practice,1477-9064,1741-8143,ETHICS-CSR-MAN,1
187
+ "International Journal of Management, Economics and Social Sciences",,2304-1366,ETHICS-CSR-MAN,1
188
+ International Journal of Managing Projects in Business,1753-8378,1753-8386,ETHICS-CSR-MAN,1
189
+ Iranian Journal of Management Studies,2008-7055,2345-3745,ETHICS-CSR-MAN,1
190
+ Irish Journal of Management,,2451-2834,ETHICS-CSR-MAN,1
191
+ Journal for Global Business Advancement,1746-966X,1746-9678,ETHICS-CSR-MAN,1
192
+ Journal of Contemporary Administration ,1415-6555,1982-7849,ETHICS-CSR-MAN,1
193
+ Journal of Creating Value ,2394-9643,2454-213X,ETHICS-CSR-MAN,1
194
+ Journal of Family Business Management,2043-6238,2043-6246,ETHICS-CSR-MAN,1
195
+ Journal of General Management,0306-3070,1759-6106,ETHICS-CSR-MAN,1
196
+ Journal of Global Responsibility ,2041-2568,2041-2568,ETHICS-CSR-MAN,1
197
+ Journal of Human Values,0971-6858,0973-0737,ETHICS-CSR-MAN,1
198
+ Journal of Indian Business Research,1755-4195,1755-4209,ETHICS-CSR-MAN,1
199
+ Journal of Islamic Business & Management,2075-6291,2521-2249,ETHICS-CSR-MAN,1
200
+ Journal of Management and Governance,1385-3457,1572-963X,ETHICS-CSR-MAN,1
201
+ Journal of Management Sciences,2413-8657,2313-0113,ETHICS-CSR-MAN,1
202
+ "Journal of Management, Spirituality and Religion",1476-6086,1942-258X,ETHICS-CSR-MAN,1
203
+ Journal of Revenue and Pricing Management,1476-6930,1477-657X,ETHICS-CSR-MAN,1
204
+ Management,1331-0194,1846-3363,ETHICS-CSR-MAN,1
205
+ Management Research Review,2040-8269,2040-8277,ETHICS-CSR-MAN,1
206
+ Measuring Business Excellence,1368-3047,1758-8057,ETHICS-CSR-MAN,1
207
+ Metamorphosis- A Journal of Management Research ,0972-6225,2348-9324,ETHICS-CSR-MAN,1
208
+ Organization Management Journal,1541-6518,1541-6518,ETHICS-CSR-MAN,1
209
+ Policy and Practice in Health and Safety,1477-3996,1477-4003,ETHICS-CSR-MAN,1
210
+ Problems and Perspectives in Management,1727-7051,1810-5467,ETHICS-CSR-MAN,1
211
+ PSU Research Review: An International Interdisciplinary Journal,2399-1747,2398-4007,ETHICS-CSR-MAN,1
212
+ RAE Revista de Administracao de Empresas,0034-7590,2178-938X,ETHICS-CSR-MAN,1
213
+ RAUSP Management Journal,2531-0488,2531-0488,ETHICS-CSR-MAN,1
214
+ Safety and Reliability,0961-7353,2469-4126,ETHICS-CSR-MAN,1
215
+ Social Responsibility Journal,1747-1117,1758-857X,ETHICS-CSR-MAN,1
216
+ South Asian Journal of Business and Management Cases,2277-9779,2321-0303,ETHICS-CSR-MAN,1
217
+ South Asian Journal of Business Studies,2398-628X,2398-6298,ETHICS-CSR-MAN,1
218
+ Symphonya. Emerging Issues in Management,1593-0300,1593-0319,ETHICS-CSR-MAN,1
219
+ Vezetlstudomány | Budapest Management Review ,0133-0179,,ETHICS-CSR-MAN,1
220
+ Vikalpa,0256-0909,2395-3799,ETHICS-CSR-MAN,1
221
+ Vision,0972-2629,2249-5304,ETHICS-CSR-MAN,1
222
+ Journal of Finance,0022-1082,1540-6261,FINANCE,4*
223
+ Journal of Financial Economics,0304-405X,1879-2774,FINANCE,4*
224
+ Review of Financial Studies,0893-9454,1465-7368,FINANCE,4*
225
+ Journal of Corporate Finance,0929-1199,1872-6313,FINANCE,4
226
+ Journal of Financial and Quantitative Analysis,0022-1090,1756-6916,FINANCE,4
227
+ Journal of Financial Intermediation,1042-9573,1096-0473,FINANCE,4
228
+ "Journal of Money, Credit and Banking",0022-2879,1538-4616,FINANCE,4
229
+ Review of Finance,1572-3097,1573-692X,FINANCE,4
230
+ Annual Review of Financial Economics,1941-1367,1941-1375,FINANCE,3
231
+ Corporate Governance: An International Review,0964-8410,1467-8683,FINANCE,3
232
+ European Financial Management,1354-7798,1468-036X,FINANCE,3
233
+ European Journal of Finance,1351-847X,1466-4364,FINANCE,3
234
+ Finance and Stochastics,0949-2984,1432-1122,FINANCE,3
235
+ Financial Analysts Journal,0015-198X,1938-3312,FINANCE,3
236
+ Financial Management,0046-3892,1755-053X,FINANCE,3
237
+ "Financial Markets, Institutions and Instruments",0963-8008,1468-0416,FINANCE,3
238
+ Financial Review,0732-8516,1540-6288,FINANCE,3
239
+ Insurance: Mathematics and Economics,0167-6687,1873-5959,FINANCE,3
240
+ International Journal of Central Banking,1815-4654,1815-7556,FINANCE,3
241
+ International Journal of Finance and Economics,1076-9307,1099-1158,FINANCE,3
242
+ International Review of Financial Analysis,1057-5219,1873-8079,FINANCE,3
243
+ Journal of Banking and Finance,0378-4266,1872-6372,FINANCE,3
244
+ Journal of Commodity Markets,2405-8513,2405-8505,FINANCE,3
245
+ Journal of Empirical Finance,0927-5398,1879-1727,FINANCE,3
246
+ Journal of Financial Econometrics,1479-8409,1479-8417,FINANCE,3
247
+ Journal of Financial Markets,1386-4181,1878-576X,FINANCE,3
248
+ Journal of Financial Research,0270-2592,1475-6803,FINANCE,3
249
+ Journal of Financial Services Research,0920-8550,1573-0735,FINANCE,3
250
+ Journal of Financial Stability,1572-3089,1878-0962,FINANCE,3
251
+ Journal of Futures Markets,0270-7314,1096-9934,FINANCE,3
252
+ "Journal of International Financial Markets, Institutions and Money",1042-4431,1873-0612,FINANCE,3
253
+ Journal of International Money and Finance,0261-5606,1873-0639,FINANCE,3
254
+ Journal of Portfolio Management,0095-4918,2168-8656,FINANCE,3
255
+ Journal of Real Estate Finance and Economics,0895-5638,1573-045X,FINANCE,3
256
+ Journal of Risk and Insurance,0022-4367,1539-6975,FINANCE,3
257
+ Mathematical Finance,0960-1627,1467-9965,FINANCE,3
258
+ Quantitative Finance,1469-7688,1469-7696,FINANCE,3
259
+ Review of Asset Pricing Studies,2045-9920,2045-9939,FINANCE,3
260
+ Review of Corporate Finance Studies,2046-9128,2046-9136,FINANCE,3
261
+ Review of Quantitative Finance and Accounting,0924-865X,1573-7179,FINANCE,3
262
+ Annals of Corporate Governance,2381-6724,2381-6732,FINANCE,2
263
+ Annals of Finance,1614-2446,1614-2454,FINANCE,2
264
+ Applied Mathematical Finance,1350-486X,1466-4313,FINANCE,2
265
+ Asia-Pacific Financial Markets,1387-2834,1573-6946,FINANCE,2
266
+ ASTIN Bulletin,0515-0361,1783-1350,FINANCE,2
267
+ Corporate Governance (Bingley),1472-0701,1758-6054,FINANCE,2
268
+ Emerging Markets Finance and Trade,1540-496X,1558-0938,FINANCE,2
269
+ Emerging Markets Review,1566-0141,1873-6173,FINANCE,2
270
+ European Actuarial Journal,2190-9733,2190-9741,FINANCE,2
271
+ Finance Research Letters,1544-6123,1544-6131,FINANCE,2
272
+ Financial Innovation,,2199-4730,FINANCE,2
273
+ Financial Markets and Portfolio Management,1934-4554,2373-8529,FINANCE,2
274
+ Foundations and Trends in Finance,1567-2395,1567-2409,FINANCE,2
275
+ Geneva Papers on Risk and Insurance: Issues and Practice,1018-5895,1468-0440,FINANCE,2
276
+ Global Finance Journal,1044-0283,1873-5665,FINANCE,2
277
+ "International Journal of Banking, Accounting and Finance",1755-3830,1755-3849,FINANCE,2
278
+ International Journal of Managerial Finance,1743-9132,1758-6569,FINANCE,2
279
+ International Journal of Theoretical and Applied Finance,0219-0249,1793-6322,FINANCE,2
280
+ International Tax and Public Finance,0927-5940,1573-6970,FINANCE,2
281
+ Journal of Alternative Investments,1520-3255,2168-8435,FINANCE,2
282
+ Journal of Asset Management,1470-8272,1479-179X,FINANCE,2
283
+ Journal of Banking Regulation,1745-6452,1750-2071,FINANCE,2
284
+ Journal of Behavioral Finance,1542-7560,1542-7579,FINANCE,2
285
+ Journal of Derivatives,1074-1240,2168-8524,FINANCE,2
286
+ Journal of Economics and Business,0148-6195,1879-1735,FINANCE,2
287
+ Journal of Emerging Market Finance,0972-6527,0973-0710,FINANCE,2
288
+ Journal of Fixed Income,1059-8596,2168-8648,FINANCE,2
289
+ "Journal of Law, Finance, and Accounting",2380-5005,2380-5013,FINANCE,2
290
+ Journal of Multinational Financial Management,1042-444X,1873-1309,FINANCE,2
291
+ Journal of Operational Risk,1744-6740,1755-2710,FINANCE,2
292
+ Journal of Pension Economics and Finance,1474-7472,1475-3022,FINANCE,2
293
+ Journal of Risk,1465-1211,1755-2842,FINANCE,2
294
+ North American Actuarial Journal,1092-0277,2325-0453,FINANCE,2
295
+ Pacific Basin Finance Journal,0927-538X,1879-0585,FINANCE,2
296
+ Research in International Business and Finance,0275-5319,1878-3384,FINANCE,2
297
+ Review of Accounting and Finance,1475-7702,1758-7700,FINANCE,2
298
+ Review of Derivatives Research,1380-6645,1573-7144,FINANCE,2
299
+ Review of Development Finance,1879-9337,,FINANCE,2
300
+ SIAM Journal on Financial Mathematics,1945-497X,1945-497X,FINANCE,2
301
+ African Finance Journal,1605-9786,2959-0922,FINANCE,1
302
+ Agricultural Finance Review,0002-1466,2041-6326,FINANCE,1
303
+ Annals of Actuarial Science,1748-4995,1748-5002,FINANCE,1
304
+ Bancaria The Journal of the Italian Banking Association,,2499-4472,FINANCE,1
305
+ Banks and Bank Systems,1816-7403,1991-7074,FINANCE,1
306
+ British Actuarial Journal,1357-3217,2044-0456,FINANCE,1
307
+ China Finance Review International,2044-1398,2044-1401,FINANCE,1
308
+ Critical Finance Review,2164-5744,2164-5760,FINANCE,1
309
+ Finance,0752-6180,2101-0145,FINANCE,1
310
+ Financial Services Review,1873-5673,1057-0810,FINANCE,1
311
+ Insurance Markets and Companies,2616-3551,2522-9591,FINANCE,1
312
+ "Intelligent Systems in Accounting, Finance and Management",1550-1949,2160-0074,FINANCE,1
313
+ International Journal of Islamic and Middle Eastern Finance and Management,1753-8394,1753-8408,FINANCE,1
314
+ Investment Analysts Journal,1029-3523,2077-0227,FINANCE,1
315
+ Investment Management and Financial Innovations,1810-4967,1812-9358,FINANCE,1
316
+ Journal of Applied Corporate Finance,1078-1196,1745-6622,FINANCE,1
317
+ Journal of Behavioral and Experimental Finance,2214-6350,2214-6369,FINANCE,1
318
+ Journal of Capital Markets Studies,2514-4774,2514-4774,FINANCE,1
319
+ Journal of Computational Finance,1460-1559,1755-2850,FINANCE,1
320
+ Journal of Credit Risk,1744-6619,1755-9723,FINANCE,1
321
+ Journal of Economics and Finance,1055-0925,1938-9744,FINANCE,1
322
+ "Journal of Economics, Finance and Administrative Science",2077-1886,2218-0648,FINANCE,1
323
+ Journal of Energy Markets,1756-3607,1756-3615,FINANCE,1
324
+ Journal of Financial Economic Policy,1757-6385,1757-6393,FINANCE,1
325
+ "Journal of Financial Management, Markets and Institutions",,2282-717X,FINANCE,1
326
+ Journal of Financial Market Infrastructures,2049-5404,2049-5412,FINANCE,1
327
+ Journal of Financial Regulation and Compliance,1358-1988,1740-0279,FINANCE,1
328
+ Journal of Financial Reporting and Accounting,1985-2517,2042-5856,FINANCE,1
329
+ Journal of Investment Strategies,2047-1238,2047-1246,FINANCE,1
330
+ Journal of Prediction Markets,1750-6751,1750-676X,FINANCE,1
331
+ Journal of Property Investment and Finance,1463-578X,1470-2002,FINANCE,1
332
+ Journal of Risk Finance,0965-7967,1526-5943,FINANCE,1
333
+ Journal of Risk Model Validation,1753-9579,1753-9587,FINANCE,1
334
+ Journal of Sustainable Finance and Investment,2043-0795,2043-0809,FINANCE,1
335
+ Managerial Finance,0307-4358,1758-7743,FINANCE,1
336
+ Multinational Finance Journal,1096-1879,,FINANCE,1
337
+ Public and Municipal Finance,2222-1867,2222-1875,FINANCE,1
338
+ Qualitative Research in Financial Markets,1755-4179,1755-4187,FINANCE,1
339
+ Quarterly Journal of Finance,2010-1392,2010-1406,FINANCE,1
340
+ Quarterly Journal of Finance and Accounting (QJFA),1939-8123,2327-8250,FINANCE,1
341
+ Review of Behavioral Finance,1940-5979,1940-5987,FINANCE,1
342
+ Scandinavian Actuarial Journal,0346-1238,1651-2030,FINANCE,1
343
+ The Journal of Beta Investment Strategies,2771-6511,2771-6511,FINANCE,1
344
+ The Journal of Financial Data Science,2640-3943,2640-3951,FINANCE,1
345
+ The Journal of Investing,1068-0896,2168-8613,FINANCE,1
346
+ The Journal of Structured Finance,1551-9783,2374-1325,FINANCE,1
347
+ The Journal of Wealth Management,1534-7524,2374-1368,FINANCE,1
348
+ Human Resource Management Journal (UK),0954-5395,1748-8583,HRM&EMP,4*
349
+ British Journal of Industrial Relations,0007-1080,1467-8543,HRM&EMP,4
350
+ Human Resource Management (USA),0090-4848,1099-050X,HRM&EMP,4
351
+ Industrial Relations,0019-8676,1468-232X,HRM&EMP,4
352
+ "Work, Employment and Society",0950-0170,1469-8722,HRM&EMP,4
353
+ Economic and Industrial Democracy,0143-831X,1461-7099,HRM&EMP,3
354
+ European Journal of Industrial Relations,0959-6801,1461-7129,HRM&EMP,3
355
+ Human Resource Management Review,1053-4822,1873-7889,HRM&EMP,3
356
+ ILR Review,0019-7939,2162-271X,HRM&EMP,3
357
+ Industrial Law Journal,0305-9332,1464-3669,HRM&EMP,3
358
+ Industrial Relations Journal,0019-8692,1468-2338,HRM&EMP,3
359
+ International Journal of Human Resource Management,0958-5192,1466-4399,HRM&EMP,3
360
+ "New Technology, Work and Employment",0268-1072,1468-005X,HRM&EMP,3
361
+ Work and Occupations,0730-8884,1552-8464,HRM&EMP,3
362
+ Asia Pacific Journal of Human Resources,1038-4111,1744-7941,HRM&EMP,2
363
+ Career Development International,1362-0436,1758-6003,HRM&EMP,2
364
+ Career Development Quarterly,0889-4019,2161-0045,HRM&EMP,2
365
+ Employee Relations,0142-5455,1758-7069,HRM&EMP,2
366
+ Employee Responsibilities and Rights Journal,0892-7545,1573-3378,HRM&EMP,2
367
+ Human Resource Development International,1367-8868,1469-8374,HRM&EMP,2
368
+ Human Resource Development Quarterly,1044-8004,1532-1096,HRM&EMP,2
369
+ Human Resource Development Review,1552-6712,1552-6712,HRM&EMP,2
370
+ Industrielle Beziehungen,0943-2779,1862-0035,HRM&EMP,2
371
+ International Journal of Manpower,0143-7720,1758-6577,HRM&EMP,2
372
+ International Journal of Training and Development,1360-3736,1468-2419,HRM&EMP,2
373
+ International Labour Review,0020-7780,1564-913X,HRM&EMP,2
374
+ Journal of Global Mobility,2049-8799,2049-8802,HRM&EMP,2
375
+ Journal of Industrial Relations,0022-1856,1472-9296,HRM&EMP,2
376
+ Journal of Labor Research,0195-3613,1936-4768,HRM&EMP,2
377
+ Journal of Organizational Effectiveness,2051-6614,2051-6622,HRM&EMP,2
378
+ Journal of Participation and Employee Ownership,2514-7641,2514-7641,HRM&EMP,2
379
+ Labor Studies Journal,0160-449X,1538-9758,HRM&EMP,2
380
+ Labour and Industry: a journal of social and economic relations of work,1030-1763,2325-5676,HRM&EMP,2
381
+ Personnel Review,0048-3486,1758-6933,HRM&EMP,2
382
+ Relations Industrielles/Industrial Relations,0034-379X,1703-8138,HRM&EMP,2
383
+ Sociologie du Travail,0038-0296,1777-5701,HRM&EMP,2
384
+ Transfer,1024-2589,1996-7284,HRM&EMP,2
385
+ Work in the Global Economy,,2732-4176,HRM&EMP,2
386
+ "Work, Aging and Retirement",,2054-4650,HRM&EMP,2
387
+ Zeitschrift für Personalforschung (German Journal of Research in Human Resource Management),2397-0022,2397-0030,HRM&EMP,2
388
+ Advances in Industrial and Labor Relations,0742-6186,2514-3964,HRM&EMP,1
389
+ African Journal of Employee Relations,,2664-3731,HRM&EMP,1
390
+ Australian Journal of Labour Economics,1328-1143,2981-9490,HRM&EMP,1
391
+ Economic and Labour Relations Review,1035-3046,1838-2673,HRM&EMP,1
392
+ Evidence-based HRM,2049-3983,2049-3991,HRM&EMP,1
393
+ Indian Journal of Labour Economics,0971-7927,0019-5308,HRM&EMP,1
394
+ Industrial and Commercial Training,0019-7858,0019-7858,HRM&EMP,1
395
+ International Journal of Comparative Labour Law and Industrial Relations,0952-617X,1875-838X,HRM&EMP,1
396
+ International Journal of Employment Studies,1039-6993,1839-5945,HRM&EMP,1
397
+ International Journal of Learning and Intellectual Capital,1479-4853,1479-4861,HRM&EMP,1
398
+ Journal of Work-Applied Management,2205-2062,2205-149X,HRM&EMP,1
399
+ Labour,1121-7081,1467-9914,HRM&EMP,1
400
+ Management and Labour Studies ,0258-042X,2321-0710,HRM&EMP,1
401
+ Research in Personnel and Human Resources Management,0742-7301,,HRM&EMP,1
402
+ SA Journal of Human Resource Management,1683-7584,2071-078X,HRM&EMP,1
403
+ South Asian Journal of Human Resources Management,2322-0937,2349-5790,HRM&EMP,1
404
+ Team Performance Management,1352-7592,1352-7592,HRM&EMP,1
405
+ "Work Organisation, Labour and Globalisation",1745-641X,1745-6428,HRM&EMP,1
406
+ Journal of International Business Studies,0047-2506,1478-6990,IB&AREA,4*
407
+ Journal of World Business,1090-9516,1878-5573,IB&AREA,4
408
+ African Affairs,0001-9909,1468-2621,IB&AREA,3
409
+ Asia Pacific Journal of Management,0217-4561,1572-9958,IB&AREA,3
410
+ International Business Review,0969-5931,1873-6149,IB&AREA,3
411
+ Journal of Common Market Studies,0021-9886,1468-5965,IB&AREA,3
412
+ Journal of International Business Policy,2522-0691,2522-0705,IB&AREA,3
413
+ Journal of International Management,1075-4253,1873-0620,IB&AREA,3
414
+ Management and Organization Review,1740-8776,1740-8784,IB&AREA,3
415
+ Management International Review,0938-8249,1861-8901,IB&AREA,3
416
+ Multinational Business Review,1525-383X,2054-1686,IB&AREA,3
417
+ Asia Pacific Business Review,1360-2381,1743-792X,IB&AREA,2
418
+ Asian Business and Management,1472-4782,1476-9328,IB&AREA,2
419
+ China Quarterly,0305-7410,1468-2648,IB&AREA,2
420
+ Critical Perspectives on International Business,1742-2043,1758-6062,IB&AREA,2
421
+ Cross Cultural and Strategic Management,2059-5794,2059-5808,IB&AREA,2
422
+ Eurasian Geography and Economics,1538-7216,1938-2863,IB&AREA,2
423
+ EuroMed Journal of Business,1450-2194,1758-888X,IB&AREA,2
424
+ Europe-Asia Studies,0966-8136,1465-3427,IB&AREA,2
425
+ European Journal of International Management,1751-6757,1751-6765,IB&AREA,2
426
+ Journal of Business Economics and Management,1611-1699,2029-4433,IB&AREA,2
427
+ Journal of Latin American Studies,0022-216X,1469-767X,IB&AREA,2
428
+ Journal of Modern African Studies,0022-278X,1469-7777,IB&AREA,2
429
+ Journal of World Trade,1011-6702,2210-2795,IB&AREA,2
430
+ Review of African Political Economy,0305-6244,1740-1720,IB&AREA,2
431
+ Third World Quarterly,0143-6597,1360-2241,IB&AREA,2
432
+ Thunderbird International Business Review,1096-4762,1520-6874,IB&AREA,2
433
+ Academia Revista Latinoamericana de Administracion,1012-8255,2056-5127,IB&AREA,1
434
+ African Journal of Economic and Management Studies,2040-0705,2040-0713,IB&AREA,1
435
+ Asia Pacific Management Review,1029-3132,2589-8213,IB&AREA,1
436
+ Asia-Pacific Journal of Business Administration,1757-4323,1757-4331,IB&AREA,1
437
+ Chinese Management Studies,1750-614X,1750-6158,IB&AREA,1
438
+ Competitiveness Review,1059-5422,2051-3143,IB&AREA,1
439
+ Foreign Trade Review,0015-7325,0971-7625,IB&AREA,1
440
+ Global Business and Economics Review,1097-4954,1745-1329,IB&AREA,1
441
+ International Journal of Business and Emerging Markets,1753-6219,1753-6227,IB&AREA,1
442
+ International Journal of Cross Cultural Management,1470-5958,1741-2838,IB&AREA,1
443
+ International Journal of Emerging Markets,1746-8809,1746-8817,IB&AREA,1
444
+ International Journal of Export Marketing ,2059-089X,2059-0903,IB&AREA,1
445
+ International Journal of Indian Culture and Business Management,1753-0806,1753-0814,IB&AREA,1
446
+ International Trade Journal,0885-3908,1521-0545,IB&AREA,1
447
+ Journal for International Business and Entrepreneurship Development,1549-9324,1747-6763,IB&AREA,1
448
+ Journal of African Business,1522-8916,1522-9076,IB&AREA,1
449
+ Journal of Asia Business Studies,1558-7894,1559-2243,IB&AREA,1
450
+ Journal of Asia-Pacific Business,1059-9231,1528-6940,IB&AREA,1
451
+ Journal of Chinese Economic and Business Studies,1476-5284,1476-5292,IB&AREA,1
452
+ Journal of East European Management Studies,0949-6181,1862-0019,IB&AREA,1
453
+ Journal of East-West Business,1066-9868,1528-6959,IB&AREA,1
454
+ Journal of Transnational Management,1547-5778,1547-5786,IB&AREA,1
455
+ Latin American Business Review,1097-8526,1528-6932,IB&AREA,1
456
+ Management Research,1536-5433,1558-0946,IB&AREA,1
457
+ Review of International Business and Strategy,2059-6014,2059-6014,IB&AREA,1
458
+ Revista de Gestão,2177-8736,2177-8736,IB&AREA,1
459
+ South African Journal of Business Management,2078-5585,2078-5976,IB&AREA,1
460
+ South Asian Journal of Macroeconomics and Public Finance,2277-9787,2321-0273,IB&AREA,1
461
+ Transnational Corporations Review,1918-6444,1925-2099,IB&AREA,1
462
+ Information Systems Research,1047-7047,1526-5536,INFO MAN,4*
463
+ Journal of the Association for Information Systems,,1536-9323,INFO MAN,4*
464
+ MIS Quarterly: Management Information Systems,0276-7783,2162-9730,INFO MAN,4*
465
+ European Journal of Information Systems,0960-085X,1476-9344,INFO MAN,4
466
+ Information Systems Journal,1350-1917,1365-2575,INFO MAN,4
467
+ Journal of Information Technology,0268-3962,1466-4437,INFO MAN,4
468
+ Journal of Management Information Systems,0742-1222,1557-928X,INFO MAN,4
469
+ Journal of Strategic Information Systems,0963-8687,1873-1198,INFO MAN,4
470
+ Decision Support Systems,0167-9236,1873-5797,INFO MAN,3
471
+ Government Information Quarterly,0740-624X,1872-9517,INFO MAN,3
472
+ Information and Management,0378-7206,1872-7530,INFO MAN,3
473
+ Information and Organization,1471-7727,1873-7919,INFO MAN,3
474
+ Information Society,0197-2243,1087-6537,INFO MAN,3
475
+ Information Systems Frontiers,1387-3326,1572-9419,INFO MAN,3
476
+ Information Technology and People,0959-3845,1758-5813,INFO MAN,3
477
+ International Journal of Electronic Commerce,1086-4415,1557-9301,INFO MAN,3
478
+ Internet Research,1066-2243,1066-2243,INFO MAN,3
479
+ Journal of Computer-Mediated Communication,1083-6101,1083-6101,INFO MAN,3
480
+ Journal of the Association for Information Science and Technology (JASIST),2330-1635,2330-1643,INFO MAN,3
481
+ AIS Transactions on Human-Computer Interaction,,1944-3900,INFO MAN,2
482
+ Annual Review of Information Science and Technology,0066-4200,1550-8382,INFO MAN,2
483
+ Behaviour and Information Technology,0144-929X,1362-3001,INFO MAN,2
484
+ British Journal of Educational Technology,0007-1013,1467-8535,INFO MAN,2
485
+ Business & Information Systems Engineering,2363-7005,1867-0202,INFO MAN,2
486
+ Communications of the ACM,0001-0782,1557-7317,INFO MAN,2
487
+ Communications of the Association for Information Systems,1529-3181,,INFO MAN,2
488
+ Computer Journal,0010-4620,1460-2067,INFO MAN,2
489
+ Computer Supported Cooperative Work,0925-9724,1573-7551,INFO MAN,2
490
+ Computers in Human Behavior,0747-5632,1873-7692,INFO MAN,2
491
+ Electronic Commerce Research,1389-5753,1572-9362,INFO MAN,2
492
+ Electronic Commerce Research and Applications,1567-4223,1873-7846,INFO MAN,2
493
+ Enterprise Information Systems,1751-7575,1751-7583,INFO MAN,2
494
+ Expert Systems,0266-4720,1468-0394,INFO MAN,2
495
+ Health Information and Libraries Journal,1471-1834,1471-1842,INFO MAN,2
496
+ Health Systems,2047-6965,2047-6973,INFO MAN,2
497
+ Industrial Management and Data Systems,0263-5577,1758-5783,INFO MAN,2
498
+ Information Processing and Management,0306-4573,1873-5371,INFO MAN,2
499
+ Information Systems and e-Business Management,1617-9846,1617-9854,INFO MAN,2
500
+ Information Systems Management,1058-0530,1934-8703,INFO MAN,2
501
+ Information Technology for Development,0268-1102,1554-0170,INFO MAN,2
502
+ Interacting with Computers,0953-5438,1873-7951,INFO MAN,2
503
+ International Journal of Human Computer Studies,1071-5819,1095-9300,INFO MAN,2
504
+ International Journal of Information Management,0268-4012,1873-4707,INFO MAN,2
505
+ Journal of Computer Information Systems,0887-4417,2380-2057,INFO MAN,2
506
+ Journal of Documentation,0022-0418,1758-7379,INFO MAN,2
507
+ Journal of Enterprise Information Management,1741-0398,1758-7409,INFO MAN,2
508
+ Journal of Global Information Management,1062-7375,1533-7995,INFO MAN,2
509
+ Journal of Global Information Technology Management,1097-198X,2333-6846,INFO MAN,2
510
+ Journal of Information Science,0165-5515,1741-6485,INFO MAN,2
511
+ Journal of Systems and Software,0164-1212,1873-1228,INFO MAN,2
512
+ MIS Quarterly Executive,1540-1960,1540-1979,INFO MAN,2
513
+ Pacific Asia Journal of the Association for Information Systems,1943-7536,1943-7544,INFO MAN,2
514
+ Requirements Engineering,0947-3602,1432-010X,INFO MAN,2
515
+ Scandinavian Journal of Information Systems,0905-0167,1901-0990,INFO MAN,2
516
+ The Data Base for Advances in Information Systems,0095-0033,1532-0936,INFO MAN,2
517
+ Aslib Journal of Information Management,2050-3806,2050-3814,INFO MAN,1
518
+ Australasian Journal of Information Systems,1449-8618,1326-2238,INFO MAN,1
519
+ e-Service Journal,1528-8226,1528-8234,INFO MAN,1
520
+ Ethics and Information Technology,1388-1957,1572-8439,INFO MAN,1
521
+ Expert Systems with Applications,0957-4174,1873-6793,INFO MAN,1
522
+ Foundations and Trends® in Information Systems,2331-1231,2331-124X,INFO MAN,1
523
+ Human-Computer Interaction,0737-0024,1532-7051,INFO MAN,1
524
+ Information and Computer Security,2056-4961,2056-497X,INFO MAN,1
525
+ Information Research,,1368-1613,INFO MAN,1
526
+ Information Resources Management Journal,1040-1628,1533-7979,INFO MAN,1
527
+ Information Technology & Tourism,1098-3058,1943-4294,INFO MAN,1
528
+ Information Technology and Management,1385-951X,1573-7667,INFO MAN,1
529
+ International Journal of Business and Systems Research,1751-200X,1751-2018,INFO MAN,1
530
+ International Journal of Business Information Systems,1746-0972,1746-0980,INFO MAN,1
531
+ International Journal of Business Process Integration and Management,1741-8763,1741-8771,INFO MAN,1
532
+ International Journal of Data Analysis Techniques and Strategies,1755-8050,1755-8069,INFO MAN,1
533
+ "International Journal of Digital Strategy, Governance, and Business Transformation",2643-8054,2643-8062,INFO MAN,1
534
+ International Journal of e-Business Research,1548-1131,1548-114X,INFO MAN,1
535
+ International Journal of Electronic Business,1470-6067,1741-5063,INFO MAN,1
536
+ International Journal of Enterprise Information Systems,1548-1115,1548-1123,INFO MAN,1
537
+ International Journal of Information Systems and Change Management,1479-3121,1479-313X,INFO MAN,1
538
+ International Journal of Information Systems in the Service Sector,1935-5688,1935-5696,INFO MAN,1
539
+ International Journal of Information Technology and Management,1461-4111,1741-5179,INFO MAN,1
540
+ International Journal of Knowledge Management,1548-0666,1548-0658,INFO MAN,1
541
+ International Journal of Services Economics and Management,1753-0822,1753-0830,INFO MAN,1
542
+ International Journal of Web Information Systems,1744-0084,1744-0092,INFO MAN,1
543
+ Journal of Database Management,1063-8016,1533-8010,INFO MAN,1
544
+ Journal of Decision Systems,1246-0125,2116-7052,INFO MAN,1
545
+ Journal of Electronic Commerce in Organizations,1539-2937,1539-2929,INFO MAN,1
546
+ Journal of Electronic Commerce Research,1938-9027,1526-6133,INFO MAN,1
547
+ Journal of Emerging Technologies in Accounting,1554-1908,1558-7940,INFO MAN,1
548
+ Journal of Information Systems Education,1055-3096,2574-3872,INFO MAN,1
549
+ Journal of Information Technology Case and Application Research,1522-8053,2333-6897,INFO MAN,1
550
+ Journal of Information Technology Management,2008-5893,2423-5059,INFO MAN,1
551
+ Journal of Information Technology Teaching Cases,2043-8869,2043-8869,INFO MAN,1
552
+ Journal of Applied Accounting Research,0967-5426,1758-8855,ACCOUNT,2
553
+ Journal of Contemporary Accounting and Economics,1815-5669,2352-3298,ACCOUNT,2
554
+ Journal of Forensic Accounting Research,,2380-2138,ACCOUNT,2
555
+ Journal of International Accounting Research,1542-6297,1558-8025,ACCOUNT,2
556
+ Journal of International Financial Management and Accounting,0954-1314,1467-646X,ACCOUNT,2
557
+ Journal of Management Accounting Research,1049-2127,1558-8033,ACCOUNT,2
558
+ Journal of Management Control,2191-4761,2191-477X,ACCOUNT,2
559
+ "Journal of Public Budgeting, Accounting and Financial Management",1096-3367,1945-1814,ACCOUNT,2
560
+ Journal of Tax Administration,2059-190X,2059-190X,ACCOUNT,2
561
+ Managerial Auditing Journal,0268-6902,1758-7735,ACCOUNT,2
562
+ Qualitative Research in Accounting and Management,1176-6093,1758-7654,ACCOUNT,2
563
+ "Sustainability Accounting, Management and Policy Journal",2040-8021,2040-803X,ACCOUNT,2
564
+ "Accounting, Finance & Governance Review ",,2737-7482,ACCOUNT,1
565
+ Advances in Environmental Accounting and Management,1479-3598,,ACCOUNT,1
566
+ Advances in Public Interest Accounting,1041-7060,,ACCOUNT,1
567
+ "African Journal of Accounting, Auditing and Finance",2046-8083,2046-8091,ACCOUNT,1
568
+ Asian Journal of Accounting Research,2459-9700,2443-4175,ACCOUNT,1
569
+ ATA Journal of Legal Tax Research,1543-866X,,ACCOUNT,1
570
+ "Australasian Accounting, Business and Finance Journal",1834-2000,1834-2019,ACCOUNT,1
571
+ China Journal of Accounting Studies,2169-7213,2169-7221,ACCOUNT,1
572
+ Comptabilite Controle Audit,1262-2788,,ACCOUNT,1
573
+ EDPACS,0736-6981,1936-1009,ACCOUNT,1
574
+ International Journal of Critical Accounting,1757-9848,1757-9856,ACCOUNT,1
575
+ Journal of Accounting and Management Information Systems,1583-4387,2559-6004,ACCOUNT,1
576
+ Journal of Accounting and Taxation,,2141-6664,ACCOUNT,1
577
+ Journal of Forensic and Investigative Accounting (previously Journal of Forensic Accounting),,2165-3755,ACCOUNT,1
578
+ Journal of Governmental & Non-Profit Accounting,,2155-3815 ,ACCOUNT,1
579
+ Journal of Information Systems,0888-7985,1558-7959,ACCOUNT,1
580
+ Journal of Islamic Accounting and Business Research ,1759-0817‎,1759-0817‎,ACCOUNT,1
581
+ Management Accounting Frontiers,2209-038X,2209-0398,ACCOUNT,1
582
+ Meditari Accountancy Research,2049-372X,2049-3738,ACCOUNT,1
583
+ Pacific Accounting Review,0114-0582,2041-5494,ACCOUNT,1
584
+ Research on Professional Responsibility and Ethics in Accounting,1574-0765,,ACCOUNT,1
585
+ Revista Contabilidade & Finanças,,1808-057X,ACCOUNT,1
586
+ Revista de Contabilidad-Spanish Accounting Review,1138-4891,1988-4672,ACCOUNT,1
587
+ Revista Espanola de Financiacion y Contabilidad,0210-2412,2332-0753,ACCOUNT,1
588
+ Social and Environmental Accountability Journal,0969-160X,2156-2245,ACCOUNT,1
589
+ South African Journal of Accounting Research,1029-1954,2376-3981,ACCOUNT,1
590
+ World Tax Journal,1878-4917,2352-9237,ACCOUNT,1
591
+ Business History,0007-6791,1743-7938,BUS HIST & ECON HIST,4
592
+ Business History Review,0007-6805,2044-768X,BUS HIST & ECON HIST,4
593
+ Economic History Review,0013-0117,1468-0289,BUS HIST & ECON HIST,4
594
+ Enterprise and Society,1467-2227,1467-2235,BUS HIST & ECON HIST,3
595
+ European Review of Economic History,1361-4916,1474-0044,BUS HIST & ECON HIST,3
596
+ Explorations in Economic History,0014-4983,1090-2457,BUS HIST & ECON HIST,3
597
+ Journal of Economic History,0022-0507,1471-6372,BUS HIST & ECON HIST,3
598
+ Accounting Historians Journal,0148-4184,2327-4468,BUS HIST & ECON HIST,2
599
+ Accounting History,1032-3732,1749-3374,BUS HIST & ECON HIST,2
600
+ Accounting History Review,2155-2851,2155-286X,BUS HIST & ECON HIST,2
601
+ Australian Economic History Review,0004-8992,1467-8446,BUS HIST & ECON HIST,2
602
+ Journal of Informetrics,1751-1577,1875-5879,INFO MAN,1
603
+ Journal of Internet Commerce,1533-2861,1533-287X,INFO MAN,1
604
+ Journal of Organizational and End User Computing,1546-2234,1546-5012,INFO MAN,1
605
+ Journal of Organizational Computing and Electronic Commerce,1091-9392,1532-7744,INFO MAN,1
606
+ Journal of Systems and Information Technology,1328-7265,1758-8847,INFO MAN,1
607
+ Journal of Theoretical and Applied Electronic Commerce Research,0718-1876,0718-1876,INFO MAN,1
608
+ Knowledge Management Research and Practice,1477-8238,1477-8246,INFO MAN,1
609
+ Library Hi Tech (LHT),0737-8831,0737-8831,INFO MAN,1
610
+ Online Information Review,1468-4527,1468-4535,INFO MAN,1
611
+ Online Journal of Applied Knowledge Management,,2325-4688,INFO MAN,1
612
+ Software Impacts,,2665-9638,INFO MAN,1
613
+ South African Journal of Information Management,2078-1865,1560-683X,INFO MAN,1
614
+ The Bottom Line,0888-045X,0888-045X,INFO MAN,1
615
+ Research Policy,0048-7333,1873-7625,INNOV,4*
616
+ Journal of Product Innovation Management,0737-6782,1540-5885,INNOV,4
617
+ Industry and Innovation,1366-2716,1469-8390,INNOV,3
618
+ Journal of Technology Transfer,0892-9912,1573-7047,INNOV,3
619
+ R and D Management,0033-6807,1467-9310,INNOV,3
620
+ Technological Forecasting and Social Change,0040-1625,1873-5509,INNOV,3
621
+ Technovation,0166-4972,1879-2383,INNOV,3
622
+ Creativity and Innovation Management,0963-1690,1467-8691,INNOV,2
623
+ Innovation: Organization & Management,1447-9338,2204-0226,INNOV,2
624
+ International Journal of Innovation Management,1363-9196,1757-5877,INNOV,2
625
+ Journal of Engineering and Technology Management - JET-M,0923-4748,1879-1719,INNOV,2
626
+ Journal of High Technology Management Research,1047-8310,1879-1638,INNOV,2
627
+ Journal of Responsible Innovation,2329-9460,2329-9037,INNOV,2
628
+ Prometheus,0810-9028,1470-1030,INNOV,2
629
+ Research Technology Management,0895-6308,1930-0166,INNOV,2
630
+ Science and Technology Studies,2243-4690,2243-4690,INNOV,2
631
+ Science Technology and Human Values,0162-2439,1552-8251,INNOV,2
632
+ Scientometrics,0138-9130,1588-2861,INNOV,2
633
+ Social Studies of Science,0306-3127,1460-3659,INNOV,2
634
+ Structural Change and Economic Dynamics,0954-349X,1873-6017,INNOV,2
635
+ Annals of Science and Technology Policy,2475-1820,2475-1812,INNOV,1
636
+ Asian Journal of Technology Innovation,1976-1597,2158-6721,INNOV,1
637
+ European Journal of Innovation Management,1460-1060,1758-7115,INNOV,1
638
+ International Journal of Business Innovation and Research,1751-0252,1751-0260,INNOV,1
639
+ International Journal of Entrepreneurship and Innovation Management,1368-275X,1741-5098,INNOV,1
640
+ International Journal of Foresight and Innovation Policy,1740-2816,1740-2824,INNOV,1
641
+ International Journal of Innovation and Sustainable Development,1740-8822,1740-8830,INNOV,1
642
+ International Journal of Innovation and Technology Management,0219-8770,1793-6950,INNOV,1
643
+ International Journal of Innovation Science,1757-2223,1757-2231,INNOV,1
644
+ International Journal of Product Development,1477-9056,1741-8178,INNOV,1
645
+ "International Journal of Technological Learning, Innovation and Development",1753-1942,1753-1950,INNOV,1
646
+ International Journal of Technology and Globalisation,1476-5667,1741-8194,INNOV,1
647
+ International Journal of Technology Intelligence and Planning,1740-2832,1740-2840,INNOV,1
648
+ International Journal of Technology Management and Sustainable Development,1474-2748,2040-0551,INNOV,1
649
+ International Journal of Technology Transfer and Commercialisation,1470-6075,1741-5284,INNOV,1
650
+ "International Journal of Technology, Policy and Management",1468-4322,1741-5292,INNOV,1
651
+ International Journal of the Digital Human,2046-3375,2046-3383,INNOV,1
652
+ Journal of Innovation and Knowledge,2530-7614,2444-569X,INNOV,1
653
+ Journal of Innovation Economics & Management,,2032-5355,INNOV,1
654
+ Journal of Innovation Management (JIM),,2183-0606,INNOV,1
655
+ Journal of Science and Technology Policy Management,2053-4620,2053-4639,INNOV,1
656
+ Journal of the Knowledge Economy,1868-7865,1868-7873,INNOV,1
657
+ Technology Innovation Management Review,,1927-0321,INNOV,1
658
+ Academy of Management Learning and Education,1537-260X,1944-9585,MDEV&EDU,4*
659
+ Management Learning,1350-5076,1461-7307,MDEV&EDU,3
660
+ Studies in Higher Education,0307-5079,1470-174X,MDEV&EDU,3
661
+ Accounting Education,0963-9284,1468-4489,MDEV&EDU,2
662
+ Advances in Developing Human Resources,1523-4223,1552-3055,MDEV&EDU,2
663
+ Assessment and Evaluation in Higher Education,0260-2938,1469-297X,MDEV&EDU,2
664
+ British Educational Research Journal,0141-1926,1469-3518,MDEV&EDU,2
665
+ British Journal of Guidance and Counselling,0306-9885,1469-3534,MDEV&EDU,2
666
+ European Journal of Higher Education,2156-8235,2156-8243,MDEV&EDU,2
667
+ Higher Education,0018-1560,1573-174X,MDEV&EDU,2
668
+ Higher Education Policy,0952-8733,1740-3863,MDEV&EDU,2
669
+ Higher Education Quarterly,0951-5224,0263-9769,MDEV&EDU,2
670
+ INFORMS Transactions on Education,,1532-0545,MDEV&EDU,2
671
+ Innovations in Education and Teaching International,1470-3297,1470-3300,MDEV&EDU,2
672
+ Issues in Accounting Education,0739-3172,1558-7983,MDEV&EDU,2
673
+ Journal of Accounting Education,0748-5751,1873-1996,MDEV&EDU,2
674
+ Journal of Education and Work,1363-9080,1469-9435,MDEV&EDU,2
675
+ Journal of Education Policy,0268-0939,1464-5106,MDEV&EDU,2
676
+ Journal of Higher Education,0022-1546,1538-4640,MDEV&EDU,2
677
+ Journal of International Business Education,1649-4946,2044-4575,MDEV&EDU,2
678
+ Journal of Management Education,1052-5629,1552-6658,MDEV&EDU,2
679
+ Journal of Marketing Education,0273-4753,1552-6550,MDEV&EDU,2
680
+ Management Teaching Review,2379-2981,2379-2981,MDEV&EDU,2
681
+ Teaching in Higher Education,1356-2517,1470-1294,MDEV&EDU,2
682
+ Action Learning: Research and Practice,1476-7333,1476-7341,MDEV&EDU,1
683
+ Active Learning in Higher Education,1469-7874,1741-2625,MDEV&EDU,1
684
+ Advances in Accounting Education: Teaching and Curriculum Innovations,1085-4622,,MDEV&EDU,1
685
+ Coaching,1752-1882,1752-1890,MDEV&EDU,1
686
+ Decision Sciences Journal of Innovative Education,1540-4595,1540-4609,MDEV&EDU,1
687
+ Education and Training,0040-0912,1758-6127,MDEV&EDU,1
688
+ Electronic Journal of e-Learning,,1479-4403,MDEV&EDU,1
689
+ European Journal of Training and Development,2046-9012,2046-9020,MDEV&EDU,1
690
+ "Higher Education, Skills and Work-based Learning",2042-3896,2042-390X,MDEV&EDU,1
691
+ Industry and Higher Education,0950-4222,2043-6858,MDEV&EDU,1
692
+ International Journal of Evidence Based Coaching and Mentoring,1741-8305,1741-8305,MDEV&EDU,1
693
+ International Journal of Innovation and Learning,1471-8197,1741-8089,MDEV&EDU,1
694
+ International Journal of Knowledge and Learning,1741-1009,1741-1017,MDEV&EDU,1
695
+ International Journal of Learning and Change,1740-2875,1740-2883,MDEV&EDU,1
696
+ International Journal of Management Development,1752-8240,1752-850X,MDEV&EDU,1
697
+ International Journal of Management Education,1472-8117,2352-3565,MDEV&EDU,1
698
+ International Journal of Teaching and Case Studies ,1749-9151,1749-916X,MDEV&EDU,1
699
+ Journal for Advancement of Marketing Education,2326-3296,1537-5137,MDEV&EDU,1
700
+ Journal of Advertising Education,1098-0482,2516-1873,MDEV&EDU,1
701
+ Journal of Business Ethics Education,1649-5195,2044-4559,MDEV&EDU,1
702
+ Journal of Educational Administration,0957-8234,1758-7395,MDEV&EDU,1
703
+ Journal of Further and Higher Education,0309-877X,1469-9486,MDEV&EDU,1
704
+ Journal of Higher Education Policy and Management,1360-080X,1469-9508,MDEV&EDU,1
705
+ Journal of International Education in Business,2046-469X,1836-3261,MDEV&EDU,1
706
+ Journal of Management Development,0262-1711,1758-7492,MDEV&EDU,1
707
+ Journal of Organizational Behavior Education,1649-7627,2047-9999,MDEV&EDU,1
708
+ Journal of Vocational Education and Training,1363-6820,1747-5090,MDEV&EDU,1
709
+ Journal of Workplace Learning,1366-5626,1758-7859,MDEV&EDU,1
710
+ Marketing Education Review,1052-8008,2153-9987,MDEV&EDU,1
711
+ Operations Management Education Review,1649-7082,2044-4567,MDEV&EDU,1
712
+ Quality Assurance in Education,0968-4883,1758-7662,MDEV&EDU,1
713
+ Tertiary Education and Management,1358-3883,1573-1936,MDEV&EDU,1
714
+ The Journal of Research in Innovative Teaching & Learning,2397-7604,2397-7604,MDEV&EDU,1
715
+ Journal of Consumer Psychology,1057-7408,1532-7663,MKT,4*
716
+ Journal of Consumer Research,0093-5301,1537-5277,MKT,4*
717
+ Journal of Marketing,0022-2429,1547-7185,MKT,4*
718
+ Journal of Marketing Research,0022-2437,1547-7193,MKT,4*
719
+ Journal of the Academy of Marketing Science,0092-0703,1552-7824,MKT,4*
720
+ Marketing Science,0732-2399,1526-548X,MKT,4*
721
+ International Journal of Research in Marketing,0167-8116,1873-8001,MKT,4
722
+ Journal of Retailing,0022-4359,1873-3271,MKT,4
723
+ European Journal of Marketing,0309-0566,1758-7123,MKT,3
724
+ Industrial Marketing Management,0019-8501,1873-2062,MKT,3
725
+ International Marketing Review,0265-1335,1758-6763,MKT,3
726
+ Journal of Advertising,0091-3367,1557-7805,MKT,3
727
+ Journal of Advertising Research,0021-8499,1740-1909,MKT,3
728
+ Journal of Interactive Marketing,1094-9968,1520-6653,MKT,3
729
+ Journal of International Marketing,1069-031X,1547-7215,MKT,3
730
+ Journal of Public Policy and Marketing,0743-9156,1547-7207,MKT,3
731
+ Marketing Letters,0923-0645,1573-059X,MKT,3
732
+ Marketing Theory,1470-5931,1741-301X,MKT,3
733
+ Psychology and Marketing,0742-6046,1520-6793,MKT,3
734
+ Quantitative Marketing and Economics,1570-7156,1573-711X,MKT,3
735
+ Academy of Marketing Science Review,1869-814X,1869-8182,MKT,2
736
+ Advances in Consumer Research,0098-9258,,MKT,2
737
+ Consumption Markets and Culture,1025-3866,1477-223X,MKT,2
738
+ Electronic Markets,1019-6781,1422-8890,MKT,2
739
+ International Journal of Advertising,0265-0487,1759-3948,MKT,2
740
+ International Journal of Consumer Studies,1470-6423,1470-6431,MKT,2
741
+ International Journal of Market Research,1470-7853,2515-2173,MKT,2
742
+ International Journal of Retail and Distribution Management,0959-0552,1758-6690,MKT,2
743
+ Journal of Brand Management,1350-231X,1479-1803,MKT,2
744
+ Journal of Business and Industrial Marketing,0885-8624,2052-1189,MKT,2
745
+ Journal of Consumer Behaviour,1472-0817,1479-1838,MKT,2
746
+ Journal of Macromarketing,0276-1467,1552-6534,MKT,2
747
+ Journal of Marketing Management,0267-257X,1472-1376,MKT,2
748
+ Journal of Personal Selling and Sales Management,0885-3134,1557-7813,MKT,2
749
+ Journal of Retailing and Consumer Services,0969-6989,1873-1384,MKT,2
750
+ Journal of Services Marketing,0887-6045,0887-6045,MKT,2
751
+ Journal of Strategic Marketing,0965-254X,1466-4488,MKT,2
752
+ Journal of the Association for Consumer Research,2378-1815,2378-1823,MKT,2
753
+ Qualitative Market Research,1352-2752,1758-7646,MKT,2
754
+ Asia Pacific Journal of Marketing and Logistics,1355-5855,1758-4248,MKT,1
755
+ Australasian Marketing Journal,1441-3582,1839-3349,MKT,1
756
+ Corporate Communications,1356-3289,1758-6046,MKT,1
757
+ Corporate Reputation Review,1363-3589,1479-1889,MKT,1
758
+ Health Marketing Quarterly,0735-9683,1545-0864,MKT,1
759
+ International Journal of Bank Marketing,0265-2323,1758-5937,MKT,1
760
+ International Journal of Internet Marketing and Advertising,1477-5212,1741-8100,MKT,1
761
+ International Journal of Pharmaceutical and Healthcare Marketing,1750-6123,1750-6131,MKT,1
762
+ International Journal of Technology Marketing,1741-878X,1741-8798,MKT,1
763
+ "International Review of Retail, Distribution and Consumer Research",0959-3969,1466-4402,MKT,1
764
+ International Review on Public and Non-Profit Marketing,,1865-1992,MKT,1
765
+ Journal of Business-to-Business Marketing,1051-712X,1547-0628,MKT,1
766
+ Journal of Communication Management,1363-254X,1478-0852,MKT,1
767
+ Journal of Consumer Affairs,0022-0078,1745-6606,MKT,1
768
+ Journal of Consumer Marketing,0736-3761,2052-1200,MKT,1
769
+ Journal of Current Issues and Research in Advertising,1064-1734,2164-7313,MKT,1
770
+ Journal of Fashion Marketing and Management,1361-2026,1758-7433,MKT,1
771
+ Journal of Financial Services Marketing,1363-0539,1479-1846,MKT,1
772
+ Journal of Global Fashion Marketing,2093-2685,2325-4483,MKT,1
773
+ Journal of Global Marketing,0891-1762,1528-6975,MKT,1
774
+ Journal of Interactive Advertising,,1525-2019,MKT,1
775
+ Journal of International Consumer Marketing,0896-1530,1528-7068,MKT,1
776
+ Journal of Marketing Analytics,2050-3326,2050-3318,MKT,1
777
+ Journal of Marketing Communications,1352-7266,1466-4445,MKT,1
778
+ Journal of Marketing for Higher Education,0884-1241,1540-7144,MKT,1
779
+ Journal of Marketing Theory and Practice,1069-6679,1944-7175,MKT,1
780
+ Journal of Non-Profit and Public Sector Marketing,1049-5142,1540-6997,MKT,1
781
+ Journal of Philanthropy and Marketing,,2691-1361,MKT,1
782
+ Journal of Product and Brand Management,1061-0421,2054-1643,MKT,1
783
+ Journal of Relationship Marketing,1533-2667,1533-2675,MKT,1
784
+ Journal of Research in Interactive Marketing,2040-7122,2040-7130,MKT,1
785
+ Journal of Social Marketing,2042-6763,2042-6771,MKT,1
786
+ Marketing Intelligence and Planning,0263-4503,1758-8049,MKT,1
787
+ Recherche et Applications en Marketing ,2051-5707,2051-5707,MKT,1
788
+ Review of Marketing Science,,1546-5616,MKT,1
789
+ Services Marketing Quarterly,1533-2969,1533-2977,MKT,1
790
+ Social Marketing Quarterly,1524-5004,1539-4093,MKT,1
791
+ Spanish Journal of Marketing - ESIC,2444-9695,2444-9709,MKT,1
792
+ Young Consumers,1747-3616,1758-7212,MKT,1
793
+ Journal of Operations Management,0272-6963,1873-1317,OPS&TECH,4*
794
+ International Journal of Operations and Production Management,0144-3577,1758-6593,OPS&TECH,4
795
+ Journal of Supply Chain Management,1523-2409,1745-493X,OPS&TECH,4
796
+ Production and Operations Management,1059-1478,1937-5956,OPS&TECH,4
797
+ Computers in Industry,0166-3615,1872-6194,OPS&TECH,3
798
+ IEEE Transactions on Engineering Management,0018-9391,1558-0040,OPS&TECH,3
799
+ International Journal of Production Economics,0925-5273,1873-7579,OPS&TECH,3
800
+ International Journal of Production Research,0020-7543,1366-588X,OPS&TECH,3
801
+ Journal of Business Logistics,0735-3766,2158-1592,OPS&TECH,3
802
+ Journal of Purchasing and Supply Management,1478-4092,1873-6505,OPS&TECH,3
803
+ Manufacturing and Service Operations Management,1523-4614,1526-5498,OPS&TECH,3
804
+ Production Planning and Control,0953-7287,1366-5871,OPS&TECH,3
805
+ Supply Chain Management,1359-8546,1758-6852,OPS&TECH,3
806
+ Business Process Management Journal,1463-7154,1758-4116,OPS&TECH,2
807
+ Computers and Industrial Engineering,0360-8352,1879-0550,OPS&TECH,2
808
+ International Journal of Computer Integrated Manufacturing,0951-192X,1362-3052,OPS&TECH,2
809
+ International Journal of Physical Distribution and Logistics Management,0960-0035,1758-664X,OPS&TECH,2
810
+ International Journal of Project Management,0263-7863,1873-4634,OPS&TECH,2
811
+ International Journal of Quality and Reliability Management,0265-671X,0265-671X,OPS&TECH,2
812
+ International Journal of Technology Management,0267-5730,1741-5276,OPS&TECH,2
813
+ Journal of Construction Engineering and Management - ASCE,0733-9364,1943-7862,OPS&TECH,2
814
+ Total Quality Management and Business Excellence,1478-3363,1478-3371,OPS&TECH,2
815
+ Benchmarking,1463-5771,1463-5771,OPS&TECH,1
816
+ Concurrent Engineering Research and Applications,1063-293X,1531-2003,OPS&TECH,1
817
+ Flexible Services and Manufacturing Journal,1936-6582,1936-6590,OPS&TECH,1
818
+ "Foundations and Trends in Technology, Information and Operations Management",1571-9545,,OPS&TECH,1
819
+ International Journal of Agile Systems and Management,1741-9174,1741-9182,OPS&TECH,1
820
+ International Journal of Business Performance and Supply Chain Modelling,1758-9401,1758-941X,OPS&TECH,1
821
+ International Journal of Business Performance Management,1368-4892,1741-5039,OPS&TECH,1
822
+ International Journal of Construction Management,1562-3599,2331-2327,OPS&TECH,1
823
+ International Journal of Engineering Business Management,1847-9790,1847-9790,OPS&TECH,1
824
+ International Journal of Enterprise Network Management,1748-1252,1748-1260,OPS&TECH,1
825
+ International Journal of Industrial and Systems Engineering,1748-5037,1748-5045,OPS&TECH,1
826
+ International Journal of Industrial Engineering and Management,2217-2661,2683-345X,OPS&TECH,1
827
+ International Journal of Information Systems and Supply Chain Management,1935-5726,1935-5734,OPS&TECH,1
828
+ International Journal of Integrated Supply Management,1477-5360,1741-8097,OPS&TECH,1
829
+ International Journal of Internet Manufacturing and Services,1751-6048,1751-6056,OPS&TECH,1
830
+ International Journal of Lean Six Sigma,2040-4166,2040-4174,OPS&TECH,1
831
+ International Journal of Logistics Management,0957-4093,1758-6550,OPS&TECH,1
832
+ International Journal of Logistics Research and Applications,1367-5567,1469-848X,OPS&TECH,1
833
+ International Journal of Logistics Systems and Management,1742-7967,1742-7975,OPS&TECH,1
834
+ International Journal of Manufacturing Technology and Management,1368-2148,1741-5195,OPS&TECH,1
835
+ International Journal of Process Management and Benchmarking,1460-6739,1741-816X,OPS&TECH,1
836
+ International Journal of Procurement Management,1753-8432,1753-8440,OPS&TECH,1
837
+ International Journal of Productivity and Performance Management,1741-0401,1741-0401,OPS&TECH,1
838
+ International Journal of Productivity and Quality Management,1746-6474,1746-6482,OPS&TECH,1
839
+ International Journal of Quality and Service Sciences,1756-669X,1756-6703,OPS&TECH,1
840
+ International Journal of Services and Operations Management,1744-2370,1744-2389,OPS&TECH,1
841
+ International Journal of Services Operations and Informatics,1741-539X,1741-5403,OPS&TECH,1
842
+ International Journal of Shipping and Transport Logistics,1756-6517,1756-6525,OPS&TECH,1
843
+ International Journal of Six Sigma and Competitive Advantage,1479-2494,1479-2753,OPS&TECH,1
844
+ International Journal of Value Chain Management,1741-5357,1741-5365,OPS&TECH,1
845
+ Journal of Global Operations and Strategic Sourcing,2398-5364,2398-5364,OPS&TECH,1
846
+ Journal of Humanitarian Logistics and Supply Chain Management,2042-6747,2042-6755,OPS&TECH,1
847
+ Journal of Intelligent Manufacturing,0956-5515,1572-8145,OPS&TECH,1
848
+ Journal of Manufacturing Systems,0278-6125,1878-6642,OPS&TECH,1
849
+ Journal of Manufacturing Technology Management,1741-038X,1758-7786,OPS&TECH,1
850
+ Journal of Public Procurement,1535-0118,2150-6930,OPS&TECH,1
851
+ Journal of Quality in Maintenance Engineering,1355-2511,1355-2511,OPS&TECH,1
852
+ Journal of Scheduling,1094-6136,1099-1425,OPS&TECH,1
853
+ Journal of Service Theory and Practice,2055-6225,2055-6225,OPS&TECH,1
854
+ Journal of Transport and Supply Chain Management,2310-8789,1995-5235,OPS&TECH,1
855
+ Knowledge and Process Management,1092-4604,1099-1441,OPS&TECH,1
856
+ Operations Management Research,1936-9735,1936-9743,OPS&TECH,1
857
+ "Proceedings of the Institution of Mechanical Engineers, Part B: Journal of Engineering Manufacture",0954-4054,2041-2975,OPS&TECH,1
858
+ Production & Manufacturing Research,,2169-3277,OPS&TECH,1
859
+ Project Management Journal,8756-9728,1938-9507,OPS&TECH,1
860
+ Quality and Reliability Engineering International,0748-8017,1099-1638,OPS&TECH,1
861
+ Quality Innovation Prosperity,1335-1745,1338-984X,OPS&TECH,1
862
+ Quality Progress,0033-524X,,OPS&TECH,1
863
+ Service Science,2164-3962,2164-3970,OPS&TECH,1
864
+ Supply Chain Forum,1625-8312,1624-6039,OPS&TECH,1
865
+ TQM Journal,1754-2731,1754-2731,OPS&TECH,1
866
+ World Review of Intermodal Transportation Research,1749-4729,1749-4737,OPS&TECH,1
867
+ Management Science,0025-1909,1526-5501,OR&MANSCI,4*
868
+ Operations Research,0030-364X,1526-5463,OR&MANSCI,4*
869
+ European Journal of Operational Research,0377-2217,1872-6860,OR&MANSCI,4
870
+ IEEE Transactions on Evolutionary Computation,1089-778X,1941-0026,OR&MANSCI,4
871
+ Mathematical Programming,0025-5610,1436-4646,OR&MANSCI,4
872
+ ACM Transactions on Modeling and Computer Simulation,1049-3301,1558-1195,OR&MANSCI,3
873
+ Annals of Operations Research,0254-5330,1572-9338,OR&MANSCI,3
874
+ Computational Optimization and Applications,0926-6003,1573-2894,OR&MANSCI,3
875
+ Computers and Operations Research,0305-0548,1873-765X,OR&MANSCI,3
876
+ Decision Sciences,0011-7315,1540-5915,OR&MANSCI,3
877
+ Evolutionary Computation,1063-6560,1530-9304,OR&MANSCI,3
878
+ Fuzzy Optimization and Decision Making,1568-4539,1573-2908,OR&MANSCI,3
879
+ IEEE Transactions on Cybernetics,2168-2267,2168-2275,OR&MANSCI,3
880
+ "IEEE Transactions on Systems, Man, and Cybernetics: Systems",2168-2216,2168-2232,OR&MANSCI,3
881
+ IISE Transactions,2472-5854,2472-5862,OR&MANSCI,3
882
+ INFORMS Journal on Computing,1091-9856,1526-5528,OR&MANSCI,3
883
+ International Journal of Forecasting,0169-2070,1872-8200,OR&MANSCI,3
884
+ Journal of Heuristics,1381-1231,1572-9397,OR&MANSCI,3
885
+ Journal of Optimization Theory and Applications,0022-3239,1573-2878,OR&MANSCI,3
886
+ Journal of the Operational Research Society,0160-5682,1476-9360,OR&MANSCI,3
887
+ Mathematics of Operations Research,0364-765X,1526-5471,OR&MANSCI,3
888
+ Naval Research Logistics,0894-069X,1520-6750,OR&MANSCI,3
889
+ Omega,0305-0483,1873-5274,OR&MANSCI,3
890
+ OR Spectrum,0171-6468,1436-6304,OR&MANSCI,3
891
+ Reliability Engineering and System Safety,0951-8320,1879-0836,OR&MANSCI,3
892
+ SIAM Journal on Optimization,1052-6234,1095-7189,OR&MANSCI,3
893
+ Transportation Science,0041-1655,1526-5447,OR&MANSCI,3
894
+ 4OR,1619-4500,1614-2411,OR&MANSCI,2
895
+ Discrete Applied Mathematics,0166-218X,1872-6771,OR&MANSCI,2
896
+ Discrete Optimization,1572-5286,1873-636X,OR&MANSCI,2
897
+ Engineering Optimization,0305-215X,1029-0273,OR&MANSCI,2
898
+ EURO Journal on Computational Optimization ,2192-4406,2192-4414,OR&MANSCI,2
899
+ EURO Journal on Transportation and Logistics,2192-4376,2192-4384,OR&MANSCI,2
900
+ European Journal of Industrial Engineering,1751-5254,1751-5262,OR&MANSCI,2
901
+ Group Decision and Negotiation,0926-2644,1572-9907,OR&MANSCI,2
902
+ IMA Journal of Management Mathematics,1471-678X,1471-6798,OR&MANSCI,2
903
+ INFORMS Journal on Applied Analytics,2644-0865 ,2644-0873,OR&MANSCI,2
904
+ International Journal of Systems Science: Operations & Logistics,2330-2674,2330-2682,OR&MANSCI,2
905
+ Journal of Combinatorial Optimization,1382-6905,1573-2886,OR&MANSCI,2
906
+ Journal of Forecasting,0277-6693,1099-131X,OR&MANSCI,2
907
+ Journal of Global Optimization,0925-5001,1573-2916,OR&MANSCI,2
908
+ Journal of Management Analytics,2327-0012,2327-0039,OR&MANSCI,2
909
+ Journal of Simulation,1747-7778,1747-7786,OR&MANSCI,2
910
+ Operations Research Letters,0167-6377,1872-7468,OR&MANSCI,2
911
+ Queueing Systems,0257-0130,1572-9443,OR&MANSCI,2
912
+ Simulation Modelling Practice and Theory,1569-190X,1878-1462,OR&MANSCI,2
913
+ Socio-Economic Planning Sciences,0038-0121,1873-6041,OR&MANSCI,2
914
+ System Dynamics Review,0883-7066,1099-1727,OR&MANSCI,2
915
+ Systems Research and Behavioral Science,1092-7026,1099-1743,OR&MANSCI,2
916
+ Theory and Decision,0040-5833,1573-7187,OR&MANSCI,2
917
+ Asia-Pacific Journal of Operational Research,0217-5959,1793-7019,OR&MANSCI,1
918
+ Central European Journal of Operations Research,1435-246X,1613-9178,OR&MANSCI,1
919
+ Computational Management Science,1619-697X,1619-6988,OR&MANSCI,1
920
+ Cybernetics and Systems,0196-9722,1087-6553,OR&MANSCI,1
921
+ Decision Analysis,1545-8490,1545-8504,OR&MANSCI,1
922
+ EURO Journal on Decision Processes ,,2193-9446,OR&MANSCI,1
923
+ INFOR: Information Systems and Operational Research,0315-5986,1916-0615,OR&MANSCI,1
924
+ International Journal of Applied Decision Sciences,1755-8077,1755-8085,OR&MANSCI,1
925
+ International Journal of General Systems,0308-1079,1563-5104,OR&MANSCI,1
926
+ International Journal of Mathematics in Operational Research,1757-5850,1757-5869,OR&MANSCI,1
927
+ International Journal of Operational Research,1745-7645,1745-7653,OR&MANSCI,1
928
+ International Journal of Operations and Quantitative Management,1082-1910,,OR&MANSCI,1
929
+ International Transactions in Operational Research,0969-6016,1475-3995,OR&MANSCI,1
930
+ Journal of Business Analytics,2573-234X,2573-2358,OR&MANSCI,1
931
+ Journal of Industrial and Management Optimization,1547-5816,1553-166X,OR&MANSCI,1
932
+ Journal of Modelling in Management,1746-5664,1746-5672,OR&MANSCI,1
933
+ Journal of Multi-Criteria Decision Analysis,1057-9214,1099-1360,OR&MANSCI,1
934
+ Kybernetes,0368-492X,1758-7883,OR&MANSCI,1
935
+ Mathematical Methods of Operations Research,1432-2994,1432-5217,OR&MANSCI,1
936
+ Operational Research,1109-2858,1866-1505,OR&MANSCI,1
937
+ OPSEARCH,0030-3887,0975-0320,OR&MANSCI,1
938
+ Optimization,0233-1934,1029-4945,OR&MANSCI,1
939
+ Pacific Journal of Optimization ,1348-9151,1349-8169,OR&MANSCI,1
940
+ Pesquisa Operacional,0101-7438,1678-5142,OR&MANSCI,1
941
+ RAIRO - Operations Research,0399-0559,1290-3868,OR&MANSCI,1
942
+ SIMULATION: Transactions of The Society for Modeling and Simulation International,0037-5497,1741-3133,OR&MANSCI,1
943
+ TOP,1134-5764,1863-8279,OR&MANSCI,1
944
+ Organization Science,1047-7039,1526-5455,ORG STUD,4*
945
+ Human Relations,0018-7267,1741-282X,ORG STUD,4
946
+ Leadership Quarterly,1048-9843,1873-3409,ORG STUD,4
947
+ Organization Studies,0170-8406,1741-3044,ORG STUD,4
948
+ Organizational Research Methods,1094-4281,1552-7425,ORG STUD,4
949
+ Group and Organization Management,1059-6011,1552-3993,ORG STUD,3
950
+ Organization,1350-5084,1461-7323,ORG STUD,3
951
+ Organization and Environment,1086-0266,1552-7417,ORG STUD,3
952
+ Organizational Dynamics,0090-2616,1873-3530,ORG STUD,3
953
+ Research in Organizational Behavior,0191-3085,2468-1741,ORG STUD,3
954
+ Research in the Sociology of Organizations,0733-558X,,ORG STUD,3
955
+ Culture and Organization,1475-9551,1477-2760,ORG STUD,2
956
+ Group Processes and Intergroup Relations,1368-4302,1461-7188,ORG STUD,2
957
+ Journal of Co-operative Organization and Management,2213-297X,2213-2988,ORG STUD,2
958
+ Journal of Knowledge Management,1367-3270,1758-7484,ORG STUD,2
959
+ Journal of Organizational Behavior Management,0160-8061,1540-8604,ORG STUD,2
960
+ Journal of Organizational Change Management,0953-4814,1758-7816,ORG STUD,2
961
+ Journal of Professions and Organization,2051-8803,2051-8811,ORG STUD,2
962
+ Leadership,1742-7150,1742-7169,ORG STUD,2
963
+ Management Communication Quarterly,0893-3189,1552-6798,ORG STUD,2
964
+ Negotiation Journal,0748-4526,1571-9979,ORG STUD,2
965
+ Symbolic Interaction,0195-6086,1533-8665,ORG STUD,2
966
+ Systemic Practice and Action Research,1094-429X,1573-9295,ORG STUD,2
967
+ The Journal of Applied Behavioral Science,0021-8863,1552-6879,ORG STUD,2
968
+ Action Research,1476-7503,1741-2617,ORG STUD,1
969
+ Computational and Mathematical Organization Theory,1381-298X,1572-9346,ORG STUD,1
970
+ Ephemera: Critical Dialogues on Organization,2052-1499,1473-2866,ORG STUD,1
971
+ International Journal of Knowledge Management Studies,1743-8268,1743-8276,ORG STUD,1
972
+ International Journal of Organization Theory and Behavior,1093-4537,1532-4273,ORG STUD,1
973
+ International Journal of Organizational Analysis,1934-8835,,ORG STUD,1
974
+ International Journal of Project Organisation and Management,1740-2891,1740-2905,ORG STUD,1
975
+ Journal of Organizational Ethnography,2046-6749,2046-6757,ORG STUD,1
976
+ Leadership and Organization Development Journal,0143-7739,1472-5347,ORG STUD,1
977
+ Learning Organization,0969-6474,0969-6474,ORG STUD,1
978
+ Network Science,2050-1242,2050-1250,ORG STUD,1
979
+ Organizations and Markets in Emerging Economies,2029-4581,2345-0037,ORG STUD,1
980
+ Qualitative Research in Organizations and Management,1746-5648,1746-5656,ORG STUD,1
981
+ Tamara: Journal for Critical Organization Inquiry,,1532-5555,ORG STUD,1
982
+ Psychological Science,0956-7976,1467-9280,PSYCH (GENERAL),4*
983
+ Annual Review of Psychology,0066-4308,1545-2085,PSYCH (GENERAL),4
984
+ Behavioral and Brain Sciences,0140-525X,1469-1825,PSYCH (GENERAL),4
985
+ Cognition,0010-0277,1873-7838,PSYCH (GENERAL),4
986
+ Current Directions in Psychological Science,0963-7214,1467-8721,PSYCH (GENERAL),4
987
+ Journal of Experimental Psychology: Applied,1076-898X,1939-2192,PSYCH (GENERAL),4
988
+ Journal of Experimental Psychology: General,0096-3445,1939-2222,PSYCH (GENERAL),4
989
+ Journal of Experimental Social Psychology,0022-1031,1096-0465,PSYCH (GENERAL),4
990
+ Journal of Personality and Social Psychology,0022-3514,1939-1315,PSYCH (GENERAL),4
991
+ Nature Human Behaviour,,2397-3374,PSYCH (GENERAL),4
992
+ Personality and Social Psychology Bulletin,0146-1672,1552-7433,PSYCH (GENERAL),4
993
+ Psychological Bulletin,0033-2909,1939-1455,PSYCH (GENERAL),4
994
+ Psychological Review,0033-295X,1939-1471,PSYCH (GENERAL),4
995
+ British Journal of Psychology,0007-1269,2044-8295,PSYCH (GENERAL),3
996
+ British Journal of Social Psychology,0144-6665,2044-8309,PSYCH (GENERAL),3
997
+ Cognitive Science,0364-0213,1551-6709,PSYCH (GENERAL),3
998
+ European Journal of Social Psychology,0046-2772,1099-0992,PSYCH (GENERAL),3
999
+ Journal of Behavioral Decision Making,0894-3257,1099-0771,PSYCH (GENERAL),3
1000
+ Journal of Conflict Resolution,0022-0027,1552-8766,PSYCH (GENERAL),3
1001
+ Journal of Cross-Cultural Psychology,0022-0221,1552-5422,PSYCH (GENERAL),3
1002
+ Journal of Environmental Psychology,0272-4944,1522-9610,PSYCH (GENERAL),3
1003
+ Journal of Experimental Psychology: Learning Memory and Cognition,0278-7393,1939-1285,PSYCH (GENERAL),3
1004
+ Journal of Mathematical Psychology,0022-2496,1096-0880,PSYCH (GENERAL),3
1005
+ Journal of Personality,0022-3506,1467-6494,PSYCH (GENERAL),3
1006
+ Judgment and Decision Making,1930-2975,1930-2975,PSYCH (GENERAL),3
1007
+ Personality and Individual Differences,0191-8869,1873-3549,PSYCH (GENERAL),3
1008
+ Psychological Research,0340-0727,1430-2772,PSYCH (GENERAL),3
1009
+ Psychology of Women Quarterly,0361-6843,1471-6402,PSYCH (GENERAL),3
1010
+ Psychometrika,0033-3123,1860-0980,PSYCH (GENERAL),3
1011
+ Quarterly Journal of Experimental Psychology,1747-0218,1747-0226,PSYCH (GENERAL),3
1012
+ Social Psychological and Personality Science,1948-5506,1948-5514,PSYCH (GENERAL),3
1013
+ Stress and Health,1532-2998,1532-3005,PSYCH (GENERAL),3
1014
+ Advances in Methods and Practices in Psychological Science (AMPPS),2515-2459,2515-2467,PSYCH (GENERAL),2
1015
+ Applied Cognitive Psychology,0888-4080,1099-0720,PSYCH (GENERAL),2
1016
+ Cognitive Research: Principles and Implications,,2365-7464,PSYCH (GENERAL),2
1017
+ Collabra: Psychology,,2474-7394,PSYCH (GENERAL),2
1018
+ Creativity Research Journal,1040-0419,1532-6934,PSYCH (GENERAL),2
1019
+ Decision,2325-9965,2325-9973,PSYCH (GENERAL),2
1020
+ European Journal of Psychological Assessment,1015-5759,2151-2426,PSYCH (GENERAL),2
1021
+ Journal of Cognitive Engineering and Decision Making,1555-3434,2169-5032,PSYCH (GENERAL),2
1022
+ Journal of Community Psychology,0090-4392,1520-6629,PSYCH (GENERAL),2
1023
+ Journal of Economic Psychology,0167-4870,1872-7719,PSYCH (GENERAL),2
1024
+ Journal of Language and Social Psychology,0261-927X,1552-6526,PSYCH (GENERAL),2
1025
+ Journal of Nonverbal Behavior,0191-5886,1573-3653,PSYCH (GENERAL),2
1026
+ Scandinavian Journal of Psychology,0036-5564,1467-9450,PSYCH (GENERAL),2
1027
+ Zeitschrift fur Psychologie / Journal of Psychology,2190-8370,2151-2604,PSYCH (GENERAL),2
1028
+ American Behavioral Scientist,0002-7642,1552-3381,PSYCH (GENERAL),1
1029
+ American Journal of Psychology,0002-9556,1939-8298,PSYCH (GENERAL),1
1030
+ Australian Journal of Psychology,0004-9530,1742-9536,PSYCH (GENERAL),1
1031
+ Basic and Applied Social Psychology,0197-3533,1532-4834,PSYCH (GENERAL),1
1032
+ Canadian Journal of Behavioural Science,0008-400X,1879-2669,PSYCH (GENERAL),1
1033
+ Canadian Psychology,0708-5591,1878-7304,PSYCH (GENERAL),1
1034
+ Current Psychology,1046-1310,1936-4733,PSYCH (GENERAL),1
1035
+ European Journal of Psychology Open,,2673-8627,PSYCH (GENERAL),1
1036
+ European Psychologist,1016-9040,1878-531X,PSYCH (GENERAL),1
1037
+ International Journal of Intercultural Relations,0147-1767,1873-7552,PSYCH (GENERAL),1
1038
+ International Journal of Psychology,0020-7594,1464-066X,PSYCH (GENERAL),1
1039
+ Japanese Psychological Research,0021-5368,1468-5884,PSYCH (GENERAL),1
1040
+ Journal of Constructivist Psychology,1072-0537,1521-0650,PSYCH (GENERAL),1
1041
+ Journal of Happiness Studies,1389-4978,1573-7780,PSYCH (GENERAL),1
1042
+ Journal of Pacific Rim Psychology,1834-4909,1834-4909,PSYCH (GENERAL),1
1043
+ Journal of Positive Psychology,1743-9760,1743-9779,PSYCH (GENERAL),1
1044
+ Journal of Social Psychology,0022-4545,1940-1183,PSYCH (GENERAL),1
1045
+ Nordic Psychology,1901-2276,1904-0016,PSYCH (GENERAL),1
1046
+ Psicothema,0214-9915,1886-144X,PSYCH (GENERAL),1
1047
+ Psihologija,0048-5705,1451-9283,PSYCH (GENERAL),1
1048
+ Psychological Reports,0033-2941,1558-691X,PSYCH (GENERAL),1
1049
+ Psychologist,0952-8229,0952-8229,PSYCH (GENERAL),1
1050
+ Social Justice Research,0885-7466,1573-6725,PSYCH (GENERAL),1
1051
+ South African Journal of Psychology,0081-2463,2078-208X,PSYCH (GENERAL),1
1052
+ Spanish Journal of Psychology,1138-7416,1988-2904,PSYCH (GENERAL),1
1053
+ The Journal of Psychology,0022-3980,1940-1019,PSYCH (GENERAL),1
1054
+ Journal of Applied Psychology,0021-9010,1939-1854,PSYCH (WOP-OB),4*
1055
+ Personnel Psychology,0031-5826,1744-6570,PSYCH (WOP-OB),4*
1056
+ Journal of Occupational and Organizational Psychology,0963-1798,2044-8325,PSYCH (WOP-OB),4
1057
+ Journal of Occupational Health Psychology,1076-8998,1939-1307,PSYCH (WOP-OB),4
1058
+ Journal of Organizational Behavior,0894-3796,1099-1379,PSYCH (WOP-OB),4
1059
+ Journal of Vocational Behavior,0001-8791,1095-9084,PSYCH (WOP-OB),4
1060
+ Organizational Behavior and Human Decision Processes,0749-5978,1095-9920,PSYCH (WOP-OB),4
1061
+ Work and Stress,0267-8373,1464-5335,PSYCH (WOP-OB),4
1062
+ Accident Analysis and Prevention,0001-4575,1879-2057,PSYCH (WOP-OB),3
1063
+ Applied Ergonomics,0003-6870,1872-9126,PSYCH (WOP-OB),3
1064
+ Applied Psychology,0269-994X,1464-0597,PSYCH (WOP-OB),3
1065
+ Ergonomics,0014-0139,1366-5847,PSYCH (WOP-OB),3
1066
+ European Journal of Work and Organizational Psychology,1359-432X,1464-0643,PSYCH (WOP-OB),3
1067
+ Human Factors,0018-7208,1547-8181,PSYCH (WOP-OB),3
1068
+ Human Performance,0895-9285,1532-7043,PSYCH (WOP-OB),3
1069
+ International Journal of Rehabilitation Research,0342-5282,1473-5660,PSYCH (WOP-OB),3
1070
+ Journal of Business and Psychology,0889-3268,1573-353X,PSYCH (WOP-OB),3
1071
+ Journal of Managerial Psychology,0268-3946,1758-7778,PSYCH (WOP-OB),3
1072
+ Journal of School Psychology,0022-4405,1873-3506,PSYCH (WOP-OB),3
1073
+ Occupational and Environmental Medicine,1351-0711,1470-7926,PSYCH (WOP-OB),3
1074
+ "Scandinavian Journal of Work, Environment and Health",0355-3140,1795-990X,PSYCH (WOP-OB),3
1075
+ Applied Psychological Measurement,0146-6216,1552-3497,PSYCH (WOP-OB),2
1076
+ Applied Psychology: Health and Well-Being,1758-0846,1758-0854,PSYCH (WOP-OB),2
1077
+ "Cognition, Technology and Work",1435-5558,1435-5566,PSYCH (WOP-OB),2
1078
+ Group Dynamics,1089-2699,1930-7802,PSYCH (WOP-OB),2
1079
+ International Archives of Occupational and Environmental Health,0340-0131,1432-1246,PSYCH (WOP-OB),2
1080
+ International Journal of Industrial Ergonomics,0169-8141,1872-8219,PSYCH (WOP-OB),2
1081
+ International Journal of Selection and Assessment,0965-075X,1468-2389,PSYCH (WOP-OB),2
1082
+ International Journal of Stress Management,1072-5245,1573-3424,PSYCH (WOP-OB),2
1083
+ Journal of Applied Social Psychology,0021-9029,1559-1816,PSYCH (WOP-OB),2
1084
+ Journal of Career Assessment,1069-0727,1552-4590,PSYCH (WOP-OB),2
1085
+ Journal of Occupational and Environmental Medicine,1076-2752,1536-5948,PSYCH (WOP-OB),2
1086
+ Journal of Occupational Rehabilitation,1053-0487,1573-3688,PSYCH (WOP-OB),2
1087
+ Journal of Personnel Psychology,1866-5888,2190-5150,PSYCH (WOP-OB),2
1088
+ Journal of Safety Research,0022-4375,1879-1247,PSYCH (WOP-OB),2
1089
+ Organizational Psychology Review,2041-3866,2041-3874,PSYCH (WOP-OB),2
1090
+ Rehabilitation Psychology,0090-5550,1939-1544,PSYCH (WOP-OB),2
1091
+ Small Group Research,1046-4964,1552-8278,PSYCH (WOP-OB),2
1092
+ "Community, Work and Family",1366-8803,1469-3615,PSYCH (WOP-OB),1
1093
+ Disability and Rehabilitation,0963-8288,1464-5165,PSYCH (WOP-OB),1
1094
+ European Work and Organizational Psychology in practice,,1736-6399,PSYCH (WOP-OB),1
1095
+ Gedrag en Organisatie,0921-5077,1875-7235,PSYCH (WOP-OB),1
1096
+ Human Factors and Ergonomics In Manufacturing,1090-8471,1520-6564,PSYCH (WOP-OB),1
1097
+ IISE Transactions on Occupational Ergonomics and Human Factors,2472-5838,2472-5846,PSYCH (WOP-OB),1
1098
+ Industrial and Organizational Psychology,1754-9426,1754-9434,PSYCH (WOP-OB),1
1099
+ International Coaching Psychology Review,1750-2764,2396-8753,PSYCH (WOP-OB),1
1100
+ International Journal for Educational and Vocational Guidance,1873-0388,1573-1782,PSYCH (WOP-OB),1
1101
+ International Journal of Occupational Safety and Ergonomics,1080-3548,2376-9130,PSYCH (WOP-OB),1
1102
+ Cliometrica,1863-2505,1863-2513,BUS HIST & ECON HIST,2
1103
+ Economic History of Developing Regions,2078-0389,2078-0397,BUS HIST & ECON HIST,2
1104
+ Entreprises et Histoire,1161-2770,2100-9864,BUS HIST & ECON HIST,2
1105
+ Essays in Economic and Business History,,2376-9459,BUS HIST & ECON HIST,2
1106
+ European Journal of the History of Economic Thought,0967-2567,1469-5936,BUS HIST & ECON HIST,2
1107
+ Financial History Review,0968-5650,1474-0052,BUS HIST & ECON HIST,2
1108
+ Journal of the History of Economic Thought,1053-8372,1469-9656,BUS HIST & ECON HIST,2
1109
+ Journal of Transport History,0022-5266,1759-3999,BUS HIST & ECON HIST,2
1110
+ Labor History,0023-656X,1469-9702,BUS HIST & ECON HIST,2
1111
+ Management and Organizational History,1744-9359,1744-9367,BUS HIST & ECON HIST,2
1112
+ Historical Studies in Industrial Relations,1362-1572,2049-4459,BUS HIST & ECON HIST,1
1113
+ Irish Economic and Social History,0332-4893,2050-4918,BUS HIST & ECON HIST,1
1114
+ Journal of European Economic History,0391-5115,2499-8281,BUS HIST & ECON HIST,1
1115
+ Journal of Historical Research in Marketing,1755-750X,1755-7518,BUS HIST & ECON HIST,1
1116
+ Journal of Management History,1751-1348,1758-7751,BUS HIST & ECON HIST,1
1117
+ Revista de Historia Economica - Journal of Iberian and Latin American Economic History,0212-6109,2041-3335,BUS HIST & ECON HIST,1
1118
+ Scandinavian Economic History Review,0358-5522,1750-2837,BUS HIST & ECON HIST,1
1119
+ Zeitschrift für Unternehmensgeschichte,0342-2852,2367-2293,BUS HIST & ECON HIST,1
1120
+ American Economic Review,0002-8282,1944-7981,ECON,4*
1121
+ Annals of Statistics,0090-5364,2168-8966,ECON,4*
1122
+ Econometrica,0012-9682,1468-0262,ECON,4*
1123
+ Journal of Political Economy,0022-3808,1537-534X,ECON,4*
1124
+ Quarterly Journal of Economics,0033-5533,1531-4650,ECON,4*
1125
+ Review of Economic Studies,0034-6527,1467-937X,ECON,4*
1126
+ American Economic Journal: Applied Economics,1945-7782,1945-7790,ECON,4
1127
+ American Economic Journal: Macroeconomics,1945-7707,1945-7715,ECON,4
1128
+ Biometrika,0006-3444,1464-3510,ECON,4
1129
+ Econometric Theory,0266-4666,1469-4360,ECON,4
1130
+ Economic Journal,0013-0133,1468-0297,ECON,4
1131
+ International Economic Review,0020-6598,1468-2354,ECON,4
1132
+ Journal of Business and Economic Statistics,0735-0015,1537-2707,ECON,4
1133
+ Journal of Econometrics,0304-4076,1872-6895,ECON,4
1134
+ Journal of Economic Literature,0022-0515,2328-8175,ECON,4
1135
+ Journal of Economic Perspectives,0895-3309,1944-7965,ECON,4
1136
+ Journal of Economic Theory,0022-0531,1095-7235,ECON,4
1137
+ Journal of International Economics,0022-1996,1873-0353,ECON,4
1138
+ Journal of Labor Economics,0734-306X,1537-5307,ECON,4
1139
+ Journal of Monetary Economics,0304-3932,1873-1295,ECON,4
1140
+ Journal of the American Statistical Association,0162-1459,1537-274X,ECON,4
1141
+ Journal of the European Economic Association,1542-4774,1542-4766,ECON,4
1142
+ Journal of the Royal Statistical Society. Series B: Statistical Methodology,1369-7412,1467-9868,ECON,4
1143
+ Quantitative Economics,1759-7323,1759-7331,ECON,4
1144
+ RAND Journal of Economics,0741-6261,1756-2171,ECON,4
1145
+ Review of Economics and Statistics,0034-6535,1530-9142,ECON,4
1146
+ Theoretical Economics,1933-6837,1555-7561,ECON,4
1147
+ American Economic Journal: Economic Policy,1945-7731,1945-774X,ECON,3
1148
+ American Economic Journal: Microeconomics,1945-7669,1945-7685,ECON,3
1149
+ American Economic Review: Insights,2640-205X ,2640-2068,ECON,3
1150
+ American Journal of Agricultural Economics,0002-9092,1467-8276,ECON,3
1151
+ Annual Review of Economics,1941-1383,1941-1391,ECON,3
1152
+ International Journal of Workplace Health Management,1753-8351,1753-836X,PSYCH (WOP-OB),1
1153
+ International Negotiation,1382-340X,1571-8069,PSYCH (WOP-OB),1
1154
+ Journal of Career Development,0894-8453,1573-3548,PSYCH (WOP-OB),1
1155
+ Journal of Employment Counseling,0022-0787,2161-1920,PSYCH (WOP-OB),1
1156
+ Journal of Rehabilitation,1607-2960,,PSYCH (WOP-OB),1
1157
+ Military Psychology,0899-5605,1532-7876,PSYCH (WOP-OB),1
1158
+ Occupational Medicine,0962-7480,1471-8405,PSYCH (WOP-OB),1
1159
+ Psychologie du Travail et des Organisations,1420-2530,1778-3631,PSYCH (WOP-OB),1
1160
+ Psychologist-Manager Journal,1088-7156,1550-3461,PSYCH (WOP-OB),1
1161
+ Rehabilitation Counseling Bulletin,0034-3552,1538-4853,PSYCH (WOP-OB),1
1162
+ Research in Occupational Stress and Well Being,1479-3555,,PSYCH (WOP-OB),1
1163
+ Revue Europeenne de Psychologie Appliquee,1162-9088,1878-3457,PSYCH (WOP-OB),1
1164
+ Social Work in Public Health,1937-1918,1937-190X,PSYCH (WOP-OB),1
1165
+ South African Journal of Industrial Psychology,0258-5200,2071-0763,PSYCH (WOP-OB),1
1166
+ "Sport, Exercise, and Performance Psychology",2157-3905,2157-3913,PSYCH (WOP-OB),1
1167
+ The International Journal of Aerospace Psychology,2472-1840,2472-1832,PSYCH (WOP-OB),1
1168
+ "TPM - Testing, Psychometrics, Methodology in Applied Psychology",1972-6325,,PSYCH (WOP-OB),1
1169
+ Work,1051-9815,1875-9270,PSYCH (WOP-OB),1
1170
+ Zeitschrift fur Arbeits- und Organisationspsychologie,0932-4089,2190-6270,PSYCH (WOP-OB),1
1171
+ Public Administration Review,0033-3352,1540-6210,PUB SEC,4*
1172
+ Governance,0952-1895,1468-0491,PUB SEC,4
1173
+ Journal of Public Administration Research and Theory,1053-1858,1477-9803,PUB SEC,4
1174
+ Public Administration,0033-3298,1467-9299,PUB SEC,4
1175
+ Public Management Review,1471-9037,1471-9045,PUB SEC,4
1176
+ American Review of Public Administration,0275-0740,1552-3357,PUB SEC,3
1177
+ Environment and Planning C: Politics and Space,2399-6544,2399-6552,PUB SEC,3
1178
+ Health Services Research,0017-9124,1475-6773,PUB SEC,3
1179
+ International Public Management Journal,1096-7494,1559-3169,PUB SEC,3
1180
+ International Review of Administrative Sciences,0020-8523,1461-7226,PUB SEC,3
1181
+ Journal of European Public Policy,1350-1763,1466-4429,PUB SEC,3
1182
+ Journal of Policy Analysis and Management,0276-8739,1520-6688,PUB SEC,3
1183
+ Milbank Quarterly,0887-378X,1468-0009,PUB SEC,3
1184
+ Policy and Politics,0305-5736,1470-8442,PUB SEC,3
1185
+ Policy Studies Journal,0190-292X,1541-0072,PUB SEC,3
1186
+ Regulation and Governance,1748-5983,1748-5991,PUB SEC,3
1187
+ Administration and Society,0095-3997,1552-3039,PUB SEC,2
1188
+ Australian Journal of Public Administration,0313-6647,1467-8500,PUB SEC,2
1189
+ Educational Management Administration and Leadership,1741-1432,1741-1440,PUB SEC,2
1190
+ Evidence and Policy,1744-2648,1744-2656,PUB SEC,2
1191
+ Health Care Management Review,0361-6274,1550-5030,PUB SEC,2
1192
+ Health Care Management Science,1386-9620,1572-9389,PUB SEC,2
1193
+ Health Policy,0168-8510,1872-6054,PUB SEC,2
1194
+ International Journal of Emergency Services,2047-0894,2047-0908,PUB SEC,2
1195
+ International Journal of Public Administration,0190-0692,1532-4265,PUB SEC,2
1196
+ Journal of Health Services Research and Policy,1355-8196,1758-1060,PUB SEC,2
1197
+ Journal of Public Policy ,0143-814X,1469-7815,PUB SEC,2
1198
+ Local Government Studies,0300-3930,1743-9388,PUB SEC,2
1199
+ Perspectives on Public Management & Governance,2398-4910,2398-4929,PUB SEC,2
1200
+ Policing,1363-951X,1758-695X,PUB SEC,2
1201
+ Policy Design and Practice,,2574-1292,PUB SEC,2
1202
+ Policy Studies,0144-2872,1470-1006,PUB SEC,2
1203
+ Public Administration and Development,0271-2075,1099-162X,PUB SEC,2
1204
+ Public Integrity,1099-9922,1558-0989,PUB SEC,2
1205
+ Public Money and Management,0954-0962,1467-9302,PUB SEC,2
1206
+ Public Organization Review,1566-7170,1573-7098,PUB SEC,2
1207
+ Public Performance & Management Review,1530-9576,1557-9271,PUB SEC,2
1208
+ Public Personnel Management,0091-0260,1945-7421,PUB SEC,2
1209
+ Public Policy and Administration,0952-0767,1749-4192,PUB SEC,2
1210
+ Review of Policy Research,1541-132X,1541-1338,PUB SEC,2
1211
+ Review of Public Personnel Administration,0734-371X,1552-759X,PUB SEC,2
1212
+ Social Policy and Administration,0144-5596,1467-9515,PUB SEC,2
1213
+ State Politics and Policy Quarterly,1532-4400,1946-1607,PUB SEC,2
1214
+ "Transforming Government: People, Process and Policy",1750-6166,1750-6166,PUB SEC,2
1215
+ Administrative Theory and Praxis,1084-1806,1949-0461,PUB SEC,1
1216
+ Asia and the Pacific Policy Studies,2050-2680,2050-2680,PUB SEC,1
1217
+ Asia Pacific Journal of Public Administration,2327-6665,2327-6673,PUB SEC,1
1218
+ Brazilian Journal of Public Administration (Revista de Administração Pública - RAP),0034-7612,1982-3134,PUB SEC,1
1219
+ British Journal of Health Care Management,1358-0574,1759-7382,PUB SEC,1
1220
+ Canadian Public Administration,0008-4840,1754-7121,PUB SEC,1
1221
+ Canadian Public Policy/Analyse de politiques,0317-0861,1911-9917,PUB SEC,1
1222
+ Health Services Management Research,0951-4848,1758-1044,PUB SEC,1
1223
+ International Journal of Educational Management,0951-354X,0951-354X,PUB SEC,1
1224
+ International Journal of Health Care Quality Assurance,0952-6862,0952-6862,PUB SEC,1
1225
+ International Journal of Health Governance,2059-4631,2059-464X,PUB SEC,1
1226
+ International Journal of Healthcare Technology and Management,1368-2156,1741-5144,PUB SEC,1
1227
+ International Journal of Public Leadership,2056-4929,2056-4937,PUB SEC,1
1228
+ International Journal of Public Sector Management,0951-3558,0951-3558,PUB SEC,1
1229
+ International Review of Public Administration,1229-4659,2331-7795,PUB SEC,1
1230
+ Journal of Asian Public Policy,1751-6234,1751-6242,PUB SEC,1
1231
+ Journal of Comparative Policy Analysis,1387-6988,1572-5448,PUB SEC,1
1232
+ Journal of Health Organization and Management,1477-7266,1758-7247,PUB SEC,1
1233
+ Journal of Public Affairs,1472-3891,1479-1854,PUB SEC,1
1234
+ Journal of Public Affairs Education,1523-6803,2328-9643,PUB SEC,1
1235
+ Leadership in Health Services,1751-1879,1751-1887,PUB SEC,1
1236
+ Policing: A journal of policy and practice,,1752-4520,PUB SEC,1
1237
+ Public Administration Quarterly ,0734-9149,2327-4433,PUB SEC,1
1238
+ Public Works Management and Policy,1087-724X,1552-7549,PUB SEC,1
1239
+ State and Local Government Review,0160-323X,1943-3409,PUB SEC,1
1240
+ Teaching Public Administration,0144-7394,2047-8720,PUB SEC,1
1241
+ Voluntary Sector Review,2040-8056,2040-8064,PUB SEC,1
1242
+ Economic Geography,0013-0095,1944-8287,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",4
1243
+ Journal of Economic Geography,1468-2702,1468-2710,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",4
1244
+ Regional Studies,0034-3404,1360-0591,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",4
1245
+ "Cambridge Journal of Regions, Economy and Society",1752-1378,1752-1386,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",3
1246
+ Environment and Planning A,0308-518X,1472-3409,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",3
1247
+ European Urban and Regional Studies,0969-7764,1461-7145,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",3
1248
+ Global Environmental Change,0959-3780,1872-9495,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",3
1249
+ Journal of Regional Science,0022-4146,1467-9787,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",3
1250
+ Journal of Rural Studies,0743-0167,1873-1392,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",3
1251
+ Papers in Regional Science,1056-8190,1435-5957,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",3
1252
+ Regional Science and Urban Economics,0166-0462,1879-2308,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",3
1253
+ Urban Studies,0042-0980,1360-063X,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",3
1254
+ Annals of Regional Science,0570-1864,1432-0592,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",2
1255
+ Cities,0264-2751,1873-6084,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",2
1256
+ Construction Management and Economics,0144-6193,1466-433X,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",2
1257
+ European Planning Studies,0965-4313,1469-5944,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",2
1258
+ Growth and Change,0017-4815,1468-2257,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",2
1259
+ International Journal of Urban and Regional Research,0309-1317,1468-2427,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",2
1260
+ Journal of Place Management and Development,1753-8335,1753-8343,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",2
1261
+ Local Economy,0269-0942,1470-9325,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",2
1262
+ Town Planning Review,0041-0020,1478-341X,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",2
1263
+ African Evaluation Journal,2310-4988,2306-5133,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",1
1264
+ Built Environment Project and Asset Management,2044-124X,2044-1258,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",1
1265
+ Corporate Social Responsibility and Environmental Management,1535-3958,1535-3966,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",1
1266
+ International Journal of Energy Sector Management,1750-6220,1750-6220,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",1
1267
+ International Journal of Housing Markets and Analysis,1753-8270,1753-8289,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",1
1268
+ Journal of Corporate Real Estate,1463-001X,1479-1048,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",1
1269
+ Journal of European Real Estate Research,1753-9269,1753-9277,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",1
1270
+ Journal of Financial Management of Property and Construction,1366-4387,1759-8443,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",1
1271
+ Journal of Geographical Systems,1435-5930,1435-5949,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",1
1272
+ Letters in Spatial and Resource Sciences,1864-4031,1864-404X,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",1
1273
+ Regional and Federal Studies,1359-7566,1743-9434,"REGIONAL STUDIES, PLANNING AND ENVIRONMENT",1
1274
+ Annals of Tourism Research,0160-7383,1873-7722,SECTOR,4
1275
+ Journal of Service Research,1094-6705,1552-7379,SECTOR,4
1276
+ Journal of Travel Research,0047-2875,1552-6763,SECTOR,4
1277
+ Tourism Management,0261-5177,1879-3193,SECTOR,4
1278
+ "Transportation Research, Series B: Methodological",0191-2615,1879-2367,SECTOR,4
1279
+ Energy Journal,0195-6574,1944-9089,SECTOR,3
1280
+ European Sport Management Quarterly,1618-4742,1746-031X,SECTOR,3
1281
+ Food Policy,0306-9192,1873-5657,SECTOR,3
1282
+ International Journal of Contemporary Hospitality Management,0959-6119,1757-1049,SECTOR,3
1283
+ International Journal of Hospitality Management,0278-4319,1873-4693,SECTOR,3
1284
+ Journal of Sustainable Tourism,0966-9582,1747-7646,SECTOR,3
1285
+ Nonprofit and Voluntary Sector Quarterly,0899-7640,1552-7395,SECTOR,3
1286
+ "Transportation Research, Part A: Policy and Practice",0965-8564,1879-2375,SECTOR,3
1287
+ "Transportation Research, Part D: Transport and Environment",1361-9209,1879-2340,SECTOR,3
1288
+ "Transportation Research, Part E: Logistics and Transportation Review",1366-5545,1878-5794,SECTOR,3
1289
+ Annals of Leisure Research,1174-5398,2159-6816,SECTOR,2
1290
+ Building Research and Information,0961-3218,1466-4321,SECTOR,2
1291
+ Cornell Hospitality Quarterly,1938-9655,1938-9663,SECTOR,2
1292
+ Current Issues in Tourism,1368-3500,1747-7603,SECTOR,2
1293
+ Energy Policy,0301-4215,1873-6777,SECTOR,2
1294
+ Environmental Management,0364-152X,1432-1009,SECTOR,2
1295
+ Event Management,1525-9951,1943-4308,SECTOR,2
1296
+ Hospitality and Society,2042-7913,2042-7921,SECTOR,2
1297
+ International Journal of Strategic Property Management,1648-715X,1648-9179,SECTOR,2
1298
+ International Journal of Tourism Research,1099-2340,1522-1970,SECTOR,2
1299
+ Journal of Hospitality and Tourism Management,1447-6770,1839-5260,SECTOR,2
1300
+ Journal of Hospitality and Tourism Research,1096-3480,1557-7554,SECTOR,2
1301
+ Journal of Management in Engineering - ASCE,0742-597X,1943-5479,SECTOR,2
1302
+ Journal of Service Management,1757-5818,1757-5826,SECTOR,2
1303
+ Journal of Sport Management,0888-4773,1543-270X,SECTOR,2
1304
+ Journal of Sports Economics,1527-0025,1552-7794,SECTOR,2
1305
+ Journal of Transport Geography,0966-6923,1873-1236,SECTOR,2
1306
+ Journal of Travel and Tourism Marketing,1054-8408,1540-7306,SECTOR,2
1307
+ Leisure Sciences,0149-0400,1521-0588,SECTOR,2
1308
+ Leisure Studies,0261-4367,1466-4496,SECTOR,2
1309
+ Marine Policy,0308-597X,1872-9460,SECTOR,2
1310
+ Maritime Policy and Management,0308-8839,1464-5254,SECTOR,2
1311
+ Museum Management and Curatorship,0964-7775,1872-9185,SECTOR,2
1312
+ Scandinavian Journal of Hospitality and Tourism,1502-2250,1502-2269,SECTOR,2
1313
+ Service Industries Journal,0264-2069,1743-9507,SECTOR,2
1314
+ Sport Management Review,1441-3523,1839-2083,SECTOR,2
1315
+ Tourism Analysis,1083-5423,1943-3999,SECTOR,2
1316
+ Tourism Economics,1354-8166,2044-0375,SECTOR,2
1317
+ Tourism Geographies,1461-6688,1470-1340,SECTOR,2
1318
+ Tourism Management Perspectives,2211-9736,2211-9744,SECTOR,2
1319
+ Tourism Planning and Development,2156-8316,2156-8324,SECTOR,2
1320
+ Tourism Recreation Research,0250-8281,2320-0308,SECTOR,2
1321
+ Transport Policy,0967-070X,1879-310X,SECTOR,2
1322
+ Transport Reviews,0144-1647,1464-5327,SECTOR,2
1323
+ Transportation,0049-4488,1572-9435,SECTOR,2
1324
+ Voluntas,0957-8765,1573-7888,SECTOR,2
1325
+ Advances in Hospitality and Leisure,1745-3542,1745-3542,SECTOR,1
1326
+ Anatolia: An International Journal of Tourism and Hospitality Research,1303-2917,2156-6909,SECTOR,1
1327
+ Asia Pacific Journal of Tourism Research,1094-1665,1741-6507,SECTOR,1
1328
+ British Food Journal,0007-070X,1758-4108,SECTOR,1
1329
+ "Digital Policy, Regulation and Governance",,2398-5038,SECTOR,1
1330
+ "Engineering, Construction and Architectural Management",0969-9988,1365-232X,SECTOR,1
1331
+ Facilities,0263-2772,0263-2772,SECTOR,1
1332
+ International Hospitality Review,2516-8142,2516-8142,SECTOR,1
1333
+ "International Journal of Culture, Tourism and Hospitality Research",1750-6182,,SECTOR,1
1334
+ International Journal of Event and Festival Management,1758-2954,1758-2962,SECTOR,1
1335
+ International Journal of Heritage Studies,1352-7258,1470-3610,SECTOR,1
1336
+ International Journal of Hospitality and Tourism Administration,1525-6480,1525-6499,SECTOR,1
1337
+ International Journal of Sport and Society,2152-7857,2152-7865,SECTOR,1
1338
+ International Journal of Sport Finance,1558-6235,1930-076X,SECTOR,1
1339
+ International Journal of Sport Management,1546-234X,,SECTOR,1
1340
+ International Journal of Sport Management and Marketing,1475-8962,1740-2808,SECTOR,1
1341
+ International Journal of Sport Policy and Politics,1940-6940,1940-6959,SECTOR,1
1342
+ International Journal of Sports Marketing and Sponsorship,1464-6668,1464-6668,SECTOR,1
1343
+ Journal of China Tourism Research,1938-8160,1938-8179,SECTOR,1
1344
+ Journal of Cleaner Production,0959-6526,1879-1786,SECTOR,1
1345
+ Journal of Convention and Event Tourism,1547-0148,1547-0156,SECTOR,1
1346
+ Journal of Destination Marketing and Management,2212-571X,2212-5752,SECTOR,1
1347
+ Journal of Ecotourism,1472-4049,1747-7638,SECTOR,1
1348
+ Journal of Foodservice Business Research,1537-8020,1537-8039,SECTOR,1
1349
+ Journal of Heritage Tourism,1743-873X,1747-6631,SECTOR,1
1350
+ Journal of Hospitality and Tourism Education,1096-3758,2325-6540,SECTOR,1
1351
+ Journal of Hospitality and Tourism Technology,1757-9880,1757-9899,SECTOR,1
1352
+ Journal of Hospitality Marketing and Management,1936-8623,1936-8631,SECTOR,1
1353
+ "Journal of Hospitality, Leisure, Sport and Tourism Education",1473-8376,1473-8376,SECTOR,1
1354
+ Journal of Human Resources in Hospitality and Tourism,1533-2845,1533-2853,SECTOR,1
1355
+ Journal of Media Business Studies,1652-2354,2376-2977,SECTOR,1
1356
+ Journal of Outdoor Recreation and Tourism,2213-0780,2213-0799,SECTOR,1
1357
+ "Journal of Policy Research in Tourism, Leisure and Events",1940-7963,1940-7971,SECTOR,1
1358
+ Journal of Quality Assurance in Hospitality and Tourism,1528-008X,,SECTOR,1
1359
+ Journal of Sport and Tourism,1477-5085,1029-5399,SECTOR,1
1360
+ Journal of the Textile Institute,0040-5000,1754-2340,SECTOR,1
1361
+ Journal of Transport Economics and Policy,0022-5258,1754-5951,SECTOR,1
1362
+ Journal of Vacation Marketing,1356-7667,1479-1870,SECTOR,1
1363
+ Managing Leisure: An International Journal,2375-0472,2375-0480,SECTOR,1
1364
+ Marine Resource Economics,0738-1360,2334-5985,SECTOR,1
1365
+ Maritime Economics and Logistics,1479-2931,1479-294X,SECTOR,1
1366
+ Non-Profit Management & Leadership,1048-6682,1542-7854,SECTOR,1
1367
+ Nutrition and Food Science,0034-6659,0034-6659,SECTOR,1
1368
+ PASOS Journal of Tourism and Cultural Heritage,2529-959X,1695-7121,SECTOR,1
1369
+ Property Management,0263-7472,0263-7472,SECTOR,1
1370
+ Service Business,1862-8516,1862-8508,SECTOR,1
1371
+ Sport Marketing Quarterly,1061-6934,1557-2528,SECTOR,1
1372
+ "Sport, Business and Management: An International Journal",2042-678X,2042-6798,SECTOR,1
1373
+ Telecommunications Policy,0308-5961,1879-3258,SECTOR,1
1374
+ Tourism Review,1660-5373,1759-8451,SECTOR,1
1375
+ "Tourism, Culture and Communication",1098-304X,1943-4146,SECTOR,1
1376
+ Tourism: An International Interdisciplinary Journal,1332-7461,1849-1545,SECTOR,1
1377
+ Tourist Studies,1468-7976,1741-3206,SECTOR,1
1378
+ Utilities Policy,0957-1787,1878-4356,SECTOR,1
1379
+ Visitor Studies,1064-5578,1934-7715,SECTOR,1
1380
+ World Leisure Journal,1607-8055,2333-4509,SECTOR,1
1381
+ Worldwide Hospitality and Tourism Themes,1755-4217,1755-4225,SECTOR,1
1382
+ American Journal of Political Science ,0092-5853,1540-5907,SOC SCI,4*
1383
+ American Journal of Sociology,0002-9602,1537-5390,SOC SCI,4*
1384
+ American Political Science Review ,0003-0554,1537-5943,SOC SCI,4*
1385
+ American Sociological Review,0003-1224,1939-8271,SOC SCI,4*
1386
+ Annual Review of Sociology,0360-0572,1545-2115,SOC SCI,4*
1387
+ Environment and Planning D: Society and Space,0263-7758,1472-3433,SOC SCI,4
1388
+ International Organization ,0020-8183,1531-5088,SOC SCI,4
1389
+ International Studies Quarterly ,0020-8833,1468-2478,SOC SCI,4
1390
+ Journal of Politics ,0022-3816,1468-2508,SOC SCI,4
1391
+ Risk Analysis,0272-4332,1539-6924,SOC SCI,4
1392
+ Social Science and Medicine,0277-9536,1873-5347,SOC SCI,4
1393
+ Socio-Economic Review,1475-1461,1475-147X,SOC SCI,4
1394
+ Sociology,0038-0385,1469-8684,SOC SCI,4
1395
+ Antipode,0066-4812,1467-8330,SOC SCI,3
1396
+ British Journal of Sociology,0007-1315,1468-4446,SOC SCI,3
1397
+ Business Strategy and the Environment,0964-4733,1099-0836,SOC SCI,3
1398
+ Development and Change,0012-155X,1467-7660,SOC SCI,3
1399
+ Economy and Society,0308-5147,1469-5766,SOC SCI,3
1400
+ Electoral Studies,0261-3794,1873-6890,SOC SCI,3
1401
+ Environmental Science & Technology,0013-936X,1520-5851,SOC SCI,3
1402
+ Environmental Science and Policy,1462-9011,1873-6416,SOC SCI,3
1403
+ European Sociological Review,0266-7215,1468-2672,SOC SCI,3
1404
+ Global Networks,1470-2266,1471-0374,SOC SCI,3
1405
+ Industrial and Corporate Change,0960-6491,1464-3650,SOC SCI,3
1406
+ Journal of Cultural Economy,1753-0350,1753-0369,SOC SCI,3
1407
+ Journal of Development Studies,0022-0388,1743-9140,SOC SCI,3
1408
+ Journal of European Social Policy,0958-9287,1461-7269,SOC SCI,3
1409
+ Journal of Social Policy,0047-2794,1469-7823,SOC SCI,3
1410
+ New Political Economy,1356-3467,1469-9923,SOC SCI,3
1411
+ Politics and Society,0032-3292,1552-7514,SOC SCI,3
1412
+ Progress in Human Geography,0309-1325,1477-0288,SOC SCI,3
1413
+ Public Opinion Quarterly,0033-362X,1537-5331,SOC SCI,3
1414
+ Quarterly Journal of Political Science,1554-0626,1554-0634,SOC SCI,3
1415
+ Research in Social Stratification and Mobility ,0276-5624,1878-5654,SOC SCI,3
1416
+ Review of International Political Economy,0969-2290,1466-4526,SOC SCI,3
1417
+ Social Forces,0037-7732,1534-7605,SOC SCI,3
1418
+ Social Science Research ,0049-089X,1096-0317,SOC SCI,3
1419
+ Sociological Methodology,0081-1750,1467-9531,SOC SCI,3
1420
+ Sociological Review,0038-0261,1467-954X,SOC SCI,3
1421
+ Sociology of Health and Illness,0141-9889,1467-9566,SOC SCI,3
1422
+ "Theory, Culture and Society",0263-2764,1460-3616,SOC SCI,3
1423
+ West European Politics,0140-2382,1743-9655,SOC SCI,3
1424
+ World Development,0305-750X,1873-5991,SOC SCI,3
1425
+ American Journal of Economics and Sociology,0002-9246,1536-7150,SOC SCI,2
1426
+ Capital and Class,0309-8168,2041-0980,SOC SCI,2
1427
+ Critical Social Policy,0261-0183,1461-703X,SOC SCI,2
1428
+ Current Sociology,0011-3921,1461-7064,SOC SCI,2
1429
+ Evaluation,1356-3890,1461-7153,SOC SCI,2
1430
+ Futures,0016-3287,1873-6378,SOC SCI,2
1431
+ Geoforum,0016-7185,1872-9398,SOC SCI,2
1432
+ Habitat International,0197-3975,1873-5428,SOC SCI,2
1433
+ Human Organization,0018-7259,1938-3525,SOC SCI,2
1434
+ Information Communication and Society,1369-118X,1468-4462,SOC SCI,2
1435
+ International Journal of Development Issues,1446-8956,1758-8553,SOC SCI,2
1436
+ International Journal of Green Energy,1543-5075,1543-5083,SOC SCI,2
1437
+ International Sociology,0268-5809,1461-7242,SOC SCI,2
1438
+ Journal of Business Law,0021-9460,2754-205X,SOC SCI,2
1439
+ Journal of Consumer Policy,0168-7034,1573-0700,SOC SCI,2
1440
+ Journal of Ethnic and Migration Studies,1369-183X,1469-9451,SOC SCI,2
1441
+ Journal of Industrial Ecology,1088-1980,1530-9290,SOC SCI,2
1442
+ Journal of Law and Society,0263-323X,1467-6478,SOC SCI,2
1443
+ Journal of Risk Research,1366-9877,1466-4461,SOC SCI,2
1444
+ Kyklos,0023-5962,1467-6435,SOC SCI,2
1445
+ Land Use Policy,0264-8377,1873-5754,SOC SCI,2
1446
+ Parliamentary Affairs,0031-2290,1460-2482,SOC SCI,2
1447
+ Political Quarterly,0032-3179,1467-923X,SOC SCI,2
1448
+ Political Studies,0032-3217,1467-9248,SOC SCI,2
1449
+ Research Evaluation,0958-2029,1471-5449,SOC SCI,2
1450
+ Review of Social Economy,0034-6764,1470-1162,SOC SCI,2
1451
+ Safety Science,0925-7535,1879-1042,SOC SCI,2
1452
+ Science and Public Policy,0302-3427,1471-5430,SOC SCI,2
1453
+ Science and Society,0036-8237,1943-2801,SOC SCI,2
1454
+ "Science, Technology and Society",0971-7218,0973-0796,SOC SCI,2
1455
+ Social Networks,0378-8733,1879-2111,SOC SCI,2
1456
+ Society and Business Review,1746-5680,1746-5699,SOC SCI,2
1457
+ Technology in Society,0160-791X,1879-3274,SOC SCI,2
1458
+ Time and Society,0961-463X,1461-7463,SOC SCI,2
1459
+ Area,0004-0894,1475-4762,SOC SCI,1
1460
+ Arts and the Market,2056-4945,2056-4953,SOC SCI,1
1461
+ Asia Europe Journal,1610-2932,1612-1031,SOC SCI,1
1462
+ China Report,0009-4455,0973-063X,SOC SCI,1
1463
+ Contemporary Education Dialogue,0973-1849,2249-5320,SOC SCI,1
1464
+ Environmental Economics,1998-6041,1998-605X,SOC SCI,1
1465
+ Ethnic and Racial Studies,0141-9870,1466-4356,SOC SCI,1
1466
+ Evaluation Review,0193-841X,1552-3926,SOC SCI,1
1467
+ Geographical Journal,0016-7398,1475-4959,SOC SCI,1
1468
+ Geopolitics under Globalization,2543-5493,2543-9820,SOC SCI,1
1469
+ "Gosudarstvo, Religiia, Tserkov' v Rossii i za Rubezhom / State, Religion and Church in Russia and Worldwide",2073-7203,2073-7211,SOC SCI,1
1470
+ "International Journal of Law, Crime and Justice",1756-0616,1876-763X,SOC SCI,1
1471
+ International Journal of Sociology and Social Policy,0144-333X,1758-6720,SOC SCI,1
1472
+ International Journal of Tourism Policy,1750-4090,1750-4104,SOC SCI,1
1473
+ International Migration Review,0197-9183,1747-7379,SOC SCI,1
1474
+ Journal of Asian Security and International Affairs,2347-7970,2349-0039,SOC SCI,1
1475
+ Journal of Globalization and Development,2194-6353,1948-1837,SOC SCI,1
1476
+ Journal of Humanities and Applied Social Sciences,2632-279X,2632-279X,SOC SCI,1
1477
+ Journal of International Studies,2071-8330 ,2306-3483,SOC SCI,1
1478
+ Journal of Leadership Studies,1935-2611,1935-262X,SOC SCI,1
1479
+ Journal of Studies in International Education ,1028-3153,1552-7808,SOC SCI,1
1480
+ Journal of Trust Research,2151-5581,2151-559X,SOC SCI,1
1481
+ Management of Environmental Quality,1477-7835,1477-7835,SOC SCI,1
1482
+ Millennial Asia,0976-3996,2321-7081,SOC SCI,1
1483
+ Négociations,1780-9231,1782-1452,SOC SCI,1
1484
+ Philosophy of Management,1740-3812,2052-9597,SOC SCI,1
1485
+ Policy Sciences,0032-2687,1573-0891,SOC SCI,1
1486
+ Population Studies,0032-4728,1477-4747,SOC SCI,1
1487
+ Progress in Development Studies,1464-9934,1477-027X,SOC SCI,1
1488
+ Review of European Studies ,1918-7173,1918-7181,SOC SCI,1
1489
+ Revista Produção e Desenvolvimento,,2446-9580,SOC SCI,1
1490
+ "She Ji: The Journal of Design, Economics, and Innovation",2405-8726,2405-8718,SOC SCI,1
1491
+ Studies in Indian Politics,2321-0230,2321-7472,SOC SCI,1
1492
+ Sustainable Futures,2666-1888,2666-1888,SOC SCI,1
1493
+ The International Journal of Community and Social Development,2516-6026,2516-6034,SOC SCI,1
1494
+ Transactions of the Institute of British Geographers,0020-2754,1475-5661,SOC SCI,1
1495
+ Valuation Studies,2001-5992,,SOC SCI,1
1496
+ Z'GuG Zeitschrift für Gemeinwirtschaft und Gemeinwohl - Journal of Social Economy and Social Welfare,2701-4193,2701-4207,SOC SCI,1
1497
+ Strategic Management Journal,0143-2095,1097-0266,STRAT,4*
1498
+ Global Strategy Journal,2042-5791,2042-5805,STRAT,4
1499
+ Long Range Planning,0024-6301,1873-1872,STRAT,4
1500
+ Strategic Organization,1476-1270,1741-315X,STRAT,3
1501
+ Strategy Science,2333-2050,2333-2077,STRAT,3
1502
+ Advances in Strategic Management,0742-3322,,STRAT,2
1503
+ European Journal of Management and Business Economics,2444-8451,2444-8494,STRAT,2
1504
+ Journal of Competitiveness,1804-171X,1804-1728,STRAT,2
1505
+ Journal of Economics and Management Strategy,1058-6407,1530-9134,STRAT,2
1506
+ Journal of Organization Design,,2245-408X,STRAT,2
1507
+ Strategic Change,1086-1718,1099-1697,STRAT,2
1508
+ Technology Analysis and Strategic Management,0953-7325,1465-3990,STRAT,2
1509
+ Central European Management Journal,2658-0845,2658-2430,STRAT,1
1510
+ Foresight,1463-6689,1465-9832,STRAT,1
1511
+ International Journal of Strategic Decision Sciences,1947-8569,1947-8577,STRAT,1
1512
+ Journal of Advances in Management Research,0972-7981,2049-3207,STRAT,1
1513
+ Journal of Business Models ,,2246-2465,STRAT,1
1514
+ Journal of Business Strategy,0275-6668,0275-6668,STRAT,1
1515
+ Journal of Change Management,1469-7017,1479-1811,STRAT,1
1516
+ Journal of Facilities Management,1472-5967,1741-0983,STRAT,1
1517
+ Journal of Strategic Contracting and Negotiation,2055-5636,2055-5644,STRAT,1
1518
+ Journal of Strategy and Management,1755-425X,1755-4268,STRAT,1
1519
+ M@n@gement,,1286-4692,STRAT,1
1520
+ Management Review Quarterly,2198-1620,2198-1639,STRAT,1
1521
+ Negotiation and Conflict Management Research,1750-4708,1750-4716,STRAT,1
1522
+ Revista Brasileira de Gestão de Negócios,1806-4892,1983-0807,STRAT,1
1523
+ Strategy and Leadership,1087-8572,1087-8572,STRAT,1
1524
+ Brookings Papers on Economic Activity,0007-2303,1533-4465,ECON,3
1525
+ Cambridge Journal of Economics,0309-166X,1464-3545,ECON,3
1526
+ Canadian Journal of Economics,0008-4085,1540-5982,ECON,3
1527
+ Computational Statistics and Data Analysis,0167-9473,1872-7352,ECON,3
1528
+ Ecological Economics,0921-8009,1873-6106,ECON,3
1529
+ Econometric Reviews,0747-4938,1532-4168,ECON,3
1530
+ Econometrics Journal,1368-4221,1368-423X,ECON,3
1531
+ Economic Development and Cultural Change,0013-0079,1539-2988,ECON,3
1532
+ Economic Inquiry,0095-2583,1465-7295,ECON,3
1533
+ Economic Policy,0266-4658,1468-0327,ECON,3
1534
+ Economic Theory,0938-2259,1432-0479,ECON,3
1535
+ Economica,0013-0427,1468-0335,ECON,3
1536
+ Economics Letters,0165-1765,1873-7374,ECON,3
1537
+ Energy Economics,0140-9883,1873-6181,ECON,3
1538
+ Environmental and Resource Economics,0924-6460,1573-1502,ECON,3
1539
+ European Economic Review,0014-2921,1873-572X,ECON,3
1540
+ European Review of Agricultural Economics,0165-1587,1464-3618,ECON,3
1541
+ Experimental Economics,1386-4157,1573-6938,ECON,3
1542
+ Games and Economic Behavior,0899-8256,1090-2473,ECON,3
1543
+ Health Economics (United Kingdom),1057-9230,1099-1050,ECON,3
1544
+ IMF Economic Review,2041-4161,2041-417X,ECON,3
1545
+ International Journal of Industrial Organization,0167-7187,1873-7986,ECON,3
1546
+ International Statistical Review,0306-7734,1751-5823,ECON,3
1547
+ Journal of Agricultural Economics,0021-857X,1477-9552,ECON,3
1548
+ Journal of Applied Econometrics,0883-7252,1099-1255,ECON,3
1549
+ Journal of Comparative Economics,0147-5967,1095-7227,ECON,3
1550
+ Journal of Computational and Graphical Statistics,1061-8600,1537-2715,ECON,3
1551
+ Journal of Development Economics,0304-3878,1872-6089,ECON,3
1552
+ Journal of Economic Behavior and Organization,0167-2681,1879-1751,ECON,3
1553
+ Journal of Economic Dynamics and Control,0165-1889,1879-1743,ECON,3
1554
+ Journal of Economic Growth,1381-4338,1573-7020,ECON,3
1555
+ Journal of Environmental Economics and Management,0095-0696,1096-0449,ECON,3
1556
+ Journal of Health Economics,0167-6296,1879-1646,ECON,3
1557
+ Journal of Human Capital,1932-8575,1932-8664,ECON,3
1558
+ Journal of Human Resources,0022-166X,1548-8004,ECON,3
1559
+ Journal of Industrial Economics,0022-1821,1467-6451,ECON,3
1560
+ Journal of Institutional Economics,1744-1374,1744-1382,ECON,3
1561
+ Journal of Law and Economics,0022-2186,1537-5285,ECON,3
1562
+ "Journal of Law, Economics, and Organization",8756-6222,1465-7341,ECON,3
1563
+ Journal of Legal Studies,0047-2530,1537-5366,ECON,3
1564
+ Journal of Mathematical Economics,0304-4068,1873-1538,ECON,3
1565
+ Journal of Multivariate Analysis,0047-259X,1095-7243,ECON,3
1566
+ Journal of Population Economics,0933-1433,1432-1475,ECON,3
1567
+ Journal of Public Economics,0047-2727,0047-2727,ECON,3
1568
+ Journal of Risk and Uncertainty,0895-5646,1573-0476,ECON,3
1569
+ Journal of the Association of Environmental and Resource Economists,2333-5955,2333-5963,ECON,3
1570
+ Journal of the Royal Statistical Society. Series A: Statistics in Society,0964-1998,1467-985X,ECON,3
1571
+ Journal of the Royal Statistical Society. Series C: Applied Statistics,0035-9254,1467-9876,ECON,3
1572
+ Journal of Time Series Analysis,0143-9782,1467-9892,ECON,3
1573
+ Journal of Urban Economics,0094-1190,1095-9068,ECON,3
1574
+ Labour Economics,0927-5371,1879-1034,ECON,3
1575
+ Land Economics,0023-7639,1543-8325,ECON,3
1576
+ Oxford Bulletin of Economics and Statistics,0305-9049,1468-0084,ECON,3
1577
+ Oxford Economic Papers,0030-7653,1464-3812,ECON,3
1578
+ Public Choice,0048-5829,1573-7101,ECON,3
1579
+ Real Estate Economics,1080-8620,1540-6229,ECON,3
1580
+ Review of Economic Dynamics,1094-2025,1096-6099,ECON,3
1581
+ Review of Income and Wealth,0034-6586,1475-4991,ECON,3
1582
+ Scandinavian Journal of Economics,0347-0520,1467-9442,ECON,3
1583
+ Scandinavian Journal of Statistics,0303-6898,1467-9469,ECON,3
1584
+ Social Choice and Welfare,0176-1714,1432-217X,ECON,3
1585
+ World Bank Economic Review,0258-6770,1564-698X,ECON,3
1586
+ Advances in Econometrics,0731-9053,,ECON,2
1587
+ Agricultural Economics (United Kingdom),0169-5150,1574-0862,ECON,2
1588
+ American Journal of Health Economics,2332-3493,2332-3507,ECON,2
1589
+ American Law and Economics Review,1465-7252,1465-7260,ECON,2
1590
+ Annals of Applied Statistics,1932-6157,1941-7330,ECON,2
1591
+ Annals of Economics and Finance,1529-7373,1529-7373,ECON,2
1592
+ Annals of Public and Cooperative Economics,1370-4788,1467-8292,ECON,2
1593
+ Annual Review of Resource Economics,1941-1340,1941-1359,ECON,2
1594
+ Applied Economic Perspectives and Policy,2040-5790,2040-5804,ECON,2
1595
+ Applied Economics,0003-6846,1466-4283,ECON,2
1596
+ Australian Journal of Agricultural and Resource Economics,1364-985X,1467-8489,ECON,2
1597
+ B.E. Journal of Economic Analysis and Policy,2194-6108,1935-1682,ECON,2
1598
+ B.E. Journal of Macroeconomics,,1935-1690,ECON,2
1599
+ B.E. Journal of Theoretical Economics,2194-6124,1935-1704,ECON,2
1600
+ Bulletin of Economic Research,0307-3378,1467-8586,ECON,2
1601
+ Canadian Journal of Agricultural Economics,0008-3976,1744-7976,ECON,2
1602
+ CESifo Economic Studies,1610-241X,1612-7501,ECON,2
1603
+ China Economic Review,1043-951X,1873-7781,ECON,2
1604
+ Computational Statistics,0943-4062,1613-9658,ECON,2
1605
+ Contemporary Economic Policy,1074-3529,1465-7287,ECON,2
1606
+ Contributions to Political Economy,0277-5921,1464-3588,ECON,2
1607
+ Defence and Peace Economics,1024-2694,1476-8267,ECON,2
1608
+ Econ Journal Watch,1933-527X,1933-527X,ECON,2
1609
+ Economic Modelling,0264-9993,1873-6122,ECON,2
1610
+ Economic Record,0013-0249,1475-4932,ECON,2
1611
+ Economic Systems,0939-3625,1878-5433,ECON,2
1612
+ Economic Systems Research,0953-5314,1469-5758,ECON,2
1613
+ Economic Theory Bulletin,,2196-1093,ECON,2
1614
+ Economics and Human Biology,1570-677X,1873-6130,ECON,2
1615
+ Economics and Philosophy,0266-2671,1474-0028,ECON,2
1616
+ Economics and Politics,0954-1985,1468-0343,ECON,2
1617
+ Economics of Education Review,0272-7757,1873-7382,ECON,2
1618
+ Economics of Innovation and New Technology,1043-8599,1476-8364,ECON,2
1619
+ Economics of Transition and Institutional Change,2577-6975,2577-6983,ECON,2
1620
+ Empirical Economics,0377-7332,1435-8921,ECON,2
1621
+ Environment and Development Economics,1355-770X,1469-4395,ECON,2
1622
+ European Journal of Health Economics,1618-7598,1439-6637,ECON,2
1623
+ European Journal of Political Economy,0176-2680,1873-5703,ECON,2
1624
+ Fiscal Studies,0143-5671,1475-5890,ECON,2
1625
+ GENEVA Risk and Insurance Review,1554-964X,1554-9658,ECON,2
1626
+ German Economic Review,1465-6485,1468-0475,ECON,2
1627
+ History of Political Economy,0018-2702,1527-1919,ECON,2
1628
+ Information Economics and Policy,0167-6245,1873-5975,ECON,2
1629
+ International Journal of Economic Theory,1742-7355,1742-7363,ECON,2
1630
+ International Journal of Game Theory,0020-7276,1432-1270,ECON,2
1631
+ International Journal of Health Economics and Management,2199-9023,2199-9031,ECON,2
1632
+ International Journal of the Economics of Business,1357-1516,1466-1829,ECON,2
1633
+ International Review of Economics and Finance,1059-0560,1873-8036,ECON,2
1634
+ International Review of Environmental and Resource Economics,1932-1465,1932-1473,ECON,2
1635
+ International Review of Law and Economics,0144-8188,1873-6394,ECON,2
1636
+ Journal of African Economies,0963-8024,1464-3723,ECON,2
1637
+ Journal of Agrarian Change,1471-0358,1471-0366,ECON,2
1638
+ Journal of Agricultural and Resource Economics,1068-5502,2327-8285,ECON,2
1639
+ Journal of Applied Probability,0021-9002,1475-6072,ECON,2
1640
+ Journal of Applied Statistics,0266-4763,1360-0532,ECON,2
1641
+ Journal of Behavioral and Experimental Economics,2214-8043,2214-8051,ECON,2
1642
+ Journal of Business Economics,0044-2372,1861-8928,ECON,2
1643
+ Journal of Cultural Economics,0885-2545,1573-6997,ECON,2
1644
+ Journal of Economic Inequality,1569-1721,1573-8701,ECON,2
1645
+ Journal of Economic Issues,0021-3624,1946-326X,ECON,2
1646
+ Journal of Economic Methodology,1350-178X,1469-9427,ECON,2
1647
+ Journal of Economic Studies,0144-3585,1758-7387,ECON,2
1648
+ Journal of Economic Surveys,0950-0804,1467-6419,ECON,2
1649
+ Journal of Economics/ Zeitschrift fur Nationalokonomie,0931-8658,1617-7134,ECON,2
1650
+ Journal of Evolutionary Economics,0936-9937,1432-1386,ECON,2
1651
+ Journal of Family and Economic Issues,1058-0476,1573-3475,ECON,2
1652
+ Journal of Forest Economics,1104-6899,1618-1530,ECON,2
1653
+ Journal of Housing Economics,1051-1377,1096-0791,ECON,2
1654
+ "Journal of Industry, Competition and Trade",1566-1679,1573-7012,ECON,2
1655
+ Journal of Institutional and Theoretical Economics,0932-4569,1614-0559,ECON,2
1656
+ Journal of International Development,0954-1748,1099-1328,ECON,2
1657
+ Journal of Macroeconomics,0164-0704,1873-152X,ECON,2
1658
+ Journal of Nonparametric Statistics,1048-5252,1029-0311,ECON,2
1659
+ Journal of Policy Modeling,0161-8938,1873-8060,ECON,2
1660
+ Journal of Post Keynesian Economics,0160-3477,1557-7821,ECON,2
1661
+ Journal of Productivity Analysis,0895-562X,1573-0441,ECON,2
1662
+ Journal of Public Economic Theory,1467-9779,1097-3923,ECON,2
1663
+ Journal of Regulatory Economics,0922-680X,1573-0468,ECON,2
1664
+ Journal of Statistical Planning and Inference,0378-3758,1873-1171,ECON,2
1665
+ Journal of the Economics of Ageing,2212-828X,2212-8298,ECON,2
1666
+ Journal of the Japanese and International Economies,0889-1583,1095-8681,ECON,2
1667
+ Journal of Time Series Econometrics,2194-6507,1941-1928,ECON,2
1668
+ Macroeconomic Dynamics,1365-1005,1469-8056,ECON,2
1669
+ Managerial and Decision Economics,0143-6570,1099-1468,ECON,2
1670
+ Manchester School,1463-6786,1467-9957,ECON,2
1671
+ Mathematical Social Sciences,0165-4896,1879-3118,ECON,2
1672
+ National Tax Journal,0028-0283,1944-7477,ECON,2
1673
+ Networks and Spatial Economics,1566-113X,1572-9427,ECON,2
1674
+ North American Journal of Economics and Finance,1062-9408,1879-0860,ECON,2
1675
+ Open Economies Review,0923-7992,1573-708X,ECON,2
1676
+ Oxford Development Studies,1360-0818,1469-9966,ECON,2
1677
+ Oxford Review of Economic Policy,0266-903X,1460-2121,ECON,2
1678
+ Pacific Economic Review,1361-374X,1468-0106,ECON,2
1679
+ PharmacoEconomics,1170-7690,1179-2027,ECON,2
1680
+ Quarterly Review of Economics and Finance,1062-9769,1878-4259,ECON,2
1681
+ Rationality and Society,1043-4631,1461-7358,ECON,2
1682
+ Resource and Energy Economics,0928-7655,1873-0221,ECON,2
1683
+ Resources Policy,0301-4207,1873-7641,ECON,2
1684
+ Review of Behavioral Economics,2326-6198,2326-6201,ECON,2
1685
+ Review of Development Economics,1363-6669,1467-9361,ECON,2
1686
+ Review of Economic Design,1434-4742,1434-4750,ECON,2
1687
+ Review of Economics of the Household,1569-5239,1573-7152,ECON,2
1688
+ Review of Environmental Economics and Policy,1750-6816,1750-6824,ECON,2
1689
+ Review of Industrial Organization,0889-938X,1573-7160,ECON,2
1690
+ Review of International Economics,0965-7576,1467-9396,ECON,2
1691
+ Review of Law and Economics,1555-5879,1555-5879,ECON,2
1692
+ Review of Network Economics,2194-5993,1446-9022,ECON,2
1693
+ Review of Political Economy,0953-8259,1465-3982,ECON,2
1694
+ Review of World Economics,1610-2878,1610-2886,ECON,2
1695
+ Scottish Journal of Political Economy,0036-9292,1467-9485,ECON,2
1696
+ Southern Economic Journal,0038-4038,2325-8012,ECON,2
1697
+ Spatial Economic Analysis,1742-1772,1742-1780,ECON,2
1698
+ Stata Journal,1536-867X,1536-8734,ECON,2
1699
+ Statistics and Probability Letters,0167-7152,1879-2103,ECON,2
1700
+ Studies in Nonlinear Dynamics and Econometrics,1081-1826,1558-3708,ECON,2
1701
+ World Bank Research Observer,0257-3032,1564-6971,ECON,2
1702
+ World Economy,0378-5920,1467-9701,ECON,2
1703
+ Advances in Austrian Economics,1529-2134,,ECON,1
1704
+ Advances in Decision Sciences,2090-3359,2090-3367,ECON,1
1705
+ Agrekon,0303-1853,2078-0400,ECON,1
1706
+ Agricultural and Resource Economics Review,1068-2805,2372-2614,ECON,1
1707
+ Annals of Economics and Statistics,2115-4430,1968-3863,ECON,1
1708
+ Applied Economic Analysis,2632-7627,2632-7627,ECON,1
1709
+ Applied Economics Letters,1350-4851,1466-4291,ECON,1
1710
+ Applied Health Economics and Heath Policy,1175-5652,1179-1896,ECON,1
1711
+ "Aquaculture, Economics and Management",1365-7305,1551-8663,ECON,1
1712
+ Asian Economic Journal,1351-3958,1467-8381,ECON,1
1713
+ Asian Economic Papers,1535-3516,1536-0083,ECON,1
1714
+ Atlantic Economic Journal,0197-4254,1573-9678,ECON,1
1715
+ Australian Economic Papers,0004-900X,1467-8454,ECON,1
1716
+ Australian Economic Review,0004-9018,1467-8462,ECON,1
1717
+ Baltic Journal of Economics,1406-099X,2334-4385,ECON,1
1718
+ Behavioural Public Policy ,2398-063X,2398-0648,ECON,1
1719
+ Bulletin of Indonesian Economic Studies,0007-4918,1472-7234,ECON,1
1720
+ Business Economics,0007-666X,1554-432X,ECON,1
1721
+ China Agricultural Economic Review,1756-137X,1756-1388,ECON,1
1722
+ China and World Economy,1671-2234,1749-124X,ECON,1
1723
+ China Economic Journal,1753-8963,1753-8971,ECON,1
1724
+ Cogent Economics and Finance,,2332-2039,ECON,1
1725
+ Comparative Economic Studies,0888-7233,1478-3320,ECON,1
1726
+ Computational Economics,0927-7099,1572-9974,ECON,1
1727
+ Constitutional Political Economy,1043-4062,1572-9966,ECON,1
1728
+ Contemporary Economics,2084-0845,2300-8814,ECON,1
1729
+ Credit and Capital Markets,2199-1227,2199-1235,ECON,1
1730
+ De Economist,0013-063X,1572-9982,ECON,1
1731
+ Decisions in Economics and Finance,1593-8883,1129-6569,ECON,1
1732
+ Dynamic Games and Applications,2153-0785,2153-0793,ECON,1
1733
+ Eastern Economic Journal,0094-5056,1939-4632,ECON,1
1734
+ Eastern European Economics,0012-8775,1557-9298,ECON,1
1735
+ Econometrics,,2225-1146,ECON,1
1736
+ EconomiA,1517-7580,2358-2820,ECON,1
1737
+ Economia Agraria y Recursos Naturales – Agricultural and Resource Economics,1578-0732,2174-7350,ECON,1
1738
+ Economic Analysis and Policy,0313-5926,0313-5926,ECON,1
1739
+ Economic and Social Review,0012-9984,0012-9984,ECON,1
1740
+ Economic Change and Restructuring,1573-9414,1574-0277,ECON,1
1741
+ Economic Issues,1363-7029,2514-5479,ECON,1
1742
+ Economic Notes,0391-5026,1468-0300,ECON,1
1743
+ Economic Research-Ekonomska Istraživanja,1331-677X,1848-9664,ECON,1
1744
+ Economics and Business Letters,,2254-4380,ECON,1
1745
+ Economics and Sociology,2071-789X,2306-3459,ECON,1
1746
+ Economics of Energy and Environmental Policy,2160-5882,2160-5890,ECON,1
1747
+ Economics of Governance,1435-6104,1435-8131,ECON,1
1748
+ Economics of Transportation,2212-0122,2212-0130,ECON,1
1749
+ Economies,,2227-7099,ECON,1
1750
+ Economists' Voice,1553-3832,1553-3832,ECON,1
1751
+ Education Economics,0964-5292,1469-5782,ECON,1
1752
+ Ekonomicheskaya Politika / Economic Policy,1994-5124,2411-2658,ECON,1
1753
+ Ekonomista,0013-3205,2299-6184,ECON,1
1754
+ Empirica,0340-8744,1573-6911,ECON,1
1755
+ Environmental Economics and Policy Studies,1432-847X,1867-383X,ECON,1
1756
+ Eurasian Economic Review,1309-422X,2147-429X,ECON,1
1757
+ European Journal of Economics and Economic Policies: Intervention,2052-7764,2052-7772,ECON,1
1758
+ European Journal of Law and Economics,0929-1261,1572-9990,ECON,1
1759
+ FinanzArchiv,0015-2218,1614-0974,ECON,1
1760
+ Forum for Health Economics and Policy,2194-6191,1558-9544,ECON,1
1761
+ Foundations and Trends in Econometrics,1551-3076,1551-3084,ECON,1
1762
+ Games,2073-4336,,ECON,1
1763
+ Global Economic Review,1226-508X,1744-3873,ECON,1
1764
+ Global Economy Journal,2194-5659,1553-5304,ECON,1
1765
+ Global Journal of Emerging Market Economies,0974-9101,0975-2730,ECON,1
1766
+ Hacienda Pública Española / Review of Public Economics,0210-1173,2386-4176,ECON,1
1767
+ Interdisciplinary Journal of Economics and Business Law,2047-8747,2047-8755,ECON,1
1768
+ Intereconomics,0020-5346,1613-964X,ECON,1
1769
+ International Advances in Economic Research,1083-0898,1573-966X,ECON,1
1770
+ International Economic Journal,1016-8737,1743-517X,ECON,1
1771
+ International Economics,2110-7017,2542-6869,ECON,1
1772
+ International Game Theory Review,0219-1989,1793-6675,ECON,1
1773
+ International Journal of Computational Economics and Econometrics,1757-1170,1757-1189,ECON,1
1774
+ International Journal of Ecological Economics and Statistics,0973-1385,0973-7537,ECON,1
1775
+ International Journal of Happiness and Development,2049-2790,2049-2804,ECON,1
1776
+ International Journal of Political Economy,0891-1916,1558-0970,ECON,1
1777
+ International Journal of Social Economics,0306-8293,1758-6712,ECON,1
1778
+ International Review of Applied Economics,0269-2171,1465-3486,ECON,1
1779
+ Jahrbucher fur Nationalokonomie und Statistik,0021-4027,2366-049X,ECON,1
1780
+ Japan and the World Economy,0922-1425,1879-2006,ECON,1
1781
+ Japanese Economic Review,1352-4739,1468-5876,ECON,1
1782
+ Japanese Political Economy,2329-194X,2329-1958,ECON,1
1783
+ Journal for Labour Market Research,1614-3485,1867-8343,ECON,1
1784
+ Journal of Agricultural & Applied Economics,1074-0708,2056-7405,ECON,1
1785
+ Journal of Agricultural and Food Industrial Organization,1542-0485,1542-0485,ECON,1
1786
+ Journal of Air Transport Management,0969-6997,1873-2089,ECON,1
1787
+ Journal of Applied Economics,1514-0326,1667-6726,ECON,1
1788
+ Journal of Asian Economics,1049-0078,1873-7927,ECON,1
1789
+ Journal of Bioeconomics,1387-6996,1573-6989,ECON,1
1790
+ Journal of Choice Modelling,1755-5345,1755-5345,ECON,1
1791
+ Journal of Competition Law & Economics,1744-6414,1744-6422,ECON,1
1792
+ Journal of Developing Areas,0022-037X,1548-2278,ECON,1
1793
+ Journal of Econometric Methods,,2156-6674,ECON,1
1794
+ Journal of Economic and Administrative Sciences,2054-6238,2054-6246,ECON,1
1795
+ Journal of Economic and Financial Sciences,1995-7076,2312-2803,ECON,1
1796
+ Journal of Economic Asymmetries,1703-4949,2352-8397,ECON,1
1797
+ Journal of Economic Cooperation and Development,1308-7800,2980-1125,ECON,1
1798
+ Journal of Economic Education,0022-0485,2152-4068,ECON,1
1799
+ Journal of Economic Integration,1225-651X,1976-5525,ECON,1
1800
+ Journal of Economic Interaction and Coordination,1860-711X,1860-7128,ECON,1
1801
+ Journal of Economic Policy Reform,1748-7870,1748-7889,ECON,1
1802
+ Journal of Gambling Business and Economics ,,1751-8008,ECON,1
1803
+ Journal of Income Distribution,0926-6437,1874-6322,ECON,1
1804
+ Journal of Industrial and Business Economics,0391-2078,1972-4977,ECON,1
1805
+ Journal of Interdisciplinary Economics,0260-1079,2321-5305,ECON,1
1806
+ Journal of International Trade and Economic Development,0963-8199,1469-9559,ECON,1
1807
+ Journal of Mechanism and Institution Design,2399-844X,2399-8458,ECON,1
1808
+ Journal of Media Economics,0899-7764,1532-7736,ECON,1
1809
+ Journal of the Asia Pacific Economy,1354-7860,1469-9648,ECON,1
1810
+ Journal of the Economic Science Association,2199-6776,2199-6784,ECON,1
1811
+ Man and the Economy,2196-9639,2196-9647,ECON,1
1812
+ Metroeconomica,0026-1386,1467-999X,ECON,1
1813
+ Mineral Economics,2191-2203,2191-2211,ECON,1
1814
+ Montenegrin Journal of Economics,1800-5845,1800-6698,ECON,1
1815
+ National Institute Economic Review,0027-9501,1741-3036,ECON,1
1816
+ Natural Resources Journal,0028-0739,0028-0739,ECON,1
1817
+ NETNOMICS: Economic Research and Electronic Networking,1385-9587,1573-7071,ECON,1
1818
+ New Zealand Economic Papers,0077-9954,1943-4863,ECON,1
1819
+ "Peace Economics, Peace Science and Public Policy",1079-2457,1554-8597,ECON,1
1820
+ Portuguese Economic Journal,1617-982X,1617-9838,ECON,1
1821
+ Post-Communist Economies,1463-1377,1465-3958,ECON,1
1822
+ PSL Quarterly Review,2037-3635,2037-3643,ECON,1
1823
+ Quantitative and Qualitative Analysis in Social Sciences,1752-8925,1752-8925,ECON,1