大致步骤:
1、Java bean
2、DBHelper.java
3、重写DefaultHandler中的方法:MyHander.java
4、循环写数据库:SAXParserDemo.java
①xml文件:(要把第二行dtd的绑定删掉)
1
2
3
4
5
6 Iuan-Yuan Lu
7 Chih-Jen Mao
8 Chun-Hsien Wang
9 Intrafirm technology and knowledge transfer: a best practice perspective.
10 338-356
11 2010
12 49
13 IJTM
14 4
15 https://doi.org/10.1504/IJTM.2010.030162
16 db/journals/ijtm/ijtm49.html#LuMW10
17
18
19
20 Kuo-Chang Ting
21 Ping Ho Ting
22 Po-Wen Hsiao
23 Why are bloggers willing to share their thoughts via travel blogs?
24 89-108
25 2014
26 64
27 IJTM
28 1
29 https://doi.org/10.1504/IJTM.2014.059237
30 db/journals/ijtm/ijtm64.html#TingTH14
31
32
33
34 Jeremy Howells
35 International coordination of technology flows and knowledge activity in innovation.
36 806-819
37 2000
38 19
39 IJTM
40 7/8
41
42
dblp.xml
就留下了三组数据。之前的数据量太大了。(我把所有的数据贴到最后,你们也可以去网上下载)
②DBHelper.java
1 package sax;
2
3 import java.sql.Connection;
4 import java.sql.DriverManager;
5 import java.sql.PreparedStatement;
6 import java.sql.ResultSet;
7 import java.sql.Statement;
8
9 /**
10 * 数据库工具类,负责完成打开、关闭数据库,执行查询或更新
11 * @author MKing
12 *
13 */
14 public class DbHelper {
15 /**
16 * 数据库URL
17 */
18 private static final String URL = "jdbc:mysql://localhost:3306/train";
19 /**
20 * 登录用户名
21 */
22 private static final String USER = "root";
23 /**
24 * 登录密码
25 */
26 private static final String PASSWORD = "yourpassword";
27
28 private static Connection connection = null;
29 private static Statement statement = null;
30
31 private static DbHelper helper = null;
32
33 static {
34 try {
35 Class.forName("com.mysql.jdbc.Driver");
36 } catch (ClassNotFoundException e) {
37 e.printStackTrace();
38 }
39 }
40
41 public DbHelper() throws Exception {
42 connection = DriverManager.getConnection(URL, USER, PASSWORD);
43 statement = connection.createStatement();
44 }
45
46 /**
47 * 返回单例模式的数据库辅助对象
48 *
49 * @return
50 * @throws Exception
51 */
52 public static DbHelper getDbHelper() throws Exception {
53 if (helper == null || connection == null || connection.isClosed())
54 helper = new DbHelper();
55 return helper;
56 }
57
58 /**
59 * 执行查询
60 * @param sql 要执行的SQL语句
61 * @return 查询的结果集对象
62 * @throws Exception
63 */
64 public ResultSet executeQuery(String sql) throws Exception {
65 if (statement != null) {
66 return statement.executeQuery(sql);
67 }
68
69 throw new Exception("数据库未正常连接");
70 }
71
72 /**
73 * 执行查询
74 * @param sql 要执行的带参数的SQL语句
75 * @param args SQL语句中的参数值
76 * @return 查询的结果集对象
77 * @throws Exception
78 */
79 public ResultSet executeQuery(String sql, Object…args) throws Exception {
80 if (connection == null || connection.isClosed()) {
81 DbHelper.close();
82 throw new Exception("数据库未正常连接");
83 }
84 PreparedStatement ps = connection.prepareStatement(sql);
85 int index = 1;
86 for (Object arg : args) {
87 ps.setObject(index, arg);
88 index++;
89 }
90
91 return ps.executeQuery();
92 }
93
94 /**
95 * 执行更新
96 * @param sql 要执行的SQL语句
97 * @return 受影响的记录条数
98 * @throws Exception
99 */
100 public int executeUpdate(String sql) throws Exception {
101 if (statement != null) {
102 return statement.executeUpdate(sql);
103 }
104 throw new Exception("数据库未正常连接");
105 }
106
107 /**
108 * 执行更新
109 * @param sql 要执行的SQL语句
110 * @param args SQL语句中的参数
111 * @return 受影响的记录条数
112 * @throws Exception
113 */
114 public int executeUpdate(String sql, Object…args) throws Exception {
115 if (connection == null || connection.isClosed()) {
116 DbHelper.close();
117 throw new Exception("数据库未正常连接");
118 }
119 PreparedStatement ps = connection.prepareStatement(sql);
120 int index = 1;
121 for (Object arg : args) {
122 ps.setObject(index, arg);
123 index++;
124 }
125 return ps.executeUpdate();
126 }
127
128 /**
129 * 获取预编译的语句对象
130 * @param sql 预编译的语句
131 * @return 预编译的语句对象
132 * @throws Exception
133 */
134 public PreparedStatement prepareStatement(String sql) throws Exception {
135 return connection.prepareStatement(sql);
136 }
137
138 /**
139 * 关闭对象,同时将关闭连接
140 */
141 public static void close() {
142 try {
143 if (statement != null)
144 statement.close();
145 if (connection != null)
146 connection.close();
147 } catch (Exception e) {
148 e.printStackTrace();
149 } finally {
150 helper = null;
151 }
152 }
153 }
DBHelper.java
别忘了放jar包
③MyHander.java
1 package sax;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6 import org.xml.sax.Attributes;
7 import org.xml.sax.SAXException;
8 import org.xml.sax.helpers.DefaultHandler;
9
10 public class MyHandler extends DefaultHandler {
11 private List articles = new ArrayList<>(); // 学生列表
12 private Article article = null;
13 private int propertyOrder = 1;
14 // 1-id, 2-author1, 3-author2, 4-author3, 5-title,
15 // 6-pages, 7-year, 8-volume, 9-journal, 10-number, 11-ee$t, 12-url$t
16
17 @Override
18 public void startDocument() throws SAXException {
19 System.out.println("文档开始");
20 }
21
22 @Override
23 public void endDocument() throws SAXException {
24 System.out.println("文档结束");
25 }
26
27 @Override
28 public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
29 if (qName.equals("article")) { // 新的article开始
30 article = new Article();
31 return;
32 }
33 switch (qName) {
34 case "author":
35 // 2 3 4
36 if (propertyOrder < 4) {
37 propertyOrder++;
38 }
39 break;
40 case "title":
41 propertyOrder = 5;
42 break;
43 case "pages":
44 propertyOrder = 6;
45 break;
46 case "year":
47 propertyOrder = 7;
48 break;
49 case "volume":
50 propertyOrder = 8;
51 break;
52 case "journal":
53 propertyOrder = 9;
54 break;
55 case "number":
56 propertyOrder = 10;
57 break;
58 case "ee":
59 propertyOrder = 11;
60 break;
61 case "url":
62 propertyOrder = 12;
63 break;
64 }
65 }
66
67 @Override
68 public void endElement(String uri, String localName, String qName) throws SAXException {
69 if (qName.equals("article")) { // 新的artile结束
70 articles.add(article);
71 article = null;
72 propertyOrder = 1;
73 }
74 }
75
76 // 1-id, 2-author1, 3-author2, 4-author3, 5-title,
77 // 6-pages, 7-year, 8-volume, 9-journal, 10-number, 11-ee$t, 12-url$t
78
79 @Override
80 public void characters(char[] ch, int start, int length) throws SAXException {
81 String content = new String(ch, start, length);
82 switch (propertyOrder) {
83 case 2:
84 // System.out.println(content);
85 article.setAuthor1(content);
86 break;
87 case 3:
88 article.setAuthor2(content);
89 break;
90 case 4:
91 article.setAuthor3(content);
92 break;
93 case 5:
94 article.setTitle(content);
95 break;
96 case 6:
97 article.setPages(content);
98 break;
99 case 7:
100 article.setYear(content);
101 break;
102 case 8:
103 article.setVolume(content);
104 break;
105 case 9:
106 article.setJournal(content);
107 break;
108 case 10:
109 article.setNumber(content);
110 break;
111 case 11:
112 article.setEe$t(content);
113 break;
114 case 12:
115 article.setUrl$t(content);
116 }
117 }
118
119 List getArticles() {
120 return articles;
121 }
122 }
MyHander.java
因为作者最多三个,所以这里就写的1、2、3,在给他们赋值的时候用了一个小技巧,使用变量判断当前数据读到了哪里。
④SAXParserDemo.java
1 package sax;
2
3 import java.util.List;
4
5 import javax.xml.parsers.SAXParser;
6 import javax.xml.parsers.SAXParserFactory;
7
8 public class SAXParserDemo {
9
10 public static void main(String[] args) throws Exception {
11 SAXParserFactory factory = SAXParserFactory.newInstance();
12 SAXParser parser = factory.newSAXParser();
13 MyHandler handler = new MyHandler(); // 使用自定义Handler
14 parser.parse("dblp/dblp.xml", handler);
15 System.out.println("解析完毕.");
16
17 List articles = handler.getArticles();
18 DbHelper dbHelper = DbHelper.getDbHelper();
19
20 System.out.println("开始写入数据库库…");
21 int cnt = 0;
22
23 String sql = "INSERT INTO `train`.`dblp$article` (`author1`, `author2`, `author3`, `title`, `pages`, `year`, `volume`, `journal`, `number`, `ee`, `url`) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";
24 for (Article article : articles) {
25
26 // 使用?的方式传参写入数据库不需要考虑单双引号的问题。
27 Object []data = new String[]{article.getAuthor1(),
28 article.getAuthor2(), article.getAuthor3(), article.getTitle(), article.getPages(), article.getYear(),
29 article.getVolume(), article.getJournal(), article.getNumber(), article.getEe$t(), article.getUrl$t()};
30 dbHelper.executeUpdate(sql, data);
31
32 // INSERT INTO `train`.`dblp$article` (`author1`, `author2`, `author3`, `title`, `pages`, `year`, `volume`, `journal`, `number`, `ee`, `url`)
33 // VALUES ("Iuan-Yuan Lu", "Chih-Jen Mao", "Chun-Hsien Wang", "Intrafirm technology and knowledge transfer: a best practice perspective.", "338-356",
34 // "2010", "49", "IJTM", "4", "https://doi.org/10.1504/IJTM.2010.030162", "db/journals/ijtm/ijtm49.html#LuMW10");
35
36 // String sql = "INSERT INTO `train`.`dblp$article` (`author1`, `author2`, `author3`, `title`, `pages`, `year`, `volume`, `journal`, `number`, `ee`, `url`)"
37 // + " VALUES (\""
38 // + article.getAuthor1()
39 // + "\", \""
40 // + article.getAuthor2()
41 // + "\", \""
42 // + article.getAuthor3()
43 // + "\", \""
44 // + article.getTitle().replaceAll("\"", "\\\\\"")
45 // + "\", \""
46 // + article.getPages()
47 // + "\", \""
48 // + article.getYear()
49 // + "\", \""
50 // + article.getVolume()
51 // + "\", \""
52 // + article.getJournal()
53 // + "\", \""
54 // + article.getNumber()
55 // + "\", \""
56 // + article.getEe$t()
57 // + "\", \""
58 // + article.getUrl$t()
59 // + "\");";
60 // System.out.println(sql);
61 // dbHelper.executeUpdate(sql);
62 cnt++;
63
64 // The acceptance of "self-service" technology in the Egyptian telecom industry.
65 // 数据库返回来的错误
66 }
67 System.out.println("共" + cnt + "\n, 写入数据库完成…");
68 // cnt = 3
69 DbHelper.close();
70 }
71
72 }
View CoSAXParserDemo.java
备注写的很清楚了,如果使用注释掉的方法的话,因为之前数据(这里只复制过来了3条)中存在单引号 ' 和双引号 " ,还有斜杠 / 。使用参数写入数据库,不需要考虑单双引号和斜杠的情况。
再往后有个水平分界线下面是dblp.dtd
Iuan-Yuan Lu
Chih-Jen Mao
Chun-Hsien Wang
Intrafirm technology and knowledge transfer: a best practice perspective.
338-356
2010
49
IJTM
4
https://doi.org/10.1504/IJTM.2010.030162
db/journals/ijtm/ijtm49.html#LuMW10
Kuo-Chang Ting
Ping Ho Ting
Po-Wen Hsiao
Why are bloggers willing to share their thoughts via travel blogs?
89-108
2014
64
IJTM
1
https://doi.org/10.1504/IJTM.2014.059237
db/journals/ijtm/ijtm64.html#TingTH14
Xiaohong Quan
Knowledge diffusion from MNC R&D labs in developing countries: evidence from interaction between MNC R&D labs and local universities in Beijing.
364-386
2010
51
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2010.033810
db/journals/ijtm/ijtm51.html#Quan10
Robert E. McDonald
Narasimhan Srinivasan
Technological innovations in hospitals: what kind of competitive advantage does adoption lead to?
103-117
2004
28
IJTM
1
https://doi.org/10.1504/IJTM.2004.005055
db/journals/ijtm/ijtm28.html#McDonaldS04
Li Lingji
Hu Ping
Zhang Lei
Roles, models and development trends of hi-tech industrial development zones in China.
633-645
2004
28
IJTM
3/4/5/6
https://doi.org/10.1504/IJTM.2004.005313
db/journals/ijtm/ijtm28.html#LingjiPL04
Shari S. C. Shang
Se-Hwa Wu
Chen-Yen Yao
A dynamic innovation model for managing capabilities of continuous innovation.
300-318
2010
51
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2010.033807
db/journals/ijtm/ijtm51.html#ShangWY10
Pia Hurmelinna-Laukkanen
The availability, strength and efficiency of appropriability mechanisms - protecting investments in knowledge creation.
282-290
2009
45
IJTM
3/4
https://doi.org/10.1504/IJTM.2009.022653
db/journals/ijtm/ijtm45.html#Hurmelinna-Laukkanen09
Jon Perr
Melissa M. Appleyard
Patrick Sullivan
Open for business: emerging business models in open source software.
432-456
2010
52
IJTM
3/4
https://doi.org/10.1504/IJTM.2010.035984
db/journals/ijtm/ijtm52.html#PerrAS10
Alessia Ciappini
Mariano Corso
Alessandro Perego
From ICT outsourcing to strategic sourcing: managing customer-supplier relations for continuous innovation capabilities.
185-203
2008
42
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.018067
db/journals/ijtm/ijtm42.html#CiappiniCP08
Omar R. Malik
When Davids start becoming Goliaths: unique capabilities of emerging-market multinational enterprises and how they foster growth in developed markets?
45-69
2017
74
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2017.10004268
db/journals/ijtm/ijtm74.html#Malik17
Atsushi Inuzuka
Management by the cognitive range: a perspective on knowledge management.
384-400
2010
49
IJTM
4
https://doi.org/10.1504/IJTM.2010.030165
db/journals/ijtm/ijtm49.html#Inuzuka10
Martin Gjelsvik
Universities, innovation and competitiveness in regional economies.
10-31
2018
76
IJTM
1/2
https://doi.org/10.1504/IJTM.2018.10009596
db/journals/ijtm/ijtm76.html#Gjelsvik18
Phillip R. Marcus
The World Wide Web: an effective vehicle for global procurement documentation dissemination.
201-206
2002
23
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2002.003006
db/journals/ijtm/ijtm23.html#Marcus02
Celina Vaquero
M. Isabel Garces
Jesus Rodriguez-Pomeda
Impact of organisation and management on complex technological systems safety: the nuclear lessons.
214-241
2000
20
IJTM
1/2
https://doi.org/10.1504/IJTM.2000.002862
db/journals/ijtm/ijtm20.html#VaqueroGR00
Benjamin J. C. Yuan
Chien-Pin Wang
Gwo-Hshiung Tzeng
An emerging approach for strategy evaluation in fuel cell development.
302-338
2005
32
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.007336
db/journals/ijtm/ijtm32.html#YuanWT05
Yu-Shan Su
Hsin-Yi Hu
Feng-Shang Wu
How can small firms benefit from open innovation? The case of new drug development in Taiwan.
61-82
2016
72
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2016.10001579
db/journals/ijtm/ijtm72.html#SuHW16
Dion A. M. M. Metzemaekers
Critical success factors in technology management.
583-585
2000
19
IJTM
6
https://doi.org/10.1504/IJTM.2000.002836
db/journals/ijtm/ijtm19.html#Metzemaekers00
Roland Ortt
Ruud Smits
Innovation management: different approaches to cope with the same trends.
296-318
2006
34
IJTM
3/4
https://doi.org/10.1504/IJTM.2006.009461
db/journals/ijtm/ijtm34.html#OrttS06
John Bessant
Bettina Von Stamm
Kathrin M. Möslein
Selection strategies for discontinuous innovation.
156-170
2011
55
IJTM
1/2
https://doi.org/10.1504/IJTM.2011.041685
db/journals/ijtm/ijtm55.html#BessantSM11
J. Daniel Wischnevsky
Fariborz Damanpour
Radical strategic and structural change: occurrence, antecedents and consequences.
53-80
2008
44
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.020698
db/journals/ijtm/ijtm44.html#WischnevskyD08
Caterina Tantalo
Matteo G. Caroli
Jeff Vanevenhoven
Corporate social responsibility and SME's competitiveness.
129-151
2012
58
IJTM
1/2
https://doi.org/10.1504/IJTM.2012.045792
db/journals/ijtm/ijtm58.html#TantaloCV12
Claudio Petti
Shujun Zhang
Factors influencing technological entrepreneurship in Chinese firms: evidence from Guangdong.
70-95
2014
65
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2014.060948
db/journals/ijtm/ijtm65.html#PettiZ14
David Arthurs
Erin Cassidy
Charles H. Davis
David Wolfe
Indicators to support innovation cluster policy.
263-279
2009
46
IJTM
3/4
https://doi.org/10.1504/IJTM.2009.023376
db/journals/ijtm/ijtm46.html#ArthursCDW09
Isabel Diez-Vial
Angeles Montoro-Sánchez
From incubation to maturity inside parks: the evolution of local knowledge networks.
132-150
2017
73
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2017.10003244
db/journals/ijtm/ijtm73.html#Diez-VialM17
Robert Phaal
Clare J. P. Farrukh
David R. Probert
A framework for supporting the management of technological knowledge.
1-15
2004
27
IJTM
1
https://doi.org/10.1504/IJTM.2004.003878
db/journals/ijtm/ijtm27.html#PhaalFP04
Howard Davies
The influence of the environment and enterprise reform on commitment to technology development in China: an empirical analysis.
22-41
2001
21
IJTM
1/2
https://doi.org/10.1504/IJTM.2001.002900
db/journals/ijtm/ijtm21.html#Davies01
Bernard Guilhon
Raja Attia
Roland Rizoulieres
Markets for technology and firms' strategies: the case of the semiconductor industry.
123-142
2004
27
IJTM
2/3
https://doi.org/10.1504/IJTM.2004.003948
db/journals/ijtm/ijtm27.html#GuilhonAR04
Philip Cooke
Oliver Ehret
Proximities, knowledge and skills and the future of the Welsh aerospace industry.
356-366
2010
50
IJTM
3/4
https://doi.org/10.1504/IJTM.2010.032681
db/journals/ijtm/ijtm50.html#CookeE10
Kerstin Cuhls
Knut Blind
Foresight in Germany: the example of the Delphi '98 or: how can the future be shaped?
767-780
2001
21
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002949
db/journals/ijtm/ijtm21.html#CuhlsB01
Rob Raven
Suzanne Van den Bosch
Rob Weterings
Transitions and strategic niche management: towards a competence kit for practitioners.
57-74
2010
51
IJTM
1
https://doi.org/10.1504/IJTM.2010.033128
db/journals/ijtm/ijtm51.html#RavenBW10
Ante Pulic
VAIC™ - an accounting tool for IC management.
702-714
2000
20
IJTM
5/6/7/8
https://doi.org/10.1504/IJTM.2000.002891
db/journals/ijtm/ijtm20.html#Pulic00
Junmo Kim
An exit for the IT industry?: Market saturation and the convergence of ubiquitous technology for manufacturing and service sectors.
407-419
2008
41
IJTM
3/4
https://doi.org/10.1504/IJTM.2008.016790
db/journals/ijtm/ijtm41.html#Kim08a
Markku Roinila
G.W. Leibniz and scientific societies.
165-179
2009
46
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.022683
db/journals/ijtm/ijtm46.html#Roinila09
Kasper Edwards
Anders Paarup Nielsen
Peter Jacobsen
Implementing lean in surgery - lessons and implications.
4-17
2012
57
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2012.043948
db/journals/ijtm/ijtm57.html#EdwardsNJ12
Jing-Jiang Liu
Ji-Yu Qian
Jin Chen
Technological learning and firm-level technological capability building: analytical framework and evidence from Chinese manufacturing firms.
190-208
2006
36
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2006.009968
db/journals/ijtm/ijtm36.html#LiuQC06
Carl Wadell
Gunilla Ölundh Sandström
Jennie Björk
Mats Magnusson
Exploring the incorporation of users in an innovating business unit.
293-308
2013
61
IJTM
3/4
https://doi.org/10.1504/IJTM.2013.052672
db/journals/ijtm/ijtm61.html#WadellSBM13
Bing-Sheng Teng
Managing intellectual property in R&D alliances.
160-177
2007
38
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.012434
db/journals/ijtm/ijtm38.html#Teng07
Steven White
Xielin Liu
Wei Xie
A survey of Chinese literature on the management of technology and innovation, 1987-1997.
130-150
2001
21
IJTM
1/2
https://doi.org/10.1504/IJTM.2001.002907
db/journals/ijtm/ijtm21.html#WhiteLX01
Claudine Soosay
Paul Hyland
Exploration and exploitation: the interplay between knowledge and continuous innovation.
20-35
2008
42
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.018058
db/journals/ijtm/ijtm42.html#SoosayH08
Yooncheol Lim
Development of the public sector in the Korean innovation system.
684-701
2000
20
IJTM
5/6/7/8
https://doi.org/10.1504/IJTM.2000.002888
db/journals/ijtm/ijtm20.html#Lim00
Adil Osman Fathelrahman
Mathew Shafaghi
Leveraging organisation data through EII, ETL and data replication: methodologies and implementation.
208-224
2010
50
IJTM
2
https://doi.org/10.1504/IJTM.2010.032273
db/journals/ijtm/ijtm50.html#FathelrahmanS10
Sarah Riddell
William A. Wallace
The use of fuzzy logic and expert judgment in the R&D project portfolio selection process.
238-256
2011
53
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2011.038592
db/journals/ijtm/ijtm53.html#RiddellW11
Theo N. Andrew
Doncho Petkov
A case study on the initial enquiry stage in a framework for improved planning of rural telecommunications infrastructure in developing countries.
64-77
2005
31
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006623
db/journals/ijtm/ijtm31.html#AndrewP05
Naubahar Sharif
Erik Baark
Antonio K. W. Lau
Innovation activities, sources of innovation and R&D cooperation: evidence from firms in Hong Kong and Guangdong Province, China.
203-234
2012
59
IJTM
3/4
https://doi.org/10.1504/IJTM.2012.047244
db/journals/ijtm/ijtm59.html#SharifBL12
Michael D. J. Clements
Andrew J. Sense
Socially shaping supply chain integration through learning.
92-105
2010
51
IJTM
1
https://doi.org/10.1504/IJTM.2010.033130
db/journals/ijtm/ijtm51.html#ClementsS10
Barend van der Meulen
Anne Lohnberg
The use of foresight: institutional constraints and conditions.
680-693
2001
21
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002943
db/journals/ijtm/ijtm21.html#MeulenL01
Steffen Kinkel
Eva Kirner
Heidi Armbruster
Angela Jager
Relevance and innovation of production-related services in manufacturing industry.
263-273
2011
55
IJTM
3/4
https://doi.org/10.1504/IJTM.2011.041952
db/journals/ijtm/ijtm55.html#KinkelKAJ11
Alan Pilkington
Romano Dyerson
Extending simultaneous engineering: electric vehicle supply chains and new product development.
74-88
2002
23
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2002.002999
db/journals/ijtm/ijtm23.html#PilkingtonD02
Fengyi Lin
Shuching Chou
Wei-Kang Wang
IS practitioners' views on core factors of effective IT governance for Taiwan SMEs.
252-269
2011
54
IJTM
2/3
https://doi.org/10.1504/IJTM.2011.039314
db/journals/ijtm/ijtm54.html#LinCW11
Umut Asan
Seckin Polat
Ron Sanchez
Scenario-driven modular design in managing market uncertainty.
459-487
2008
42
IJTM
4
https://doi.org/10.1504/IJTM.2008.019386
db/journals/ijtm/ijtm42.html#AsanPS08
Satoshi Yoshida
Effective reactions against disruptive innovations - the case of Japan's electronics industry.
119-138
2010
50
IJTM
2
https://doi.org/10.1504/IJTM.2010.032269
db/journals/ijtm/ijtm50.html#Yoshida10
Carlos A. S. Passos
Branca Regina Cantisano Terra
Andre T. Furtado
Conceicao Vedovello
Guilherme Plonski
Improving university-industry partnership - the Brazilian experience through the scientific and technological development support program (PADCT III).
475-487
2004
27
IJTM
5
https://doi.org/10.1504/IJTM.2004.004284
db/journals/ijtm/ijtm27.html#PassosTFVP04
Amrik S. Sohal
Simon Moss
Lionel Ng
Using information technology productively: practices and factors that enhance the success of IT.
340-353
2000
20
IJTM
3/4
https://doi.org/10.1504/IJTM.2000.002872
db/journals/ijtm/ijtm20.html#SohalMN00
Tae Kyung Sung
Incubators and business ventures in Korea: implications for manpower policy.
248-267
2007
38
IJTM
3
https://doi.org/10.1504/IJTM.2007.012713
db/journals/ijtm/ijtm38.html#Sung07
Robert Kaiser
Michael Liecke
Regional knowledge dynamics in the biotechnology industry: a conceptual framework for micro-level analysis.
371-385
2009
46
IJTM
3/4
https://doi.org/10.1504/IJTM.2009.023386
db/journals/ijtm/ijtm46.html#KaiserL09
Antonella Martini
Luca Gastaldi
Mariano Corso
Mats Magnusson
Bjørge Timenes Laugen
Continuously innovating the study of continuous innovation: from actionable knowledge to universal theory in continuous innovation research.
157-178
2012
60
IJTM
3/4
https://doi.org/10.1504/IJTM.2012.049439
db/journals/ijtm/ijtm60.html#MartiniGCML12
Cristina Quintana-Garcia
Carlos A. Benavides-Velasco
Searching for complementary technological knowledge and downstream competences: clustering and cooperation.
262-283
2006
35
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2006.009238
db/journals/ijtm/ijtm35.html#Quintana-GarciaB06
Ronen Mir
Outdoor science centres.
390-404
2003
25
IJTM
5
https://doi.org/10.1504/IJTM.2003.003108
db/journals/ijtm/ijtm25.html#Mir03
Changsu Kim
Sam Beldona
Farok J. Contractor
Alliance and technology networks: an empirical study on technology learning.
29-44
2007
38
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.012428
db/journals/ijtm/ijtm38.html#KimBC07
Paolo Neirotti
Emilio Paolucci
Elisabetta Raguseo
Is it all about size? Comparing organisational and environmental antecedents of IT assimilation in small and medium-sized enterprises.
82-108
2013
61
IJTM
1
https://doi.org/10.1504/IJTM.2013.050245
db/journals/ijtm/ijtm61.html#NeirottiPR13
Alexander K. Arrow
Intangible asset deployment in technology-rich companies: how does innovation affect return on assets?
375-390
2002
24
IJTM
4
https://doi.org/10.1504/IJTM.2002.003061
db/journals/ijtm/ijtm24.html#Arrow02
Eugenio Corti
C. lo Storto
M. Di Giacomo
P. C. Ravasio
Renewal strategies in the IPM Group: the role of the new research centre.
458-480
2002
23
IJTM
5
https://doi.org/10.1504/IJTM.2002.003021
db/journals/ijtm/ijtm23.html#CortiSGR02
Beaven S. J. Wiggett
Gillian Marcelle
Ecodesign in South African firms - how feasible?
104-124
2013
63
IJTM
1/2
https://doi.org/10.1504/IJTM.2013.055581
db/journals/ijtm/ijtm63.html#WiggettM13
Allan Macpherson
Oswald Jones
Michael Zhang
Virtual reality and innovation networks: opportunity exploitation in dynamic SMEs.
49-66
2005
30
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006345
db/journals/ijtm/ijtm30.html#MacphersonJZ05
Jingjing Zhang
Juan D. Rogers
The technological innovation performance of Chinese firms: the role of industrial and academic R&D, FDI and the markets in firm patenting.
518-543
2009
48
IJTM
4
https://doi.org/10.1504/IJTM.2009.026692
db/journals/ijtm/ijtm48.html#ZhangR09
Anne Wan-Ling Hu
An empirical test of a use-diffusion model for Taiwan mobile digital TV.
248-263
2007
39
IJTM
3/4
https://doi.org/10.1504/IJTM.2007.013494
db/journals/ijtm/ijtm39.html#Hu07
Tim Kotnour
Timothy R. Bollo
Strategic management of a transformation in a multi-program technology program involving convergence and divergence of programs: observations from NASA.
257-272
2011
53
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2011.038593
db/journals/ijtm/ijtm53.html#KotnourB11
Marc Zolghadri
Philippe Girard
Claude Baron
Michel Aldanondo
A general framework for new product development projects.
250-262
2011
55
IJTM
3/4
https://doi.org/10.1504/IJTM.2011.041951
db/journals/ijtm/ijtm55.html#ZolghadriGBA11
Will Geoghegan
Conor O'Kane
Ciara Fitzgerald
Technology transfer offices as a nexus within the triple helix: the progression of the university's role.
255-277
2015
68
IJTM
3/4
https://doi.org/10.1504/IJTM.2015.069660
db/journals/ijtm/ijtm68.html#GeogheganOF15
Richard J. Gilbert
Antitrust policy for the licensing of intellectual property: an international comparison.
206-223
2000
19
IJTM
1/2
https://doi.org/10.1504/IJTM.2000.002801
db/journals/ijtm/ijtm19.html#Gilbert00
Jean-Jacques Chanaron
Dominique R. Jolly
Klas Eric Soderquist
Technological management: a tentative research agenda.
618-629
2002
23
IJTM
6
https://doi.org/10.1504/IJTM.2002.003029
db/journals/ijtm/ijtm23.html#ChanaronJS02
Rosa Grimaldi
Nick von Tunzelmann
Sectoral determinants of performance in collaborative R&D projects.
766-778
2003
25
IJTM
8
https://doi.org/10.1504/IJTM.2003.003136
db/journals/ijtm/ijtm25.html#GrimaldiT03
Se-Hwa Wu
Liang-Yang Lin
Mu-Yen Hsu
Intellectual capital, dynamic capabilities and innovative performance of organisations.
279-296
2007
39
IJTM
3/4
https://doi.org/10.1504/IJTM.2007.013496
db/journals/ijtm/ijtm39.html#WuLH07
Robert Hawley
Anna Raath
Future skill requirements for UK engineers and technologists: a review of the current position.
630-642
2002
23
IJTM
6
https://doi.org/10.1504/IJTM.2002.003030
db/journals/ijtm/ijtm23.html#HawleyR02
Grace M. Bochenek
James M. Ragusa
Linda C. Malone
Integrating virtual 3-D display systems into product design reviews: some insights from empirical testing.
340-352
2001
21
IJTM
3/4
https://doi.org/10.1504/IJTM.2001.002917
db/journals/ijtm/ijtm21.html#BochenekRM01
David D. C. Tarn
Industry as the knowledge base: the way Asians integrate knowledge from academic, industrial, and public sectors.
360-378
2006
34
IJTM
3/4
https://doi.org/10.1504/IJTM.2006.009464
db/journals/ijtm/ijtm34.html#Tarn06
Dian-Yan Liou
Justin D. Liou
The structure and evolution of knowledge clusters: a system perspective.
307-325
2009
46
IJTM
3/4
https://doi.org/10.1504/IJTM.2009.023378
db/journals/ijtm/ijtm46.html#LiouL09
Grit Laudel
Collaboration, creativity and rewards: why and how scientists collaborate.
762-781
2001
22
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002990
db/journals/ijtm/ijtm22.html#Laudel01
Keith E. Maskus
Guifang Yang
Intellectual property rights, foreign direct investment and competition issues in developing countries.
22-34
2000
19
IJTM
1/2
https://doi.org/10.1504/IJTM.2000.002806
db/journals/ijtm/ijtm19.html#MaskusY00
Bilge Erdogan
Chimay J. Anumba
Dino Bouchlaghem
Yasemin Nielsen
An innovative integrated framework towards effective collaboration environments in construction.
139-168
2010
50
IJTM
2
https://doi.org/10.1504/IJTM.2010.032270
db/journals/ijtm/ijtm50.html#ErdoganABN10
Aino Kianto
Development and validation of a survey instrument for measuring organisational renewal capability.
69-88
2008
42
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.018061
db/journals/ijtm/ijtm42.html#Kianto08
Nick Bontis
Alexander Serenko
Longitudinal knowledge strategising in a long-term healthcare organisation.
250-271
2009
47
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2009.024125
db/journals/ijtm/ijtm47.html#BontisS09
Wan-Yu Chen
Bi-Fen Hsu
Mei-Ling Wang
Yen-Yu Lin
Fostering knowledge sharing through human resource management in R&D teams.
309-330
2011
53
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2011.038596
db/journals/ijtm/ijtm53.html#ChenHWL11
José Eduardo Cassiolato
Marina H. S. Szapiro
Helena Maria Martins Lastres
Local system of innovation under strain: the impacts of structural change in the telecommunications cluster of Campinas, Brazil.
680-704
2002
24
IJTM
7/8
https://doi.org/10.1504/IJTM.2002.003078
db/journals/ijtm/ijtm24.html#CassiolatoSL02
Lynn D. Dierking
Jessica J. Luke
Kirsten S. Büchner
Science and technology centres - rich resources for free-choice learning in a knowledge-based society.
441-459
2003
25
IJTM
5
https://doi.org/10.1504/IJTM.2003.003112
db/journals/ijtm/ijtm25.html#DierkingLB03
Michel Delorme
L. Martin Cloutier
The growth of Quebec's biotechnology firms and the implications of underinvestment in strategic competencies.
240-255
2005
31
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.006633
db/journals/ijtm/ijtm31.html#DelormeC05
Henrik Sattler
Appropriability of product innovations: an empirical analysis for Germany.
502-516
2003
26
IJTM
5/6
https://doi.org/10.1504/IJTM.2003.003420
db/journals/ijtm/ijtm26.html#Sattler03
David Lei
Competition, cooperation and learning: the new dynamics of strategy and organisation design for the innovation net.
694-716
2003
26
IJTM
7
https://doi.org/10.1504/IJTM.2003.003452
db/journals/ijtm/ijtm26.html#Lei03
Mario Risso
A horizontal approach to implementing corporate social responsibility in international supply chains.
64-82
2012
58
IJTM
1/2
https://doi.org/10.1504/IJTM.2012.045789
db/journals/ijtm/ijtm58.html#Risso12
Ron Johnston
Foresight - refining the process.
711-725
2001
21
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002945
db/journals/ijtm/ijtm21.html#Johnston01
Luca Vincenzo Ballestra
Manlio Del Giudice
Maria Rosaria Della Peruta
An analysis of a model for the diffusion of engineering innovations under multi-firm competition.
346-357
2014
66
IJTM
4
https://doi.org/10.1504/IJTM.2014.064992
db/journals/ijtm/ijtm66.html#BallestraGP14
Denton Marks
Transition, privatisation and economics as a management technology.
529-539
2001
21
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002932
db/journals/ijtm/ijtm21.html#Marks01
Yantai Chen
Dimitris Assimakopoulos
Hongming Xie
Renyong Chi
Evolution of regional scientific collaboration networks: China-Europe emerging collaborations on nano-science.
185-211
2013
63
IJTM
3/4
https://doi.org/10.1504/IJTM.2013.056898
db/journals/ijtm/ijtm63.html#ChenAXC13
Cheng-Wen Lee
Market performance and technological knowledge transfer of foreign subsidiaries' network embeddedness in Taiwan's electrical and electronic industry.
115-139
2008
44
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.020701
db/journals/ijtm/ijtm44.html#Lee08a
C. Annique Un
Angeles Montoro-Sánchez
R&D investment and entrepreneurial technological capabilities: existing capabilities as determinants of new capabilities.
29-52
2011
54
IJTM
1
https://doi.org/10.1504/IJTM.2011.038828
db/journals/ijtm/ijtm54.html#UnM11
Thomas Abrell
Markus Durstewitz
The role of customer and user knowledge in internal corporate venturing: the viewpoint of the corporate entrepreneur.
171-185
2016
71
IJTM
3/4
https://doi.org/10.1504/IJTM.2016.078567
db/journals/ijtm/ijtm71.html#AbrellD16
Christine W. Soo
Timothy M. Devinney
David F. Midgley
External knowledge acquisition, creativity and learning in organisational problem solving.
137-159
2007
38
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.012433
db/journals/ijtm/ijtm38.html#SooDM07
Peter Gammeltoft
Embedded flexible collaboration and development of local capabilities: a case study of the Indonesian electronics industry.
743-766
2003
26
IJTM
7
https://doi.org/10.1504/IJTM.2003.003454
db/journals/ijtm/ijtm26.html#Gammeltoft03
Amnon Frenkel
Shlomo Maital
Hariolf Grupp
Measuring dynamic technical change: a technometric approach.
429-441
2000
20
IJTM
3/4
https://doi.org/10.1504/IJTM.2000.002864
db/journals/ijtm/ijtm20.html#FrenkelMG00
Peilei Fan
Developing innovation-oriented strategies: lessons from Chinese mobile phone firms.
168-193
2010
51
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2010.033801
db/journals/ijtm/ijtm51.html#Fan10
Rainer Harms
Carl Henning Reschke
Sascha Kraus
Matthias Fink
Antecedents of innovation and growth: analysing the impact of entrepreneurial orientation and goal-oriented management.
135-152
2010
52
IJTM
1/2
https://doi.org/10.1504/IJTM.2010.035859
db/journals/ijtm/ijtm52.html#HarmsRKF10
Keith Sloan
Terry Sloan
Firm size and its impact on continuous improvement.
241-255
2011
56
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2011.042985
db/journals/ijtm/ijtm56.html#SloanS11a
Maj-Britt Juhl Poulsen
Competition and cooperation: what roles in scientific dynamics?
782-793
2001
22
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002991
db/journals/ijtm/ijtm22.html#Poulsen01
Yi-Yu Chen
George F. Farris
Yi-Hua Chen
Effects of technology cycles on strategic alliances.
121-148
2011
53
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2011.038587
db/journals/ijtm/ijtm53.html#ChenFC11
Williams E. Nwagwu
Allam Ahmed
Building open access in Africa.
82-101
2009
45
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.021521
db/journals/ijtm/ijtm45.html#NwagwuA09
Lars Nilsson
Mattias Elg
Bo Bergman
Managing ideas for the development of new products.
498-513
2002
24
IJTM
5/6
https://doi.org/10.1504/IJTM.2002.003067
db/journals/ijtm/ijtm24.html#NilssonEB02
Li-Fen Liao
Impact of manager's social power on R&D employees' knowledge-sharing behaviour.
169-182
2008
41
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.015990
db/journals/ijtm/ijtm41.html#Liao08
Bert Enserink
The entrenchment of controversial technology: a framework for monitoring and mapping strategic alignments.
397-407
2000
19
IJTM
3/4/5
https://doi.org/10.1504/IJTM.2000.002818
db/journals/ijtm/ijtm19.html#Enserink00
Leo Tan Wee Hin
R. Subramaniam
Role of scientific academies and scientific societies in promoting science and technology: experiences from Singapore.
38-50
2009
46
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.022674
db/journals/ijtm/ijtm46.html#HinS09a
Chang Woo Yoo
Junmo Kim
Recovering from science: how far can we push?
348-361
2005
29
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.006011
db/journals/ijtm/ijtm29.html#YooK05
Jukka Hallikas
Hannu Kärkkäinen
Hannele Lampela
Learning in networks: an exploration from innovation perspective.
229-243
2009
45
IJTM
3/4
https://doi.org/10.1504/IJTM.2009.022650
db/journals/ijtm/ijtm45.html#HallikasKL09
Christopher K. Bart
The relationship between mission and innovativeness in the airline industry: an exploratory investigation.
475-489
2000
20
IJTM
5/6/7/8
https://doi.org/10.1504/IJTM.2000.002878
db/journals/ijtm/ijtm20.html#Bart00
Ian Barclay
Benchmarking best practice in SMEs for growth.
234-254
2006
33
IJTM
2/3
https://doi.org/10.1504/IJTM.2006.008313
db/journals/ijtm/ijtm33.html#Barclay06
Henry Chesbrough
Andrea Prencipe
Networks of innovation and modularity: a dynamic perspective.
414-425
2008
42
IJTM
4
https://doi.org/10.1504/IJTM.2008.019383
db/journals/ijtm/ijtm42.html#ChesbroughP08
José Albors-Garrigos
Jose Hervas-Oliver
Patricia Beatriz Marquez
When technology innovation is not enough, new competitive paradigms, revisiting the Spanish ceramic tile sector.
406-426
2008
44
IJTM
3/4
https://doi.org/10.1504/IJTM.2008.021047
db/journals/ijtm/ijtm44.html#Albors-GarrigosHM08
Phillip T. Meade
Luis Rabelo
Albert T. Jones
Applications of chaos and complexity theories to the technology adoption life cycle: case studies in the hard-drive, microprocessor, and server high-tech industries.
318-335
2006
36
IJTM
4
https://doi.org/10.1504/IJTM.2006.010270
db/journals/ijtm/ijtm36.html#MeadeRJ06
Antonio Volpentesta
Salvatore Ammirato
Roberto Palmieri
Investigating effects of security incident awareness on information risk perception.
304-320
2011
54
IJTM
2/3
https://doi.org/10.1504/IJTM.2011.039317
db/journals/ijtm/ijtm54.html#VolpentestaAP11
Fernanda Ribeiro Cahen
Moacir De Miranda Oliveira Jr.
Felipe Mendes Borini
The internationalisation of new technology-based firms from emerging markets.
23-44
2017
74
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2017.10004282
db/journals/ijtm/ijtm74.html#CahenOB17
Omar A. El Sawy
Inger V. Eriksson
Arjan Raven
Sven A. Carlsson
Understanding shared knowledge creation spaces around business processes: precursors to process innovation implementation.
149-173
2001
22
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2001.002959
db/journals/ijtm/ijtm22.html#SawyERC01
Berna Beyhan
Annika Rickne
Motivations of academics to interact with industry: the case of nanoscience.
159-175
2015
68
IJTM
3/4
https://doi.org/10.1504/IJTM.2015.069663
db/journals/ijtm/ijtm68.html#BeyhanR15
Iuan-Yuan Lu
Liang-Hung Lin
Guo-Chiang Wu
Applying options to evaluate service innovations in the automotive industry.
339-349
2005
32
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.007337
db/journals/ijtm/ijtm32.html#LuLW05
Frank Barry
Third-level education, foreign direct investment and economic boom in Ireland.
198-219
2007
38
IJTM
3
https://doi.org/10.1504/IJTM.2007.012710
db/journals/ijtm/ijtm38.html#Barry07
Juneseuk Shin
New business model creation through the triple helix of young entrepreneurs, SNSs, and smart devices.
302-318
2014
66
IJTM
4
https://doi.org/10.1504/IJTM.2014.064969
db/journals/ijtm/ijtm66.html#Shin14
Bin Guo
Xiaoling Chen
Why are the industrial firms of emerging economies short-termistic in innovation? Industry-level evidence from Chinese manufacturing.
273-299
2012
59
IJTM
3/4
https://doi.org/10.1504/IJTM.2012.047247
db/journals/ijtm/ijtm59.html#GuoC12
David P. Lepak
Jennifer A. Marrone
Riki Takeuchi
The relativity of HR systems: conceptualising the impact of desired employee contributions and HR philosophy.
639-655
2004
27
IJTM
6/7
https://doi.org/10.1504/IJTM.2004.004907
db/journals/ijtm/ijtm27.html#LepakMT04
Ahti A. Salo
Incentives in technology foresight.
694-710
2001
21
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002944
db/journals/ijtm/ijtm21.html#Salo01
Yumiko Myoken
Demand-orientated policy on leading-edge industry and technology: public procurement for innovation.
196-219
2010
49
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2010.029418
db/journals/ijtm/ijtm49.html#Myoken10
Jeremy Howells
Maria Nedeva
The international dimension to industry-academic links.
5-17
2003
25
IJTM
1/2
https://doi.org/10.1504/IJTM.2003.003086
db/journals/ijtm/ijtm25.html#HowellsN03
Tzu-An Chiang
Shen-Tsu Wang
An evaluation and enhancement approach of the carbon footprints-based environmentally sustainable service competitiveness for coffee shops.
4-24
2016
70
IJTM
1
https://doi.org/10.1504/IJTM.2016.074646
db/journals/ijtm/ijtm70.html#ChiangW16
Nivedita Agarwal
Alexander Brem
Strategic business transformation through technology convergence: implications from General Electric's industrial internet initiative.
196-214
2015
67
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2015.068224
db/journals/ijtm/ijtm67.html#AgarwalB15
Shigeru Suzuki
Technopolis: science parks in Japan.
582-601
2004
28
IJTM
3/4/5/6
https://doi.org/10.1504/IJTM.2004.005310
db/journals/ijtm/ijtm28.html#Suzuki04
Wen-Hsien Tsai
Yi-Wen Fan
Jun-Der Leu
Li-Wen Chou
Ching-Chien Yang
The relationship between implementation variables and performance improvement of ERP systems.
350-373
2007
38
IJTM
4
https://doi.org/10.1504/IJTM.2007.013406
db/journals/ijtm/ijtm38.html#TsaiFLCY07
Ping Yu
Jing-Jyi Wu
I-Heng Chen
Ying-Tzu Lin
Is playfulness a benefit to work? Empirical evidence of professionals in Taiwan.
412-429
2007
39
IJTM
3/4
https://doi.org/10.1504/IJTM.2007.013503
db/journals/ijtm/ijtm39.html#YuWCL07
Chi Chen
Wenchang Fang
Shiuh-Sheng Hsu
A study on technological trajectory of light emitting diode in Taiwan by using patent data.
83-104
2016
72
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2016.10001574
db/journals/ijtm/ijtm72.html#ChenFH16
Mohamed A. Youssef
Eyad M. Youssef
The synergisitic impact of time-based technologies on manufacturing competitive priorities.
245-268
2015
67
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2015.068213
db/journals/ijtm/ijtm67.html#YoussefY15
Paul Lillrank
Hanna Kostama
Product/process culture and change management in complex organisations.
73-82
2001
22
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2001.002955
db/journals/ijtm/ijtm22.html#LillrankK01
Peter Lindelof
Hans Lofsten
Academic versus corporate new technology-based firms in Swedish science parks: an analysis of performance, business networks and financing.
334-357
2005
31
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.006638
db/journals/ijtm/ijtm31.html#LindelofL05
B. Bowonder
T. Miyake
Technology management: a knowledge ecology perspective.
662-684
2000
19
IJTM
7/8
https://doi.org/10.1504/IJTM.2000.002841
db/journals/ijtm/ijtm19.html#BowonderM00
Junmo Kim
From consortium to e-science: an evolutionary track of organising technology development.
291-310
2008
41
IJTM
3/4
https://doi.org/10.1504/IJTM.2008.016785
db/journals/ijtm/ijtm41.html#Kim08
Daomi Lin
Jiangyong Lu
Xiaohui Liu
Seong-Jin Choi
Returnee CEO and innovation in Chinese high-tech SMEs.
151-171
2014
65
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2014.060947
db/journals/ijtm/ijtm65.html#LinLLC14
Totti Könnölä
Ahti Salo
Ville Brummer
Foresight for European coordination: developing national priorities for the Forest-Based Sector Technology Platform.
438-459
2011
54
IJTM
4
https://doi.org/10.1504/IJTM.2011.041583
db/journals/ijtm/ijtm54.html#KonnolaSB11
María Pilar Latorre-Martínez
Tatiana Iñíguez-Berrozpe
Marta Plumed-Lasarte
Image-focused social media for a market analysis of tourism consumption.
17-30
2014
64
IJTM
1
https://doi.org/10.1504/IJTM.2014.059234
db/journals/ijtm/ijtm64.html#Latorre-MartinezIP14
W. Austin Spivey
J. Michael Munson
Donald R. Spoon
A generic value tree for high-technology enterprises.
219-235
2002
24
IJTM
2/3
https://doi.org/10.1504/IJTM.2002.003053
db/journals/ijtm/ijtm24.html#SpiveyMS02
Marcela Miozzo
Paul Dewick
Networks and innovation in European construction: benefits from inter-organisational cooperation in a fragmented industry.
68-92
2004
27
IJTM
1
https://doi.org/10.1504/IJTM.2004.003882
db/journals/ijtm/ijtm27.html#MiozzoD04
M. Cristani
C. E. Majorana
V. A. Salomoni
Knowledge Representation issues in structural engineering: a framework for application in the case of structures in healthcare.
207-238
2009
47
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2009.024123
db/journals/ijtm/ijtm47.html#CristaniMS09
Erik Baark
The making of science and technology policy in China.
1-21
2001
21
IJTM
1/2
https://doi.org/10.1504/IJTM.2001.002898
db/journals/ijtm/ijtm21.html#Baark01
Calestous Juma
Karen Fang
Derya Honca
Jorge Huete-Perez
Victor Konde
Sung H. Lee
Jimena Arenas
Adrian Ivinson
Hilary Robinson
Seema Singh
Global governance of technology: meeting the needs of developing countries.
629-655
2001
22
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002982
db/journals/ijtm/ijtm22.html#JumaFHHKLAIRS01
Sajed M. Abukhader
Gunilla Jonson
E-commerce and the environment: a gateway to the renewal of greening supply chains.
274-288
2004
28
IJTM
2
https://doi.org/10.1504/IJTM.2004.005066
db/journals/ijtm/ijtm28.html#AbukhaderJ04
Leo Tan Wee Hin
R. Subramaniam
Scientific academies and scientific societies as agents for promoting science culture in developing countries.
132-145
2009
46
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.022681
db/journals/ijtm/ijtm46.html#HinS09b
Victor Tang
Man-Hyung Lee
International joint venture of two giants in the CRT industry: strategy analysis using system dynamics.
511-535
2002
23
IJTM
6
https://doi.org/10.1504/IJTM.2002.003024
db/journals/ijtm/ijtm23.html#TangL02
Patrick McLaughlin
John Bessant
Palie Smart
Developing an organisation culture to facilitate radical innovation.
298-323
2008
44
IJTM
3/4
https://doi.org/10.1504/IJTM.2008.021041
db/journals/ijtm/ijtm44.html#McLaughlinBS08
Regis Cabral
Still digging, still planting: the Royal Swedish Academy of Sciences - knowledge yesterday, knowledge today and knowledge for tomorrow.
51-70
2009
46
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.022675
db/journals/ijtm/ijtm46.html#Cabral09
Katleen Baeyens
Tom Vanacker
Sophie Manigart
Venture capitalists' selection process: the case of biotechnology proposals.
28-46
2006
34
IJTM
1/2
https://doi.org/10.1504/IJTM.2006.009446
db/journals/ijtm/ijtm34.html#BaeyensVM06
J.-C. Spender
Data, meaning and practice: how the knowledge-based view can clarify technology's relationship with organisations.
178-196
2007
38
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.012435
db/journals/ijtm/ijtm38.html#Spender07
J. David Roessner
Alan L. Porter
Nils C. Newman
Xiao-Yin Jin
A comparison of recent assessments of the high-tech competitiveness of nations.
536-557
2002
23
IJTM
6
https://doi.org/10.1504/IJTM.2002.003025
db/journals/ijtm/ijtm23.html#RoessnerPNJ02
Ferdinand Jaspers
Jan van den Ende
Open innovation and systems integration: how and why firms know more than they make.
275-294
2010
52
IJTM
3/4
https://doi.org/10.1504/IJTM.2010.035977
db/journals/ijtm/ijtm52.html#JaspersE10
Walter Peissl
Technology foresight - more than fashion?
653-660
2001
21
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002941
db/journals/ijtm/ijtm21.html#Peissl01
Jun Li
Jay Mitra
Harry Matlay
E-commerce and management of channel conflict: evidence from small manufacturing firms in the UK.
747-766
2004
28
IJTM
7/8
https://doi.org/10.1504/IJTM.2004.005781
db/journals/ijtm/ijtm28.html#LiMM04
N. R. Srinivasa Raghavan
Bishal B. Shreshtha
S. V. Rajeev
Object-oriented design and implementation of a web-enabled beer game for illustrating the bullwhip effect in supply chains.
191-205
2004
28
IJTM
2
https://doi.org/10.1504/IJTM.2004.005061
db/journals/ijtm/ijtm28.html#RaghavanSR04
Sadaharu Tezuka
Kiyoshi Niwa
Knowledge sharing in inter-organisational intelligence: R&D-based venture alliance community cases in Japan.
714-728
2004
28
IJTM
7/8
https://doi.org/10.1504/IJTM.2004.005779
db/journals/ijtm/ijtm28.html#TezukaN04
Maximilian von Zedtwitz
Oliver Gassmann
Managing customer oriented research.
165-193
2002
24
IJTM
2/3
https://doi.org/10.1504/IJTM.2002.003050
db/journals/ijtm/ijtm24.html#ZedtwitzG02
Maciej Urbaniak
The meaning of technological innovation in business-to-business marketing.
628-636
2001
21
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002939
db/journals/ijtm/ijtm21.html#Urbaniak01
Abiodun A. Egbetokun
Willie Siyanbola
M. Sanni
O. O. Olamade
A. A. Adeniyi
I. A. Irefin
What drives innovation? Inferences from an industry-wide survey in Nigeria.
123-140
2009
45
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.021524
db/journals/ijtm/ijtm45.html#EgbetokunSSOAI09
Khleef Al-Khawaldeh
Terry Sloan
Continuous improvement in manufacturing companies in Jordan.
323-331
2007
37
IJTM
3/4
https://doi.org/10.1504/IJTM.2007.012266
db/journals/ijtm/ijtm37.html#Al-KhawaldehS07
Hans Dietmar Burgel
Reorganisation and restructuring methods in R&D.
278-293
2007
40
IJTM
4
https://doi.org/10.1504/IJTM.2007.015753
db/journals/ijtm/ijtm40.html#Burgel07
Dilupa Nakandala
Tim Turpin
Responses of successful local firms to changing foreign partnership characteristics: a model of dynamic technology management strategies.
156-176
2013
61
IJTM
2
https://doi.org/10.1504/IJTM.2013.052153
db/journals/ijtm/ijtm61.html#NakandalaT13
Kalevi Kyläheiko
Veli-Matti Virolainen
Markku Tuominen
Emergence of the supply network in Finnish industry: experiment in theoretical reconstruction.
605-613
2003
25
IJTM
6/7
https://doi.org/10.1504/IJTM.2003.003125
db/journals/ijtm/ijtm25.html#KylaheikoVT03
Brenda McCabe
Belief networks for engineering applications.
257-270
2001
21
IJTM
3/4
https://doi.org/10.1504/IJTM.2001.002911
db/journals/ijtm/ijtm21.html#McCabe01
Jesus Galende
The appropriation of the results of innovative activity.
107-135
2006
35
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2006.009231
db/journals/ijtm/ijtm35.html#Galende06
Jai-Beom Kim
Chong Ju Choi
Stephen Chen
Innovation management and intellectual property in knowledge-oriented economies.
295-304
2006
36
IJTM
4
https://doi.org/10.1504/IJTM.2006.010268
db/journals/ijtm/ijtm36.html#KimCC06
Yuandi Wang
Nadine Roijakkers
Wim Vanhaverbeke
Jin Chen
How Chinese firms employ open innovation to strengthen their innovative performance.
235-254
2012
59
IJTM
3/4
https://doi.org/10.1504/IJTM.2012.047245
db/journals/ijtm/ijtm59.html#WangRVC12
Liang-Yuan Fang
Se-Hwa Wu
Accelerating innovation through knowledge co-evolution: a case study in the Taiwan semiconductor industry.
183-195
2006
33
IJTM
2/3
https://doi.org/10.1504/IJTM.2006.008310
db/journals/ijtm/ijtm33.html#FangW06
Vittorio Biondi
Fabio Iraldo
Sandra Meredith
Achieving sustainability through environmental innovation: the role of SMEs.
612-626
2002
24
IJTM
5/6
https://doi.org/10.1504/IJTM.2002.003074
db/journals/ijtm/ijtm24.html#BiondiIM02
Eliezer Geisler
On the ubiquitous inadequacy of co-variation design in strategy research.
558-577
2002
23
IJTM
6
https://doi.org/10.1504/IJTM.2002.003026
db/journals/ijtm/ijtm23.html#Geisler02
Terry Janssen
Andrew P. Sage
A support system for multiple perspectives knowledge management and conflict resolution.
472-490
2000
19
IJTM
3/4/5
https://doi.org/10.1504/IJTM.2000.002820
db/journals/ijtm/ijtm19.html#JanssenS00
Vincent Cho
A study on the impact of Organisational Learning to the effectiveness of Electronic Document Management Systems.
182-207
2010
50
IJTM
2
https://doi.org/10.1504/IJTM.2010.032272
db/journals/ijtm/ijtm50.html#Cho10
Jens Ove Riis
Orchestrating industrial development.
246-260
2002
23
IJTM
4
https://doi.org/10.1504/IJTM.2002.003009
db/journals/ijtm/ijtm23.html#Riis02
Philip Shapira
Ryuzo Furukawa
Evaluating a large-scale research and development program in Japan: methods, findings and insights.
166-190
2003
26
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2003.003368
db/journals/ijtm/ijtm26.html#ShapiraF03
Shuchih Ernest Chang
Ying Chen Chou
A virtual enterprise based information system architecture for the tourism industry.
374-391
2007
38
IJTM
4
https://doi.org/10.1504/IJTM.2007.013407
db/journals/ijtm/ijtm38.html#ChangC07
Susan M. Stocklmayer
What makes a successful outreach program? An outline of the Shell Questacon Science Circus.
405-412
2003
25
IJTM
5
https://doi.org/10.1504/IJTM.2003.003109
db/journals/ijtm/ijtm25.html#Stocklmayer03
Emiel F. M. Wubben
Maarten Batterink
Christos Kolympiris
Ron G. M. Kemp
Onno S. W. F. Omta
Profiting from external knowledge: the impact of different external knowledge acquisition strategies on innovation performance.
139-165
2015
69
IJTM
2
https://doi.org/10.1504/IJTM.2015.071552
db/journals/ijtm/ijtm69.html#WubbenBKKO15
Ellen Enkel
Attributes required for profiting from open innovation in networks.
344-371
2010
52
IJTM
3/4
https://doi.org/10.1504/IJTM.2010.035980
db/journals/ijtm/ijtm52.html#Enkel10
Marcus Wagner
Determinants of acquisition value: the role of target and acquirer characteristics.
56-74
2013
62
IJTM
1
https://doi.org/10.1504/IJTM.2013.053031
db/journals/ijtm/ijtm62.html#Wagner13
Michael Rothgang
Lutz Trettin
Bernhard Lageman
How to regain funds from technology promotion programs. Results from an evaluation of the financial instruments used in public R&D funding of incumbent SME.
247-269
2003
26
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2003.003372
db/journals/ijtm/ijtm26.html#RothgangTL03
Paul Hyland
Robert Mellor
Terry Sloan
Performance measurement and continuous improvement: are they linked to manufacturing strategy?
237-246
2007
37
IJTM
3/4
https://doi.org/10.1504/IJTM.2007.012260
db/journals/ijtm/ijtm37.html#HylandMS07
Jung-Ho Lu
Der-Juinn Horng
The role of directors' and officers' insurance in corporate governance: evidence from the high-tech industry in Taiwan.
229-247
2007
40
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2007.013536
db/journals/ijtm/ijtm40.html#LuH07
Kärt Rõigas
Pierre Mohnen
Urmas Varblane
Which firms use universities as cooperation partners? - A comparative view in Europe.
32-57
2018
76
IJTM
1/2
https://doi.org/10.1504/IJTM.2018.10009595
db/journals/ijtm/ijtm76.html#RoigasMV18
Miltiadis D. Lytras
Evangelos Sakkopoulos
Patricia Ordóñez de Pablos
Semantic Web and Knowledge Management for the health domain: state of the art and challenges for the Seventh Framework Programme (FP7) of the European Union (2007-2013).
239-249
2009
47
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2009.024124
db/journals/ijtm/ijtm47.html#LytrasSP09
Miltiadis D. Lytras
Patricia Ordóñez de Pablos
Managing, measuring and reporting knowledge-based resources in hospitals.
96-113
2009
47
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2009.024116
db/journals/ijtm/ijtm47.html#LytrasP09
Biswadip Ghosh
Judy E. Scott
Managing clinical knowledge among hospital nurses.
57-74
2009
47
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2009.024114
db/journals/ijtm/ijtm47.html#GhoshS09
Jaidee Motwani
Sunil Babbar
Sameer Prasad
Operations management in transitional countries.
586-603
2001
21
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002936
db/journals/ijtm/ijtm21.html#MotwaniBP01
Leo Tan Wee Hin
R. Subramaniam
Scientific academies and scientific societies have come of age.
1-8
2009
46
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.022671
db/journals/ijtm/ijtm46.html#HinS09
Michael Steiner
Regional knowledge networks as evolving social technologies.
326-345
2003
26
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2003.003385
db/journals/ijtm/ijtm26.html#Steiner03
Sara Tessitore
Tiberio Daddi
Marco Frey
Eco-innovation and competitiveness in industrial clusters.
49-63
2012
58
IJTM
1/2
https://doi.org/10.1504/IJTM.2012.045788
db/journals/ijtm/ijtm58.html#TessitoreDF12
Masayuki Kondo
Networking for technology acquisition and transfer.
154-175
2005
32
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006822
db/journals/ijtm/ijtm32.html#Kondo05
Jie Zhao
Yuan Li
Yi Liu
Haowen Cai
Contingencies in collaborative innovation: matching organisational learning with strategic orientation and environmental munificence.
193-222
2013
62
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2013.055163
db/journals/ijtm/ijtm62.html#ZhaoLLC13
Rebecca Harding
New challenges for innovation systems: a cross-country comparison.
226-246
2003
26
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2003.003371
db/journals/ijtm/ijtm26.html#Harding03
Ernst Verwaal
Antonio J. Verdú-Jover
Arthur Recter
Transaction costs and organisational learning in strategic outsourcing relationships.
38-54
2008
41
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.015983
db/journals/ijtm/ijtm41.html#VerwaalVR08
John Cantwell
Yanli Zhang
Innovation and location in the multinational firm.
116-132
2011
54
IJTM
1
https://doi.org/10.1504/IJTM.2011.038832
db/journals/ijtm/ijtm54.html#CantwellZ11
Dilani Jayawarna
Alan W. Pearson
Application of Integrated Quality Management Systems to promote CI and learning in R&D organisations.
828-842
2003
26
IJTM
8
https://doi.org/10.1504/IJTM.2003.003392
db/journals/ijtm/ijtm26.html#JayawarnaP03
Daniele Regazzoni
Caterina Rizzi
Roberto Nani
A TRIZ-based approach to manage innovation and intellectual property.
274-285
2011
55
IJTM
3/4
https://doi.org/10.1504/IJTM.2011.041953
db/journals/ijtm/ijtm55.html#RegazzoniRN11
David Lei
Industry evolution and competence development: the imperatives of technological convergence.
699-738
2000
19
IJTM
7/8
https://doi.org/10.1504/IJTM.2000.002848
db/journals/ijtm/ijtm19.html#Lei00
Thierry Rayna
Ludmila Striukova
Large-scale open innovation: open source vs. patent pools.
477-496
2010
52
IJTM
3/4
https://doi.org/10.1504/IJTM.2010.035986
db/journals/ijtm/ijtm52.html#RaynaS10
Carlos A. Primo Braga
Carsten Fink
International transactions in intellectual property and developing countries.
35-56
2000
19
IJTM
1/2
https://doi.org/10.1504/IJTM.2000.002800
db/journals/ijtm/ijtm19.html#BragaF00
Ove Granstrand Chalmers
Corporate management of intellectual property in Japan.
121-148
2000
19
IJTM
1/2
https://doi.org/10.1504/IJTM.2000.002804
db/journals/ijtm/ijtm19.html#Chalmers00
Charles A. Snyder
Denise Johnson McManus
Larry T. Wilson
Corporate memory management: a knowledge management process model.
752-764
2000
20
IJTM
5/6/7/8
https://doi.org/10.1504/IJTM.2000.002894
db/journals/ijtm/ijtm20.html#SnyderMW00
Lotta Häkkinen
Impacts of international mergers and acquisitions on the logistics operations of manufacturing companies.
362-385
2005
29
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.006012
db/journals/ijtm/ijtm29.html#Hakkinen05
Ioana Stefan
Lars Bengtsson
Appropriability: a key to opening innovation internationally?
232-252
2016
71
IJTM
3/4
https://doi.org/10.1504/IJTM.2016.078570
db/journals/ijtm/ijtm71.html#StefanB16
Hannu Salmi
Science centres as learning laboratories: experiences of Heureka, the Finnish Science Centre.
460-476
2003
25
IJTM
5
https://doi.org/10.1504/IJTM.2003.003113
db/journals/ijtm/ijtm25.html#Salmi03
Vladimir B. Bokov
Mechanistic-statistical concurrent modelling techniques.
50-71
2007
37
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.011803
db/journals/ijtm/ijtm37.html#Bokov07
Alison McKay
Alan de Pennington
Towards an integrated description of product, process and supply chain.
203-220
2001
21
IJTM
3/4
https://doi.org/10.1504/IJTM.2001.002908
db/journals/ijtm/ijtm21.html#McKayP01
Chetan Kumaar Maini
REVA Electric car: a case study of innovation at RECC.
199-212
2005
32
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006824
db/journals/ijtm/ijtm32.html#Maini05
Hajime Eto
Market analysis of mathematics-based software in an expert-founded venture.
739-759
2000
19
IJTM
7/8
https://doi.org/10.1504/IJTM.2000.002843
db/journals/ijtm/ijtm19.html#Eto00
Yusen Xu
Jia Ma
Yaodi Lu
Innovation catch-up enabled by the window of opportunity in high-velocity markets and the intrinsic capabilities of an enterprise: the case of HTC.
93-116
2015
69
IJTM
2
https://doi.org/10.1504/IJTM.2015.071550
db/journals/ijtm/ijtm69.html#XuML15
Keith Sloan
Terry Sloan
Dispersion of continuous improvement and its impact on continuous improvement.
43-55
2011
55
IJTM
1/2
https://doi.org/10.1504/IJTM.2011.041679
db/journals/ijtm/ijtm55.html#SloanS11
Michel Bigand
Carine Deslee
Pascal Yim
Innovative product design for students-enterprises linked projects.
238-249
2011
55
IJTM
3/4
https://doi.org/10.1504/IJTM.2011.041950
db/journals/ijtm/ijtm55.html#BigandDY11
Alice Nakamura
Masao Nakamura
Firm performance, knowledge transfer and international joint ventures.
731-746
2004
27
IJTM
8
https://doi.org/10.1504/IJTM.2004.004991
db/journals/ijtm/ijtm27.html#NakamuraN04
Stefano Ronchi
Ross Chapman
Mariano Corso
Knowledge management in continuous product innovation: a contingent approach.
871-886
2003
26
IJTM
8
https://doi.org/10.1504/IJTM.2003.003395
db/journals/ijtm/ijtm26.html#RonchiCC03
Hsien-Chang Kuo
Strategic change for the banking industry under financial deregulation: implications from Taiwan evidence.
331-342
2004
27
IJTM
4
https://doi.org/10.1504/IJTM.2004.004270
db/journals/ijtm/ijtm27.html#Kuo04
Henry E. Islo
Simulation models of organisational systems.
393-419
2001
21
IJTM
3/4
https://doi.org/10.1504/IJTM.2001.002921
db/journals/ijtm/ijtm21.html#Islo01
Wen-Pai Wang
Determining product differentiation strategies under uncertain environment.
169-181
2010
50
IJTM
2
https://doi.org/10.1504/IJTM.2010.032271
db/journals/ijtm/ijtm50.html#Wang10
Philipp Herzog
Jens Leker
Open and closed innovation - different innovation cultures for different strategies.
322-343
2010
52
IJTM
3/4
https://doi.org/10.1504/IJTM.2010.035979
db/journals/ijtm/ijtm52.html#HerzogL10
Thierry Rayna
Ludmila Striukova
Open innovation 2.0: is co-creation the ultimate challenge?
38-53
2015
69
IJTM
1
https://doi.org/10.1504/IJTM.2015.071030
db/journals/ijtm/ijtm69.html#RaynaS15
David William Birchall
George Tovstiga
Assessing the firm's strategic knowledge portfolio: a framework and methodology.
419-434
2002
24
IJTM
4
https://doi.org/10.1504/IJTM.2002.003063
db/journals/ijtm/ijtm24.html#BirchallT02
Jo Ann Oravec
The transparent knowledge worker: weblogs and reputation mechanisms in KM systems.
767-775
2004
28
IJTM
7/8
https://doi.org/10.1504/IJTM.2004.005782
db/journals/ijtm/ijtm28.html#Oravec04
Gabriela Dutrenit
Instability of the technology strategy and building of the first strategic capabilities in a large Mexican firm.
43-61
2006
36
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2006.009961
db/journals/ijtm/ijtm36.html#Dutrenit06
Kanwalroop Kathy Dhanda
Ronald Paul Hill
The role of information technology and systems in reverse logistics: a case study.
140-151
2005
31
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006628
db/journals/ijtm/ijtm31.html#DhandaH05
Alexandra Medina-Borja
Konstantinos P. Triantis
A conceptual framework to evaluate performance of non-profit social service organisations.
147-161
2007
37
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.011808
db/journals/ijtm/ijtm37.html#Medina-BorjaT07
Ethelbert Nwakuche Chukwu
Control under scarcity of the growth of wealth of nations: with examples from Austria and the USA.
675-690
2002
23
IJTM
7/8
https://doi.org/10.1504/IJTM.2002.003033
db/journals/ijtm/ijtm23.html#Chukwu02
Graeme Sheather
Transforming Australian manufacturing enterprises for global competitiveness.
514-541
2002
24
IJTM
5/6
https://doi.org/10.1504/IJTM.2002.003068
db/journals/ijtm/ijtm24.html#Sheather02
Hsueh-Liang Wu
Bou-Wen Lin
Chung-Jen Chen
Examining governance-innovation relationship in the high-tech industries: monitoring, incentive and a fit with strategic posture.
86-104
2007
39
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.013442
db/journals/ijtm/ijtm39.html#WuLC07
Gilles Neubert
Yacine Ouzrout
Abdelaziz Bouras
Collaboration and integration through information technologies in supply chains.
259-273
2004
28
IJTM
2
https://doi.org/10.1504/IJTM.2004.005065
db/journals/ijtm/ijtm28.html#NeubertOB04
Shu-pei Tsai
Dynamic marketing capabilities and radical innovation commercialisation.
174-195
2015
67
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2015.068223
db/journals/ijtm/ijtm67.html#Tsai15
Neel Chauhan
Nick Bontis
Organisational learning via groupware: a path to discovery or disaster?
591-610
2004
27
IJTM
6/7
https://doi.org/10.1504/IJTM.2004.004904
db/journals/ijtm/ijtm27.html#ChauhanB04
Ove Granstrand
The economics and management of technology trade: towards a pro-licensing era?
209-240
2004
27
IJTM
2/3
https://doi.org/10.1504/IJTM.2004.003953
db/journals/ijtm/ijtm27.html#Granstrand04
Yu-Chung Tsao
Production and payment policies for an imperfect manufacturing system with machine maintenance and credit policies.
240-257
2009
48
IJTM
2
https://doi.org/10.1504/IJTM.2009.024918
db/journals/ijtm/ijtm48.html#Tsao09
Lars Bengtsson
Nicolette Lakemond
Mandar Dabhilkar
Exploiting supplier innovativeness through knowledge integration.
237-253
2013
61
IJTM
3/4
https://doi.org/10.1504/IJTM.2013.052669
db/journals/ijtm/ijtm61.html#BengtssonLD13
Masaharu Tsujimoto
Yoichi Matsumoto
Kiyonori Sakakibara
Finding the 'boundary mediators': network analysis of the joint R&D project between Toyota and Panasonic.
120-133
2014
66
IJTM
2/3
https://doi.org/10.1504/IJTM.2014.064598
db/journals/ijtm/ijtm66.html#TsujimotoMS14
Victoria Hanna
Exploiting complementary competencies via inter-firm cooperation.
247-258
2007
37
IJTM
3/4
https://doi.org/10.1504/IJTM.2007.012261
db/journals/ijtm/ijtm37.html#Hanna07
Morris Teubal
Gil Avnimelech
Foreign acquisitions and R&D leverage in High Tech industries of peripheral economies. Lessons and policy issues from the Israeli experiences.
362-385
2003
26
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2003.003387
db/journals/ijtm/ijtm26.html#TeubalA03
Wen-Chih Liao
Chun-Chou Tseng
Mei Hsiu-Ching Ho
The effects of integrating innovative resources on organisational performance: the moderating role of innovation life cycle.
215-244
2015
67
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2015.068220
db/journals/ijtm/ijtm67.html#LiaoTH15
Elicia Maine
Elizabeth Garnsey
The commercialisation environment of advanced materials ventures.
49-71
2007
39
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.013440
db/journals/ijtm/ijtm39.html#MaineG07
Alberto Di Minin
Xiaohong Quan
Jieyin Zhang
A comparison of international R&D strategies of Chinese companies in Europe and the USA.
185-213
2017
74
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2017.10004270
db/journals/ijtm/ijtm74.html#MininQZ17
Bronwyn Bevan
Noel Wanner
Science centre on a screen.
427-440
2003
25
IJTM
5
https://doi.org/10.1504/IJTM.2003.003111
db/journals/ijtm/ijtm25.html#BevanW03
Woodrow W. Clark II
Istemi Demrig
Investment and capitalisation of firms in the USA.
391-418
2002
24
IJTM
4
https://doi.org/10.1504/IJTM.2002.003062
db/journals/ijtm/ijtm24.html#ClarkD02
Angeles Montoro-Sánchez
Eva M. Mora-Valentín
Luis Ángel Guerras-Martín
R&D cooperative agreements between firms and research organisations: a comparative analysis of the characteristics and reasons depending on the nature of the partner.
156-181
2006
35
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2006.009233
db/journals/ijtm/ijtm35.html#Montoro-SanchezMG06
Iztok Palcic
Krsto Pandza
Managing technologies within an industrial cluster: a case from a toolmakers cluster of Slovenia.
301-317
2015
69
IJTM
3/4
https://doi.org/10.1504/IJTM.2015.072974
db/journals/ijtm/ijtm69.html#PalcicP15
Romualdas Ginevicius
Valentinas Podvezko
Algirdas Andruskevicius
Quantitative evaluation of building technology.
192-214
2007
40
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2007.013534
db/journals/ijtm/ijtm40.html#GineviciusPA07
Xuefeng Liu
Jin Chen
Yuying Xie
Dan Wu
Strategic transformation through innovation in emerging industry: a case study.
192-209
2016
72
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2016.10001554
db/journals/ijtm/ijtm72.html#LiuCXW16
Jiann-Chyuan Wang
Kuen-Hung Tsai
Development strategies and prospects for Taiwan's R&D service industry.
308-326
2005
29
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.006013
db/journals/ijtm/ijtm29.html#WangT05
Ida Nilstad Pettersen
Casper Boks
Arnold Tukker
Framing the role of design in transformation of consumption practices: beyond the designer-product-user triad.
70-103
2013
63
IJTM
1/2
https://doi.org/10.1504/IJTM.2013.055580
db/journals/ijtm/ijtm63.html#PettersenBT13
Keun Lee
Chaisung Lim
Wichin Song
Emerging digital technology as a window of opportunity and technological leapfrogging: catch-up in digital TV by the Korean firms.
40-63
2005
29
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006004
db/journals/ijtm/ijtm29.html#LeeLS05
Robert M. Sherwood
The TRIPS Agreement: benefits and costs for developing countries.
57-76
2000
19
IJTM
1/2
https://doi.org/10.1504/IJTM.2000.002809
db/journals/ijtm/ijtm19.html#Sherwood00
Jeffrey James
The human development report 2001 and information technology for developing countries: an evaluation.
643-652
2002
23
IJTM
6
https://doi.org/10.1504/IJTM.2002.003031
db/journals/ijtm/ijtm23.html#James02
Shunzhong Liu
Determinants of service innovative dimensions in Knowledge Intensive Business Services: evidence from PR China.
95-114
2009
48
IJTM
1
https://doi.org/10.1504/IJTM.2009.024602
db/journals/ijtm/ijtm48.html#Liu09
Istemi S. Demirag
Noriyuki Doi
R&D management under short term pressures: a comparative study of the UK and Japan.
249-277
2007
40
IJTM
4
https://doi.org/10.1504/IJTM.2007.015752
db/journals/ijtm/ijtm40.html#DemiragD07
Bilge Bilgen
Irem Ozkarahan
Strategic tactical and operational production-distribution models: a review.
151-171
2004
28
IJTM
2
https://doi.org/10.1504/IJTM.2004.005059
db/journals/ijtm/ijtm28.html#BilgenO04
Pekka Berg
Jussi Pihlajamaa
Jarno Poskela
Anssi Smedlund
Benchmarking of quality and maturity of innovation activities in a networked environment.
255-278
2006
33
IJTM
2/3
https://doi.org/10.1504/IJTM.2006.008314
db/journals/ijtm/ijtm33.html#BergPPS06
Joseph Agassi
On the decline of scientific societies.
180-194
2009
46
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.022684
db/journals/ijtm/ijtm46.html#Agassi09
Ben-Jeng Wang
Analysis of efficiency of lean production implemented in multi-national optic enterprises.
304-319
2008
43
IJTM
4
https://doi.org/10.1504/IJTM.2008.020553
db/journals/ijtm/ijtm43.html#Wang08
M. H. Bala Subrahmanya
The process of technological innovations in small enterprises: the Indian way.
396-411
2007
39
IJTM
3/4
https://doi.org/10.1504/IJTM.2007.013502
db/journals/ijtm/ijtm39.html#Subrahmanya07
Enyan Yang
Guangrong Ma
James Chu
The impact of financial constraints on firm R&D investments: empirical evidence from China.
172-188
2014
65
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2014.060949
db/journals/ijtm/ijtm65.html#YangMC14
Meng-Hsun Shih
Hsien-Tang Tsai
Chi-Cheng Wu
Chung-Han Lu
A holistic knowledge sharing framework in high-tech firms: game and co-opetition perspectives.
354-367
2006
36
IJTM
4
https://doi.org/10.1504/IJTM.2006.010272
db/journals/ijtm/ijtm36.html#ShihTWL06
Stefan Abt
Necessity of logistics in the economic development of Poland.
429-439
2001
21
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002923
db/journals/ijtm/ijtm21.html#Abt01
Javier Alfonso-Gil
Antonio Vazquez-Barquero
Networking and innovation: lessons from the aeronautical clusters of Madrid.
337-355
2010
50
IJTM
3/4
https://doi.org/10.1504/IJTM.2010.032680
db/journals/ijtm/ijtm50.html#Alfonso-GilV10
Mariano Corso
Emilio Paolucci
Fostering innovation and knowledge transfer in product development through information technology.
126-148
2001
22
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2001.002958
db/journals/ijtm/ijtm22.html#CorsoP01
Mónica Edwards-Schachter
Elena Castro-Martínez
Mabel Sánchez-Barrioluengo
Guillermo Anlló
Ignacio Fernández-de-Lucio
Motives for international cooperation on R&D and innovation: empirical evidence from Argentinean and Spanish firms.
128-151
2013
62
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2013.055162
db/journals/ijtm/ijtm62.html#Edwards-SchachterCSAF13
Jasper Veldman
Warse Klingenberg
Applicability of the capability maturity model for engineer-to-order firms.
219-239
2009
48
IJTM
2
https://doi.org/10.1504/IJTM.2009.024917
db/journals/ijtm/ijtm48.html#VeldmanK09
William Miller
Fostering and sustaining entrepreneurial regions.
324-335
2004
28
IJTM
3/4/5/6
https://doi.org/10.1504/IJTM.2004.005291
db/journals/ijtm/ijtm28.html#Miller04
Ramkrishnan V. Tenkasi
The dynamics of cognitive oversimplification processes in R&D environments: an empirical assessment of some consequences.
782-798
2000
20
IJTM
5/6/7/8
https://doi.org/10.1504/IJTM.2000.002896
db/journals/ijtm/ijtm20.html#Tenkasi00
Theano Moussouri
Negotiated agendas: families in science and technology museums.
477-489
2003
25
IJTM
5
https://doi.org/10.1504/IJTM.2003.003114
db/journals/ijtm/ijtm25.html#Moussouri03
Edward N. Wolff
How persistent is industry specialisation over time in industrialised countries?
194-205
2000
19
IJTM
1/2
https://doi.org/10.1504/IJTM.2000.002811
db/journals/ijtm/ijtm19.html#Wolff00
Helena Lindskog
Magnus Johansson
Broadband: a municipal information platform: Swedish experience.
47-63
2005
31
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006622
db/journals/ijtm/ijtm31.html#LindskogJ05
Riitta Smeds
Implementation of business process innovations: an agenda for research and action.
1-12
2001
22
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2001.002951
db/journals/ijtm/ijtm22.html#Smeds01
Mats Magnusson
Emanuele Vinciguerra
Key factors in small group improvement work: an empirical study at SKF.
324-337
2008
44
IJTM
3/4
https://doi.org/10.1504/IJTM.2008.021042
db/journals/ijtm/ijtm44.html#MagnussonV08
Si Hyung Joo
Chul Oh
Keun Lee
Catch-up strategy of an emerging firm in an emerging country: analysing the case of Huawei vs. Ericsson with patent data.
19-42
2016
72
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2016.10001555
db/journals/ijtm/ijtm72.html#JooOL16
Baomin Hu
Lili Wang
Xinkai Yu
Stochastic diffusion models for substitutable technological innovations.
654-666
2004
28
IJTM
7/8
https://doi.org/10.1504/IJTM.2004.005775
db/journals/ijtm/ijtm28.html#HuWY04
Sasikala Rathnappulige
Lisa Daniel
Creating value through social processes: an exploration of knowledge dynamics in expert communities of practice.
169-184
2013
63
IJTM
3/4
https://doi.org/10.1504/IJTM.2013.056897
db/journals/ijtm/ijtm63.html#RathnappuligeD13
Frances Jørgensen
Paul Hyland
Lise Busk Kofoed
Examining the role of human resource management in continuous improvement.
127-142
2008
42
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.018064
db/journals/ijtm/ijtm42.html#JorgensenHK08
Diana Angelis
An option model for R&D valuation.
44-56
2002
24
IJTM
1
https://doi.org/10.1504/IJTM.2002.003043
db/journals/ijtm/ijtm24.html#Angelis02
Christopher Durugbo
Johann c. k. h. Riedel
Kulwant S. Pawar
Overcoming barriers to participation during requirements elicitation.
81-103
2014
66
IJTM
1
https://doi.org/10.1504/IJTM.2014.064025
db/journals/ijtm/ijtm66.html#DurugboRP14
Puay Tang
Jordi Molas-Gallart
Intellectual Property in collaborative projects: navigating the maze.
371-391
2009
47
IJTM
4
https://doi.org/10.1504/IJTM.2009.024435
db/journals/ijtm/ijtm47.html#TangM09
Alina Matuszak-Flejszman
Tom Bramorski
Factors influencing the implementation of environmental management system at Amica-Wronki SA.
463-474
2001
21
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002926
db/journals/ijtm/ijtm21.html#Matuszak-FlejszmanB01
Christian Comberg
Vivek K. Velamuri
The introduction of a competing business model: the case of eBay.
39-64
2017
73
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2017.10003240
db/journals/ijtm/ijtm73.html#CombergV17
Prasanta Kumar Dey
S. Hariharan
William Ho
Managing healthcare technology in quality management framework.
45-68
2007
40
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2007.013526
db/journals/ijtm/ijtm40.html#DeyHH07
Barry Bozeman
James Scott Dietz
Monica Gaughan
Scientific and technical human capital: an alternative model for research evaluation.
716-740
2001
22
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002988
db/journals/ijtm/ijtm22.html#BozemanDG01
María del Rocío Martínez Torres
Sergio L. Toral Marín
International comparison of R&D investment by European, US and Japanese companies.
107-122
2010
49
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2010.029413
db/journals/ijtm/ijtm49.html#TorresM10
Gunawan
Barbara Igel
K. Ramanathan
Innovation networks in a complex product system project: the case of the ISDN project in Indonesia.
583-599
2002
24
IJTM
5/6
https://doi.org/10.1504/IJTM.2002.003072
db/journals/ijtm/ijtm24.html#GunawanIR02
Paul Shrivastava
Silvester Ivanaj
Vera Ivanaj
Strategic technological innovation for sustainable development.
76-107
2016
70
IJTM
1
https://doi.org/10.1504/IJTM.2016.074672
db/journals/ijtm/ijtm70.html#ShrivastavaII16
Eunseong Cho
Minhi Hahn
Antecedents and consequences of the sociocultural differences between R&D and marketing in Korean high-tech firms.
801-819
2004
28
IJTM
7/8
https://doi.org/10.1504/IJTM.2004.005784
db/journals/ijtm/ijtm28.html#ChoH04
Ruth Rama
Ascension Calatrava
The advantages of clustering: the case of Spanish electronics subcontractors.
764-791
2002
24
IJTM
7/8
https://doi.org/10.1504/IJTM.2002.003082
db/journals/ijtm/ijtm24.html#RamaC02
Ioanna Kastelli
Yannis Caloghirou
Stavros Ioannides
Cooperative R&D as a means for knowledge creation. Experience from European publicly funded partnerships.
712-730
2004
27
IJTM
8
https://doi.org/10.1504/IJTM.2004.004990
db/journals/ijtm/ijtm27.html#KastelliCI04
Fiorenza Belussi
Towards the post-Fordist economy: emerging organisational models.
20-43
2000
20
IJTM
1/2
https://doi.org/10.1504/IJTM.2000.002854
db/journals/ijtm/ijtm20.html#Belussi00
Gregory Tassey
Michael P. Gallaher
Brent R. Rowe
Complex standards and innovation in the digital economy: the Internet Protocol.
448-472
2009
48
IJTM
4
https://doi.org/10.1504/IJTM.2009.026689
db/journals/ijtm/ijtm48.html#TasseyGR09
Ping Lan
Changing production paradigm and the transformation of knowledge existing form.
44-57
2000
20
IJTM
1/2
https://doi.org/10.1504/IJTM.2000.002857
db/journals/ijtm/ijtm20.html#Lan00
Kari Tanskanen
Supply project planning in a networked environment.
362-372
2001
21
IJTM
3/4
https://doi.org/10.1504/IJTM.2001.002919
db/journals/ijtm/ijtm21.html#Tanskanen01
Sigvald Harryson
Sandra Kliknaite
Rafal Dudkowski
Making innovative use of academic knowledge to enhance corporate technology innovation impact.
131-157
2007
39
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.013504
db/journals/ijtm/ijtm39.html#HarrysonKD07
Marc Diviné
Marinita Schumacher
Julie Stal-Le Cardinal
Learning virtual teams: how to design a set of Web 2.0 tools?
297-308
2011
55
IJTM
3/4
https://doi.org/10.1504/IJTM.2011.041955
db/journals/ijtm/ijtm55.html#DivineSC11
Jonathan P. Bowen
Ann Borda
Communicating the public understanding of science: the Royal Society website.
146-164
2009
46
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.022682
db/journals/ijtm/ijtm46.html#BowenB09
Jacek Luczak
Know-how transfer on creating and developing QS-9000 Quality System in American-Polish joint venture company on the example of WIX Filtration Products, Division of Dana Corporation and WIX-Filtron Ltd.
440-452
2001
21
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002924
db/journals/ijtm/ijtm21.html#Luczak01
Gary P. Moynihan
Paul S. Ray
Robert G. Batson
William G. Nichols
Application of total quality management techniques to safety analysis in software product development.
353-361
2001
21
IJTM
3/4
https://doi.org/10.1504/IJTM.2001.002918
db/journals/ijtm/ijtm21.html#MoynihanRBN01
Patricia Sandmeier
Customer integration strategies for innovation projects: anticipation and brokering.
1-23
2009
48
IJTM
1
https://doi.org/10.1504/IJTM.2009.024597
db/journals/ijtm/ijtm48.html#Sandmeier09
Hung-bin Ding
Lois Peters
Inter-firm knowledge management practices for technology and new product development in discontinuous innovation.
588-600
2000
20
IJTM
5/6/7/8
https://doi.org/10.1504/IJTM.2000.002883
db/journals/ijtm/ijtm20.html#DingP00
Jiang Wen
Shinichi Kobayashi
An organisational approach to coping with the paradox between individual career and collective research in Japan.
794-810
2001
22
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002992
db/journals/ijtm/ijtm22.html#WenK01
Sangkyun Kim
Linking information engineering and security engineering with a problem solving perspective.
135-146
2011
54
IJTM
2/3
https://doi.org/10.1504/IJTM.2011.039309
db/journals/ijtm/ijtm54.html#Kim11
Xiaobo Wu
Wei Dou 0003
Yu Gao
Fangli Huang
How to implement secondary product innovations for the domestic market: a case from Haier washing machines.
232-254
2014
64
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2014.059930
db/journals/ijtm/ijtm64.html#WuDGH14
Beatriz Forés
César Camisón
The complementary effect of internal learning capacity and absorptive capacity on performance: the mediating role of innovation capacity.
56-81
2011
55
IJTM
1/2
https://doi.org/10.1504/IJTM.2011.041680
db/journals/ijtm/ijtm55.html#ForesC11
Pao-Ching Cheng
Chi-Hsiang Chen
Ming-Ji James Lin
The transformation of a traditional salt company into a biotech business through innovations and reforms: a case study of Taiyen.
107-122
2008
43
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2008.019410
db/journals/ijtm/ijtm43.html#ChengCL08
Alex Halsema
Cees Withagen
Cartel-fringe models of the oil market: a quantitative assessment.
60-82
2012
60
IJTM
1/2
https://doi.org/10.1504/IJTM.2012.049106
db/journals/ijtm/ijtm60.html#HalsemaW12
Benny Iggland
Change from a combinate structure to a streamlined company in an emerging market by means of spin-off of peripheral functions in ex-state owned companies.
262-273
2002
24
IJTM
2/3
https://doi.org/10.1504/IJTM.2002.003055
db/journals/ijtm/ijtm24.html#Iggland02
Kah-Hin Chai
Mike Gregory
Yongjiang Shi
Bridging islands of knowledge: a framework of knowledge sharing mechanisms.
703-727
2003
25
IJTM
8
https://doi.org/10.1504/IJTM.2003.003133
db/journals/ijtm/ijtm25.html#ChaiGS03
Charla Griffy-Brown
Akira Nagamatsu
Chihiro Watanabe
Bing Zhu
Technology spillovers and economic vitality: an analysis of institutional flexibility in Japan with comparisons to the USA.
746-768
2002
23
IJTM
7/8
https://doi.org/10.1504/IJTM.2002.003036
db/journals/ijtm/ijtm23.html#Griffy-BrownNWZ02
June S. Park
A new revolutionary paradigm of software development for mainstream business operations.
272-286
2000
20
IJTM
3/4
https://doi.org/10.1504/IJTM.2000.002868
db/journals/ijtm/ijtm20.html#Park00
Benjamin Zimmer
Julie Stal-Le Cardinal
Bernard Yannou
Gilles Le Cardinal
François Piette
Vincent Boly
A methodology for the development of innovation clusters: application in the healthcare sector.
57-80
2014
66
IJTM
1
https://doi.org/10.1504/IJTM.2014.064017
db/journals/ijtm/ijtm66.html#ZimmerCYCPB14
Thanos Papadopoulos
Continuous innovation through lean thinking in healthcare: the role of dynamic actor associations.
266-280
2012
60
IJTM
3/4
https://doi.org/10.1504/IJTM.2012.049442
db/journals/ijtm/ijtm60.html#Papadopoulos12
Rongkang Ma
Fengchao Liu
Yutao Sun
Collaboration partner portfolio along the growth of Chinese firms' innovation capability: configuration, evolution and pattern.
152-176
2013
62
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2013.055165
db/journals/ijtm/ijtm62.html#MaLS13
Nrupesh Mastakar
B. Bowonder
Transformation of an entrepreneurial firm to a global service provider: the case study of Infosys.
34-56
2005
32
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006817
db/journals/ijtm/ijtm32.html#MastakarB05
Jian Chen
Xielin Liu
Yimei Hu
Establishing a CoPs-based innovation ecosystem to enhance competence - the case of CGN in China.
144-170
2016
72
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2016.10001576
db/journals/ijtm/ijtm72.html#ChenLH16
Chong Ju Choi
Ron Berger
Jai Boem Kim
Globalisation, property rights and knowledge networks.
53-72
2011
56
IJTM
1
https://doi.org/10.1504/IJTM.2011.042493
db/journals/ijtm/ijtm56.html#ChoiBK11
Linda Fung-Yee Ng
Chyau Tuan
Industry technology performance of manufacturing FDI: micro-level evidence from joint ventures in China.
246-263
2005
32
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.007332
db/journals/ijtm/ijtm32.html#NgT05
Jungin Kim
Sooyoung Kim
Hyunseok Park
Factors affecting product innovation performance according to dynamics of environment: evidence from Korean high-tech enterprises in manufacturing sector.
269-288
2015
67
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2015.068219
db/journals/ijtm/ijtm67.html#KimKP15
K. F. Pun
Matthew K. O. Lee
A proposed management model for the development of strategic information systems.
304-325
2000
20
IJTM
3/4
https://doi.org/10.1504/IJTM.2000.002869
db/journals/ijtm/ijtm20.html#PunL00
Daniel Z. Levin
Helena Barnard
Technology management routines that matter to technology managers.
22-37
2008
41
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.015982
db/journals/ijtm/ijtm41.html#LevinB08
Ricardo Jardim-Gonçalves
Nicolas Figay
Adolfo Steiger-Garção
Enabling interoperability of STEP Application Protocols at meta-data and knowledge level.
402-421
2006
36
IJTM
4
https://doi.org/10.1504/IJTM.2006.010275
db/journals/ijtm/ijtm36.html#Jardim-GoncalvesFS06
Fredrik Hacklin
Christian Marxt
Fritz Fahrni
An evolutionary perspective on convergence: inducing a stage model of inter-industry innovation.
220-249
2010
49
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2010.029419
db/journals/ijtm/ijtm49.html#HacklinMF10
Juan-Luis Klein
Diane-Gabrielle Tremblay
Denis R. Bussieres
Social economy-based local initiatives and social innovation: a Montreal case study.
121-138
2010
51
IJTM
1
https://doi.org/10.1504/IJTM.2010.033132
db/journals/ijtm/ijtm51.html#KleinTB10
Hugo Tschirky
On the path of enterprise science? An approach to establishing the correspondence of theory and reality in technology-intensive companies.
405-428
2000
20
IJTM
3/4
https://doi.org/10.1504/IJTM.2000.002875
db/journals/ijtm/ijtm20.html#Tschirky00
Xielin Liu
China's catch-up and innovation model in IT industry.
194-216
2010
51
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2010.033802
db/journals/ijtm/ijtm51.html#Liu10
Alexander Coman
IPVM: IT support of concurrent product development teams.
388-404
2000
20
IJTM
3/4
https://doi.org/10.1504/IJTM.2000.002863
db/journals/ijtm/ijtm20.html#Coman00
Jin Chen
Xiaoting Zhao
Yuandi Wang
A new measurement of intellectual capital and its impact on innovation performance in an open innovation paradigm.
1-25
2015
67
IJTM
1
https://doi.org/10.1504/IJTM.2015.065885
db/journals/ijtm/ijtm67.html#ChenZW15
Francis Bidault
Global licensing strategies and technology pricing.
295-305
2004
27
IJTM
2/3
https://doi.org/10.1504/IJTM.2004.003959
db/journals/ijtm/ijtm27.html#Bidault04
Shih-Chang Hung
The Taiwanese system of innovation in the information industry.
788-800
2003
26
IJTM
7
https://doi.org/10.1504/IJTM.2003.003456
db/journals/ijtm/ijtm26.html#Hung03
Jingjiang Liu
Yi Wang 0005
Gang Zheng
Driving forces and organisational configurations of international R&D: the case of technology-intensive Chinese multinationals.
409-426
2010
51
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2010.033812
db/journals/ijtm/ijtm51.html#LiuWZ10
Shih-Hsin Chen
Abiodun A. Egbetokun
Duen-Kai Chen
Brokering knowledge in networks: institutional intermediaries in the Taiwanese biopharmaceutical innovation system.
189-209
2015
69
IJTM
3/4
https://doi.org/10.1504/IJTM.2015.072978
db/journals/ijtm/ijtm69.html#ChenEC15
Chien-Tzu Tsai
Pao-Long Chang
Tzu-Chuan Chou
Yih-Ping Cheng
An integration framework of innovation assessment for the knowledge-intensive service industry.
85-104
2005
30
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006346
db/journals/ijtm/ijtm30.html#TsaiCCC05
Chang Liu 0005
Yacine Ouzrout
Antoine Nongaillard
Abdelaziz Bouras
Jiliu Zhou
Evaluation model for e-tourism product: a hidden Markov model-based algorithm.
45-63
2014
64
IJTM
1
https://doi.org/10.1504/IJTM.2014.059235
db/journals/ijtm/ijtm64.html#LiuONBZ14
Ville Ojanen
Olli Vuola
Coping with the multiple dimensions of R&D performance analysis.
279-290
2006
33
IJTM
2/3
https://doi.org/10.1504/IJTM.2006.008315
db/journals/ijtm/ijtm33.html#OjanenV06
Aino Kianto
The influence of knowledge management on continuous innovation.
110-121
2011
55
IJTM
1/2
https://doi.org/10.1504/IJTM.2011.041682
db/journals/ijtm/ijtm55.html#Kianto11
Maryline Filippi
Andre Torre
Local organisations and institutions. How can geographical proximity be activated by collective projects?
386-400
2003
26
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2003.003388
db/journals/ijtm/ijtm26.html#FilippiT03
Patrick Cohendet
Emilie Pawlak
Diversity of entrepreneurs and diversity of clusters in nanotechnologies.
386-403
2009
46
IJTM
3/4
https://doi.org/10.1504/IJTM.2009.023387
db/journals/ijtm/ijtm46.html#CohendetP09
Caroline Mothe
Thuc Uyen Nguyen-Thi
Sources of information for organisational innovation: a sector comparative approach.
125-144
2013
63
IJTM
1/2
https://doi.org/10.1504/IJTM.2013.055596
db/journals/ijtm/ijtm63.html#MotheN13
Anthony Lococo
David C. Yen
David C. Chou
Telecommuting: its structure, options and business implications.
475-486
2001
21
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002927
db/journals/ijtm/ijtm21.html#LococoYC01
Peter Gammeltoft
Kirsten Fasshauer
Characteristics and host country drivers of Chinese FDI in Europe: a company-level analysis.
140-166
2017
74
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2017.10004277
db/journals/ijtm/ijtm74.html#GammeltoftF17
Andrew T. Walters
Huw Millward
Challenges in managing the convergence of information and product design technology in a small company.
190-215
2011
53
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2011.038590
db/journals/ijtm/ijtm53.html#WaltersM11
J. W. Stoelhorst
Transition strategies for managing technological discontinuities: lessons from the history of the semiconductor industry.
261-286
2002
23
IJTM
4
https://doi.org/10.1504/IJTM.2002.003010
db/journals/ijtm/ijtm23.html#Stoelhorst02
Shiaw-Wen Tien
Chung-Ching Chiu
Yi-Chan Chung
Chih-Hung Tsai
The impact of innovation management implementation on enterprise competitiveness among Taiwan's high-tech manufacturers.
7-44
2007
40
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2007.013525
db/journals/ijtm/ijtm40.html#TienCCT07
John De La Mothe
Geoff Mallory
Local knowledge and the strategy of constructing advantage: the role of community alliances.
809-820
2004
27
IJTM
8
https://doi.org/10.1504/IJTM.2004.004995
db/journals/ijtm/ijtm27.html#MotheM04
Sharman Lichtenstein
Ethical issues for internet use policy: balancing employer and employee perspectives.
288-303
2011
54
IJTM
2/3
https://doi.org/10.1504/IJTM.2011.039316
db/journals/ijtm/ijtm54.html#Lichtenstein11
Hans Pohl
Japanese automakers' approach to electric and hybrid electric vehicles: from incremental to radical innovation.
266-288
2012
57
IJTM
4
https://doi.org/10.1504/IJTM.2012.045546
db/journals/ijtm/ijtm57.html#Pohl12
Sanjaya Lall
Some insights to reinvent industrial strategy in developing countries.
16-20
2006
36
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2006.009981
db/journals/ijtm/ijtm36.html#Lall06
P. Pete Chong
Jason Chou-Hong Chen
Infomemes and infonomes: in search of knowledge DNA.
18-29
2008
43
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2008.019404
db/journals/ijtm/ijtm43.html#ChongC08
Martin A. Bader
Managing intellectual property in inter-firm R&D collaborations in knowledge-intensive industries.
311-335
2008
41
IJTM
3/4
https://doi.org/10.1504/IJTM.2008.016786
db/journals/ijtm/ijtm41.html#Bader08
Tarja Ketola
Fair Business as a corporate responsibility and competitiveness factor? Fashion design company Globe Hope as an example.
109-128
2012
58
IJTM
1/2
https://doi.org/10.1504/IJTM.2012.045791
db/journals/ijtm/ijtm58.html#Ketola12
Peter Markowski
Mandar Dabhilkar
Collaboration for continuous innovation: routines for knowledge integration in healthcare.
212-231
2016
71
IJTM
3/4
https://doi.org/10.1504/IJTM.2016.078569
db/journals/ijtm/ijtm71.html#MarkowskiD16
Anders Berger
Developing multi-functional teams in public service - from prescribed helplessness to perceived self-esteem.
108-125
2001
22
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2001.002957
db/journals/ijtm/ijtm22.html#Berger01
Anastasia Constantelou
Aggelos Tsakanikas
Yannis Caloghirou
Inter-country technological linkages in European Framework Programmes: a spur to European integration?
773-790
2004
27
IJTM
8
https://doi.org/10.1504/IJTM.2004.004993
db/journals/ijtm/ijtm27.html#ConstantelouTC04
Roger S. Foster
Amar Gupta
Sawan Deshpande
Evolution of the high-end computing market in the USA.
274-295
2002
24
IJTM
2/3
https://doi.org/10.1504/IJTM.2002.003056
db/journals/ijtm/ijtm24.html#FosterGD02
Arja Kuusisto
Mikko Riepula
Customer interaction in service innovation: seldom intensive but often decisive. Case studies in three business service sectors.
171-186
2011
55
IJTM
1/2
https://doi.org/10.1504/IJTM.2011.041686
db/journals/ijtm/ijtm55.html#KuusistoR11
Chinho Lin
Chuni Wu
Case study of knowledge creation contributed by ISO 9001: 2000.
193-213
2007
37
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.011811
db/journals/ijtm/ijtm37.html#LinW07
Stefanie Broring
Developing innovation strategies for convergence - is 'open innovation' imperative?
272-294
2010
49
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2010.029421
db/journals/ijtm/ijtm49.html#Broring10
Anthony Mark Orme
Haining Yao
Letha H. Etzkorn
Complexity metrics for ontology based information.
161-173
2009
47
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2009.024120
db/journals/ijtm/ijtm47.html#OrmeYE09
Michael Quayle
Supplier development and supply chain management in small and medium size enterprises.
172-188
2002
23
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2002.003004
db/journals/ijtm/ijtm23.html#Quayle02
Christian Serarols
The process of business start-ups in the internet: a multiple case study.
142-159
2008
43
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2008.019412
db/journals/ijtm/ijtm43.html#Serarols08
Margaret R. Sheen
Evolving relations between the pharmaceutical industry and public sector research.
268-283
2003
25
IJTM
3/4
https://doi.org/10.1504/IJTM.2003.003101
db/journals/ijtm/ijtm25.html#Sheen03
Hugo Tschirky
Jean-Philippe Escher
Deniz Tokdemir
Christian Belz
Technology marketing: a new core competence of technology-intensive enterprises.
459-474
2000
20
IJTM
3/4
https://doi.org/10.1504/IJTM.2000.002874
db/journals/ijtm/ijtm20.html#TschirkyETB00
Alex Gofman
Howard Moskowitz
Steps towards a consumer-driven innovation machine for 'ordinary' product categories in their later lifecycle stages.
349-363
2009
45
IJTM
3/4
https://doi.org/10.1504/IJTM.2009.022658
db/journals/ijtm/ijtm45.html#GofmanM09
Harry Boer
Frank Gertsen
From continuous improvement to continuous innovation: a (retro)(per)spective.
805-827
2003
26
IJTM
8
https://doi.org/10.1504/IJTM.2003.003391
db/journals/ijtm/ijtm26.html#BoerG03
Sora Lee
Moon-soo Kim
Yongtae Park
Chulhyun Kim
Identification of a technological chance in product-service system using KeyGraph and text mining on business method patents.
239-256
2016
70
IJTM
4
https://doi.org/10.1504/IJTM.2016.075884
db/journals/ijtm/ijtm70.html#LeeKPK16
Alex Da Mota Pedrosa
Margus Välling
Britta Boyd
Knowledge related activities in open innovation: managers' characteristics and practices.
254-273
2013
61
IJTM
3/4
https://doi.org/10.1504/IJTM.2013.052670
db/journals/ijtm/ijtm61.html#PedrosaVB13
Mats R. K. Lindstedt
Juuso Liesiö
Ahti Salo
Participatory development of a strategic product portfolio in a telecommunication company.
250-266
2008
42
IJTM
3
https://doi.org/10.1504/IJTM.2008.018106
db/journals/ijtm/ijtm42.html#LindstedtLS08
Kwanghui Lim
Henry Chesbrough
Yi Ruan
Open innovation and patterns of R&D competition.
295-321
2010
52
IJTM
3/4
https://doi.org/10.1504/IJTM.2010.035978
db/journals/ijtm/ijtm52.html#LimCR10
Suguru Tamura
Effects of integrating patents and standards on intellectual property management and corporate innovativeness in Japanese electric machine corporations.
180-202
2012
59
IJTM
3/4
https://doi.org/10.1504/IJTM.2012.047242
db/journals/ijtm/ijtm59.html#Tamura12
Giovanni Mangiarotti
Knowledge management practices and innovation propensity: a firm-level analysis for Luxembourg.
261-283
2012
58
IJTM
3/4
https://doi.org/10.1504/IJTM.2012.046618
db/journals/ijtm/ijtm58.html#Mangiarotti12
Glenn Hardaker
Gary Graham
Community of self-organisation: supply chain perspective of Finnish electronic music.
93-114
2008
44
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.020700
db/journals/ijtm/ijtm44.html#HardakerG08
Amy Jocelyn Glass
Costly R&D and intellectual property rights protection.
179-193
2000
19
IJTM
1/2
https://doi.org/10.1504/IJTM.2000.002802
db/journals/ijtm/ijtm19.html#Glass00
Rajneesh Narula
Emerging market MNEs as meta-integrators: the importance of internal networks.
214-220
2017
74
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2017.083625
db/journals/ijtm/ijtm74.html#Narula17
Hans Wortmann
Alex Alblas
Product platform life cycles: a multiple case study.
188-201
2009
48
IJTM
2
https://doi.org/10.1504/IJTM.2009.024915
db/journals/ijtm/ijtm48.html#WortmannA09
Anthony D'Costa
Software outsourcing and development policy implications: an Indian perspective.
705-723
2002
24
IJTM
7/8
https://doi.org/10.1504/IJTM.2002.003079
db/journals/ijtm/ijtm24.html#DCosta02
Jose Garcia-Quevedo
Francisco Mas-Verdu
Domingo Ribeiro Soriano
The heterogeneity of services and the differential effects on business and territorial innovation.
80-93
2011
54
IJTM
1
https://doi.org/10.1504/IJTM.2011.038830
db/journals/ijtm/ijtm54.html#Garcia-QuevedoMS11
Chen-Ju Lin
Ching-Chou Chen
The responsive-integrative framework, outside-in and inside-out mechanisms and ambidextrous innovations.
148-173
2015
67
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2015.068212
db/journals/ijtm/ijtm67.html#LinC15
Thorsten Teichert
Katja Rost
Trust, involvement profile and customer retention - modelling, effects and implications.
621-639
2003
26
IJTM
5/6
https://doi.org/10.1504/IJTM.2003.003426
db/journals/ijtm/ijtm26.html#TeichertR03
Stuart M. Sanderson
Adrian W. Nixon
Alan J. Aron
Adding value to a company's selling activity through knowledge management: a case study.
742-751
2000
20
IJTM
5/6/7/8
https://doi.org/10.1504/IJTM.2000.002893
db/journals/ijtm/ijtm20.html#SandersonNA00
Jingoo Kang
Jeoung Yul Lee
Performance effects of explorative and exploitative knowledge sharing within Korean chaebol MNEs in China.
70-95
2017
74
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2017.10004271
db/journals/ijtm/ijtm74.html#KangL17
Fredrik Hacklin
Martin Inganas
Christian Marxt
Adrian Pluss
Core rigidities in the innovation process: a structured benchmark on knowledge management challenges.
244-266
2009
45
IJTM
3/4
https://doi.org/10.1504/IJTM.2009.022651
db/journals/ijtm/ijtm45.html#HacklinIMP09
Xueli Huang
Paul Steffens
Bill Schröder
Managing new product development in the Chinese steel industry: an empirical investigation.
557-568
2002
24
IJTM
5/6
https://doi.org/10.1504/IJTM.2002.003070
db/journals/ijtm/ijtm24.html#HuangSS02
Seppo Hanninen
The 'perfect technology syndrome': sources, consequences and solutions.
20-32
2007
39
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.013438
db/journals/ijtm/ijtm39.html#Hanninen07
Shuchih Ernest Chang
Shiou-Yu Chen
Chun-Yen Chen
Exploring the relationships between IT capabilities and information security management.
147-166
2011
54
IJTM
2/3
https://doi.org/10.1504/IJTM.2011.039310
db/journals/ijtm/ijtm54.html#ChangCC11
Chi-Cheng Huang
Pin-Yu Chu
Using the fuzzy analytic network process for selecting technology R&D projects.
89-115
2011
53
IJTM
1
https://doi.org/10.1504/IJTM.2011.037239
db/journals/ijtm/ijtm53.html#HuangC11
Jan Verloop
The Shell way to innovate.
243-259
2006
34
IJTM
3/4
https://doi.org/10.1504/IJTM.2006.009458
db/journals/ijtm/ijtm34.html#Verloop06
Oliver Gassmann
Patricia Sandmeier
Christoph Wecht
Extreme customer innovation in the front-end: learning from a new software paradigm.
46-66
2006
33
IJTM
1
https://doi.org/10.1504/IJTM.2006.008191
db/journals/ijtm/ijtm33.html#GassmannSW06
Steven Walczak
Managing personal medical knowledge: agent-based knowledge acquisition.
22-36
2009
47
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2009.024112
db/journals/ijtm/ijtm47.html#Walczak09
Yongling Yao
Spatial overlap of regional innovation capability and high-tech industry.
615-632
2004
28
IJTM
3/4/5/6
https://doi.org/10.1504/IJTM.2004.005312
db/journals/ijtm/ijtm28.html#Yao04
Angela Machado Rocha
Cristina Maria Quintella
Ednildo Andrade Torres
Marcelo Santana Silva
Biodiesel in Brazil: science, technology and innovation indicators.
246-260
2015
69
IJTM
3/4
https://doi.org/10.1504/IJTM.2015.072984
db/journals/ijtm/ijtm69.html#RochaQTS15
Yan Xie
Heng Liu
Shanxing Gao
Innovation generation and appropriation: the dual roles of political ties in Chinese firms' new product development.
215-239
2014
65
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2014.060958
db/journals/ijtm/ijtm65.html#XieLG14
Christofer Pihl
Christian Sandström
Value creation and appropriation in social media - the case of fashion bloggers in Sweden.
309-323
2013
61
IJTM
3/4
https://doi.org/10.1504/IJTM.2013.052673
db/journals/ijtm/ijtm61.html#PihlS13
Allan Kearns
Holger Görg
Linkages, agglomerations and knowledge spillovers in the Irish electronics industry: the regional dimension.
743-763
2002
24
IJTM
7/8
https://doi.org/10.1504/IJTM.2002.003081
db/journals/ijtm/ijtm24.html#KearnsG02
Wil A. H. Thissen
Systems engineering education for public policy.
408-419
2000
19
IJTM
3/4/5
https://doi.org/10.1504/IJTM.2000.002828
db/journals/ijtm/ijtm19.html#Thissen00
Jae-Yong Choung
Hye-Ran Hwang
Heeseung Yang
The co-evolution of technology and institution in the Korean information and communications industry.
249-266
2006
36
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2006.009971
db/journals/ijtm/ijtm36.html#ChoungHY06
Yuosre F. Badir
Bettina Buchel
Christopher Tucci
The role of communication and coordination between 'network lead companies' and their strategic partners in determining NPD project performance.
269-291
2008
44
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.020708
db/journals/ijtm/ijtm44.html#BadirBT08
Cheickna Sylla
H. Joseph Wen
A conceptual framework for evaluation of information technology investments.
236-261
2002
24
IJTM
2/3
https://doi.org/10.1504/IJTM.2002.003054
db/journals/ijtm/ijtm24.html#SyllaW02
Simon Collinson
Hisaharu Kato
Hitomi Yoshihara
Technology strategy revealed: patterns and influences of patent-licensing behaviour in Japanese firms.
327-350
2005
30
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.006732
db/journals/ijtm/ijtm30.html#CollinsonKY05
Hans Berends
Raghu Garud
Koenraad Debackere
Mathieu Weggeman
Thinking along: a process for tapping into knowledge across boundaries.
69-88
2011
53
IJTM
1
https://doi.org/10.1504/IJTM.2011.037238
db/journals/ijtm/ijtm53.html#BerendsGDW11
Stefan Kuhlmann
Evaluation of research and innovation policies: a discussion of trends with examples from Germany.
131-149
2003
26
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2003.003366
db/journals/ijtm/ijtm26.html#Kuhlmann03
Gerd Schuster
Alexander Brem
How to benefit from open innovation? An empirical investigation of open innovation, external partnerships and firm capabilities in the automotive industry.
54-76
2015
69
IJTM
1
https://doi.org/10.1504/IJTM.2015.071031
db/journals/ijtm/ijtm69.html#SchusterB15
Vesa Peltokorpi
Synthesising the paradox of organisational routine flexibility and stability: a processual view.
7-21
2008
41
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.015981
db/journals/ijtm/ijtm41.html#Peltokorpi08
Pier A. Abetti
Wireless charging of mobile phones: PowerKiss and Powermat (2007-2014).
218-238
2016
70
IJTM
2/3
https://doi.org/10.1504/IJTM.2016.075163
db/journals/ijtm/ijtm70.html#Abetti16
Ming Feng Tang
Jaegul Lee
Kun Liu
Yong Lu
Assessing government-supported technology-based business incubators: evidence from China.
24-48
2014
65
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2014.060956
db/journals/ijtm/ijtm65.html#TangLLL14
Po-Young Chu
Yu-Ling Lin
Chi-Hung Huang
Tzu-Yar Liu
Externality evaluation: an empirical study of ITRI.
280-294
2009
48
IJTM
3
https://doi.org/10.1504/IJTM.2009.024949
db/journals/ijtm/ijtm48.html#ChuLHL09
Felesia Mulauzi
Kendra S. Albright
Information and Communication Technologies (ICTs) and development information for professional women in Zambia.
177-195
2009
45
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.021527
db/journals/ijtm/ijtm45.html#MulauziA09
Jochen Gläser
Macrostructures, careers and knowledge production: a neoinstitutionalist approach.
698-715
2001
22
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002987
db/journals/ijtm/ijtm22.html#Glaser01
Jing Ma
Xuefeng Wang
Donghua Zhu
Xiao Zhou
Analysis on patent collaborative patterns for emerging technologies: a case study of nano-enabled drug delivery.
210-228
2015
69
IJTM
3/4
https://doi.org/10.1504/IJTM.2015.072972
db/journals/ijtm/ijtm69.html#MaWZZ15
Harm-Jan Steenhuis
Sirp de Boer
Agile manufacturing and technology transfer to industrialising countries.
20-27
2003
26
IJTM
1
https://doi.org/10.1504/IJTM.2003.003141
db/journals/ijtm/ijtm26.html#SteenhuisB03
Marc Gruber
Research on marketing in emerging firms: key issues and open questions.
600-620
2003
26
IJTM
5/6
https://doi.org/10.1504/IJTM.2003.003425
db/journals/ijtm/ijtm26.html#Gruber03
Dan Chen
Azhdar Karami
Critical success factors for inter-firm technological cooperation: an empirical study of high-tech SMEs in China.
282-299
2010
51
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2010.033806
db/journals/ijtm/ijtm51.html#ChenK10
Tae Kyung Sung
Competitive advantage of IT and effects on strategy and structure: knowledge-intensive vs manufacturing industries.
359-378
2008
41
IJTM
3/4
https://doi.org/10.1504/IJTM.2008.016788
db/journals/ijtm/ijtm41.html#Sung08
Chong Ju Choi
Philip Cheng
Tarek Ibrahim Eldomiaty
Robert T. J. Chu
Carla C. J. M. Millar
R&D and industrial districts in Asia: an application to Taiwan.
291-298
2006
33
IJTM
2/3
https://doi.org/10.1504/IJTM.2006.008316
db/journals/ijtm/ijtm33.html#ChoiCECM06
Suchul Lee
Jongyi Hong
Euiho Suh
Measuring the change in knowledge sharing efficiency of virtual communities of practice: a case study.
58-75
2016
70
IJTM
1
https://doi.org/10.1504/IJTM.2016.074675
db/journals/ijtm/ijtm70.html#LeeHS16
Pamela Adams
Roberto Fontana
Franco Malerba
User knowledge in innovation in high technologies: an empirical analysis of semiconductors.
284-299
2012
58
IJTM
3/4
https://doi.org/10.1504/IJTM.2012.046619
db/journals/ijtm/ijtm58.html#AdamsFM12
Takaya Ichimura
Kazuyoshi Ishii
Markku Tuominen
Petteri Piippo
Comparative study of product innovation systems.
560-567
2003
25
IJTM
6/7
https://doi.org/10.1504/IJTM.2003.003121
db/journals/ijtm/ijtm25.html#IchimuraITP03
Bruno Motte
The One-Chip TV way.
597-609
2000
19
IJTM
6
https://doi.org/10.1504/IJTM.2000.002837
db/journals/ijtm/ijtm19.html#Motte00
Barry Shore
Giuseppe Zollo
Managing large-scale science and technology projects at the edge of knowledge: the Manhattan Project as a learning organisation.
26-46
2015
67
IJTM
1
https://doi.org/10.1504/IJTM.2015.065895
db/journals/ijtm/ijtm67.html#ShoreZ15
Fiona Lettice
Peter Thomond
Allocating resources to disruptive innovation projects: challenging mental models and overcoming management resistance.
140-159
2008
44
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.020702
db/journals/ijtm/ijtm44.html#LetticeT08
Bjorn Andersen
Henrik Sverre Loland
A study of the use and effects of quality improvement tools.
212-232
2001
22
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2001.002962
db/journals/ijtm/ijtm22.html#AndersenL01
Steven T. Walsh
Jonathan D. Linton
Robert Boylan
Cheickna Sylla
The evolution of technology management practice in developing economies: findings from Northern China.
311-329
2002
24
IJTM
2/3
https://doi.org/10.1504/IJTM.2002.003058
db/journals/ijtm/ijtm24.html#WalshLBS02
Chris W. Grevesen
Fariborz Damanpour
Performance implications of organisational structure and knowledge sharing in multinational R&D networks.
113-136
2007
38
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.012432
db/journals/ijtm/ijtm38.html#GrevesenD07
Sheng-Hsun Hsu
Shiou-Fen Tzeng
A dyadic perspective on knowledge exchange.
370-383
2010
49
IJTM
4
https://doi.org/10.1504/IJTM.2010.030164
db/journals/ijtm/ijtm49.html#HsuT10
Bjoern Hoeber
Mario Schaarschmidt
Transforming from service providers to solution providers: implications for provider-customer relationships and customer-induced solution innovation.
65-90
2017
73
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2017.10003241
db/journals/ijtm/ijtm73.html#HoeberS17
Ajay Das
E-provider evaluation: an exploratory study.
46-61
2004
28
IJTM
1
https://doi.org/10.1504/IJTM.2004.005052
db/journals/ijtm/ijtm28.html#Das04
Thomas J. Allen
Breffni Tomlin
Oscar Hauptman
Combining organisational and physical location to manage knowledge dissemination.
234-250
2008
44
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.020706
db/journals/ijtm/ijtm44.html#AllenTH08
Aleid Van Der Wiel
Bart Bossink
Enno Masurel
Reverse logistics for waste reduction in cradle-to-cradle-oriented firms: waste management strategies in the Dutch metal industry.
96-113
2012
60
IJTM
1/2
https://doi.org/10.1504/IJTM.2012.049108
db/journals/ijtm/ijtm60.html#WielBM12
Carmen Cabello-Medina
Antonio Carmona-Lavado
Ramón Valle-Cabrera
Identifying the variables associated with types of innovation, radical or incremental: strategic flexibility, organisation and context.
80-106
2006
35
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2006.009230
db/journals/ijtm/ijtm35.html#Cabello-MedinaCV06
Jose Manoel Carvalho de Mello
Flavia Cristina Alves Rocha
Networking for regional innovation and economic growth: the Brazilian Petropolis technopole.
488-497
2004
27
IJTM
5
https://doi.org/10.1504/IJTM.2004.004285
db/journals/ijtm/ijtm27.html#MelloR04
Elisabeth Eppinger
Gergana Vladova
Intellectual property management practices at small and medium-sized enterprises.
64-81
2013
61
IJTM
1
https://doi.org/10.1504/IJTM.2013.050244
db/journals/ijtm/ijtm61.html#EppingerV13
Petteri Piippo
Takaya Ichimura
Hannu Kärkkäinen
Markku Tuominen
Development needs and means of product innovation management in Finnish manufacturing companies.
489-510
2002
23
IJTM
5
https://doi.org/10.1504/IJTM.2002.003023
db/journals/ijtm/ijtm23.html#PiippoIKT02
Chun-Ling Tai
Jen-Fang Lee
Maintenance of persistent creativity and innovation in university laboratories.
177-197
2007
39
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.013445
db/journals/ijtm/ijtm39.html#TaiL07
Letizia Mortara
Clive I. V. Kerr
Robert Phaal
David R. Probert
A toolbox of elements to build Technology Intelligence systems.
322-345
2009
47
IJTM
4
https://doi.org/10.1504/IJTM.2009.024433
db/journals/ijtm/ijtm47.html#MortaraKPP09a
Prescott C. Ensign
Chen-Dong Lin
Samia Chreim
Ajax Persaud
Proximity, knowledge transfer, and innovation in technology-based mergers and acquisitions.
1-31
2014
66
IJTM
1
https://doi.org/10.1504/IJTM.2014.064018
db/journals/ijtm/ijtm66.html#EnsignLCP14
Jorgen Dahlgren
Jonas Soderlund
Modes and mechanisms of control in Multi-Project Organisations: the R&D case.
1-22
2010
50
IJTM
1
https://doi.org/10.1504/IJTM.2010.031915
db/journals/ijtm/ijtm50.html#DahlgrenS10
Frances M. Lynn
Melissa Malkin
Citizens, engineers and air toxics: citizen participation in technology based standard setting.
288-300
2000
19
IJTM
3/4/5
https://doi.org/10.1504/IJTM.2000.002823
db/journals/ijtm/ijtm19.html#LynnM00
Li Cai
Xiaoyu Yu
Qing Liu
Bang Nguyen
Radical innovation, market orientation, and risk-taking in Chinese new ventures: an exploratory study.
47-76
2015
67
IJTM
1
https://doi.org/10.1504/IJTM.2015.065896
db/journals/ijtm/ijtm67.html#CaiYLN15
Klaus Brockhoff
Customers' perspectives of involvement in new product development.
464-481
2003
26
IJTM
5/6
https://doi.org/10.1504/IJTM.2003.003418
db/journals/ijtm/ijtm26.html#Brockhoff03
Leif Gustavsson
Krushna Mahapatra
Reinhard Madlener
Energy systems in transition: perspectives for the diffusion of small-scale wood pellet heating technology.
327-347
2005
29
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.006010
db/journals/ijtm/ijtm29.html#GustavssonMM05
Ke Rong
Yong Lin
Yongjiang Shi
Jiang Yu
Linking business ecosystem lifecycle with platform strategy: a triple view of technology, application and organisation.
75-94
2013
62
IJTM
1
https://doi.org/10.1504/IJTM.2013.053042
db/journals/ijtm/ijtm62.html#RongLSY13
Sun-Hark Bong
Jinjoo Lee
Youngjoon Gil
Effective team processes for technology internalisation with special emphasis on knowledge management: successful late starter, Samsung case.
16-39
2004
27
IJTM
1
https://doi.org/10.1504/IJTM.2004.003879
db/journals/ijtm/ijtm27.html#BongLG04
Pedro López-Sáez
Gregorio Martin de Castro
José Emilio Navas-López
Organisational learning dynamics in the software publishing industry.
138-154
2008
41
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.015988
db/journals/ijtm/ijtm41.html#Lopez-SaezCN08
Yuan Li
Yi Liu
Yi Duan
Mingfang Li
Entrepreneurial orientation, strategic flexibilities and indigenous firm innovation in transitional China.
223-246
2008
41
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.015993
db/journals/ijtm/ijtm41.html#LiLDL08
Her-Jiun Sheu
Chao-Yi Pan
Cost-system choice in a multidimensional knowledge space: traditional versus activity-based costing.
358-388
2009
48
IJTM
3
https://doi.org/10.1504/IJTM.2009.024953
db/journals/ijtm/ijtm48.html#SheuP09
Eliezer Geisler
Giuseppe Turchetti
Conduit versus content: a model of the firm's market involvement and organisational competitiveness.
137-162
2018
76
IJTM
1/2
https://doi.org/10.1504/IJTM.2018.088741
db/journals/ijtm/ijtm76.html#GeislerT18
Anders Paarup Nielsen
Developing an organisational capability: dimensions, situations and managerial challenges.
23-42
2010
50
IJTM
1
https://doi.org/10.1504/IJTM.2010.031916
db/journals/ijtm/ijtm50.html#Nielsen10
Rafiq Dossani
Reforming venture capital in India: creating the enabling environment for information technology.
151-164
2003
25
IJTM
1/2
https://doi.org/10.1504/IJTM.2003.003095
db/journals/ijtm/ijtm25.html#Dossani03
Birgit Verworn
How German measurement and control firms integrate market and technological knowledge into the front end of new product development.
379-389
2006
34
IJTM
3/4
https://doi.org/10.1504/IJTM.2006.009465
db/journals/ijtm/ijtm34.html#Verworn06
Yoshimasa Goto
Kiminori Gemba
Implicit patent alliance acquiring the appropriability of innovation.
186-211
2016
71
IJTM
3/4
https://doi.org/10.1504/IJTM.2016.078568
db/journals/ijtm/ijtm71.html#GotoG16
Wann-Yih Wu
Hsin-Ju Tsai
Impact of social capital and business operation mode on intellectual capital and knowledge management.
147-171
2005
30
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006353
db/journals/ijtm/ijtm30.html#WuT05
Jie Yang
The contingency value of knowledge in new product creativity.
101-113
2007
40
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2007.013529
db/journals/ijtm/ijtm40.html#Yang07
Amar Gupta
Igor Crk
Surendra Sarnikar
Bipin Karunakaran
Drug effectiveness reporting and monitoring systems: discussion and prototype development.
174-190
2009
47
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2009.024121
db/journals/ijtm/ijtm47.html#GuptaCSK09
Phil Cooke
How benchmarking can lever cluster competitiveness.
292-320
2007
38
IJTM
3
https://doi.org/10.1504/IJTM.2007.012715
db/journals/ijtm/ijtm38.html#Cooke07
Tugrul U. Daim
Dundar F. Kocaoglu
Exploring the role of technology evaluation in the competitiveness of US electronics manufacturing companies.
77-94
2009
48
IJTM
1
https://doi.org/10.1504/IJTM.2009.024601
db/journals/ijtm/ijtm48.html#DaimK09
Mai Anttila
The role of marketing and innovation management in the Finnish electrical and electronics industry.
417-430
2002
23
IJTM
5
https://doi.org/10.1504/IJTM.2002.003018
db/journals/ijtm/ijtm23.html#Anttila02
Robert Edward Thomas Ward
Joann Fong
Bernard Eric Michael Jones
Lorna Ann Casselton
Stephen James Cox
How national science academies in developed countries can assist development in sub-Saharan Africa.
9-26
2009
46
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.022672
db/journals/ijtm/ijtm46.html#WardFJCC09
Les Tien-Shang Lee
The influences of leadership style and market orientation on export performance: an empirical study of small and medium enterprises in Taiwan.
404-424
2008
43
IJTM
4
https://doi.org/10.1504/IJTM.2008.020558
db/journals/ijtm/ijtm43.html#Lee08
Hideo Yamada
Sam Kurokawa
How to profit from de facto standard-based competition: learning from Japanese firms' experiences.
299-326
2005
30
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.006710
db/journals/ijtm/ijtm30.html#YamadaK05
Anna Rylander
Kristine Jacobsen
Goran Roos
Towards improved information disclosure on intellectual capital.
715-741
2000
20
IJTM
5/6/7/8
https://doi.org/10.1504/IJTM.2000.002892
db/journals/ijtm/ijtm20.html#RylanderJR00
Tuomo Alasoini
Promoting network-based organisational innovations: a new approach in Finnish labour and technology policies.
174-188
2001
22
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2001.002960
db/journals/ijtm/ijtm22.html#Alasoini01
Allam Ahmed
Sherine Ghoneim
Ronald Kim
Knowledge management as an enabler of change and innovation in Africa.
10-26
2009
45
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.021517
db/journals/ijtm/ijtm45.html#AhmedGK09
David F. J. Campbell
Wolfgang H. Güttel
Knowledge production of firms: research networks and the "scientification" of business R&D.
152-175
2005
31
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006629
db/journals/ijtm/ijtm31.html#CampbellG05
Henrik Berglund
Christian Sandström
A new perspective on the innovator's dilemma - exploring the role of entrepreneurial incentives.
142-156
2017
75
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2017.10006144
db/journals/ijtm/ijtm75.html#BerglundS17
Josep Maria Viedma Marti
ICBS: Intellectual Capital Benchmarking Systems.
799-818
2000
20
IJTM
5/6/7/8
https://doi.org/10.1504/IJTM.2000.002890
db/journals/ijtm/ijtm20.html#Marti00
Cristiano Antonelli
Aldo Geuna
W. Edward Steinmueller
Information and communication technologies and the production, distribution and use of knowledge.
72-94
2000
20
IJTM
1/2
https://doi.org/10.1504/IJTM.2000.002853
db/journals/ijtm/ijtm20.html#AntonelliGS00
Can Uslay
Naresh K. Malhotra
Alka V. Citrin
Unique marketing challenges at the frontiers of technology: an integrated perspective.
8-30
2004
28
IJTM
1
https://doi.org/10.1504/IJTM.2004.005050
db/journals/ijtm/ijtm28.html#UslayMC04
Paavo Ritala
Vassilis Agouridas
Dimitris Assimakopoulos
Otto Gies
Value creation and capture mechanisms in innovation ecosystems: a comparative case study.
244-267
2013
63
IJTM
3/4
https://doi.org/10.1504/IJTM.2013.056900
db/journals/ijtm/ijtm63.html#RitalaAAG13
Jiancheng Guan
Jingjing Zhang
Yan Yan
A dynamic perspective on diversities and network change: partner entry, exit and persistence.
221-242
2017
74
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2017.10004289
db/journals/ijtm/ijtm74.html#GuanZY17
Tobias Kesting
Wolfgang Gerstlberger
Thomas Baaken
A benefit segmentation approach for innovation-oriented university-business collaboration.
58-80
2018
76
IJTM
1/2
https://doi.org/10.1504/IJTM.2018.10009594
db/journals/ijtm/ijtm76.html#KestingGB18
Francesco Testa
Massimo Battaglia
Lara Bianchi
The diffusion of CSR initiatives among SMEs in industrial clusters: some findings from Italian experiences.
152-170
2012
58
IJTM
1/2
https://doi.org/10.1504/IJTM.2012.045793
db/journals/ijtm/ijtm58.html#TestaBB12
M. H. Bala Subrahmanya
Technological innovations in Indian small enterprises: dimensions, intensity and implications.
188-204
2005
30
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006350
db/journals/ijtm/ijtm30.html#Subrahmanya05
Paul Shrivastava
Vera Ivanaj
Silvester Ivanaj
Sustainable development and the arts.
23-43
2012
60
IJTM
1/2
https://doi.org/10.1504/IJTM.2012.049104
db/journals/ijtm/ijtm60.html#ShrivastavaII12
Gary K. Jones
Hildy Teegen
Factors affecting foreign R&D location decisions: management and host policy implications.
791-813
2003
25
IJTM
8
https://doi.org/10.1504/IJTM.2003.003138
db/journals/ijtm/ijtm25.html#JonesT03
Woodrow W. Clark Jr.
J. Dan Jensen
The role of government in privatisation: an economic model from Denmark.
540-555
2001
21
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002933
db/journals/ijtm/ijtm21.html#ClarkJ01
Mats Magnusson
Antonella Martini
Dual organisational capabilities: from theory to practice - the next challenge for continuous innovation.
1-19
2008
42
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.018073
db/journals/ijtm/ijtm42.html#MagnussonM08
Ove Granstrand
Marcus Holgersson
Multinational technology and intellectual property management - is there global convergence and/or specialisation?
117-147
2014
64
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2014.059931
db/journals/ijtm/ijtm64.html#GranstrandH14
Harri Haapasalo
Pekka Kess
Managing creativity: is it possible to control the birth of innovation in product design?
57-69
2002
24
IJTM
1
https://doi.org/10.1504/IJTM.2002.003044
db/journals/ijtm/ijtm24.html#HaapasaloK02
Horst Geschka
Thorsten Lenk
Jens Vietor
The idea and project database of WELLA AG.
410-416
2002
23
IJTM
5
https://doi.org/10.1504/IJTM.2002.003017
db/journals/ijtm/ijtm23.html#GeschkaLV02
Gurpreet Dhillon
Frances Hauge Fabian
A fractal perspective on competencies necessary for managing information systems.
129-139
2005
31
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006627
db/journals/ijtm/ijtm31.html#DhillonF05
Liang-Chih Huang
Ray Yen-Hui Wu
Applying fuzzy analytic hierarchy process in the managerial talent assessment model - an empirical study in Taiwan's semiconductor industry.
105-130
2005
30
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006347
db/journals/ijtm/ijtm30.html#HuangW05
Nicos Komninos
Regional intelligence: distributed localised information systems for innovation and development.
483-506
2004
28
IJTM
3/4/5/6
https://doi.org/10.1504/IJTM.2004.005306
db/journals/ijtm/ijtm28.html#Komninos04
Elias G. Carayannis
David F. J. Campbell
'Mode 3' and 'Quadruple Helix': toward a 21st century fractal innovation ecosystem.
201-234
2009
46
IJTM
3/4
https://doi.org/10.1504/IJTM.2009.023374
db/journals/ijtm/ijtm46.html#CarayannisC09
Padmanav Acharya
Biswajit Mahanty
Manpower shortage crisis in Indian information technology industry.
235-247
2007
38
IJTM
3
https://doi.org/10.1504/IJTM.2007.012712
db/journals/ijtm/ijtm38.html#AcharyaM07
Hong Zhang
Yaobin Lu
Ping Gao
Zhenxiang Chen
Social shopping communities as an emerging business model of youth entrepreneurship: exploring the effects of website characteristics.
319-345
2014
66
IJTM
4
https://doi.org/10.1504/IJTM.2014.064987
db/journals/ijtm/ijtm66.html#ZhangLGC14
Bianca Maria Colosimo
F. Godio
L. Palmieri
Comparative studies of control charts for torque data in automotive component assembling.
72-85
2007
37
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.011804
db/journals/ijtm/ijtm37.html#ColosimoGP07
José Moyano-Fuentes
Pedro José Martínez-Jurado
Juan Manuel Maqueira-Marín
Sebastián Bruque Cámara
Impact of use of information technology on lean production adoption: evidence from the automotive industry.
132-148
2012
57
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2012.043955
db/journals/ijtm/ijtm57.html#Moyano-FuentesMMC12
Eui-Sun Paik
Sangmoon Park
Ji Soo Kim
Knowledge transfer of government research institute: the case of ETRI in Korea.
392-411
2009
47
IJTM
4
https://doi.org/10.1504/IJTM.2009.024436
db/journals/ijtm/ijtm47.html#PaikPK09
David Rönnberg Sjödin
Per-Erik Eriksson
Johan Frishammar
Open innovation in process industries: a lifecycle perspective on development of process equipment.
225-240
2011
56
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2011.042984
db/journals/ijtm/ijtm56.html#SjodinEF11
Marcus Ehrhardt
Network effects, standardisation and competitive strategy: how companies influence the emergence of dominant designs.
272-294
2004
27
IJTM
2/3
https://doi.org/10.1504/IJTM.2004.003956
db/journals/ijtm/ijtm27.html#Ehrhardt04
Risto Rajala
Mika Westerlund
Arto Rajala
Seppo Leminen
Knowledge-intensive service activities in software business.
273-290
2008
41
IJTM
3/4
https://doi.org/10.1504/IJTM.2008.016784
db/journals/ijtm/ijtm41.html#RajalaWRL08
Yi-Hsing Chang
J. Wey Chen
Binshan Lin
KMsharer: an information technology approach to enable knowledge management services.
252-265
2008
43
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2008.019418
db/journals/ijtm/ijtm43.html#ChangCL08
Paulo N. Figueiredo
Learning processes features: how do they influence inter-firm differences in technological capability-accumulation paths and operational performance improvement? \[1\].
655-693
2003
26
IJTM
7
https://doi.org/10.1504/IJTM.2003.003451
db/journals/ijtm/ijtm26.html#Figueiredo03
Hongwu Ouyang
Resources, absorptive capacity, and technology sourcing.
183-202
2008
41
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.015991
db/journals/ijtm/ijtm41.html#Ouyang08
Gil Avnimelech
Maryann P. Feldman
The stickiness of university spin-offs: a study of formal and informal spin-offs and their location from 124 US academic institutions.
122-149
2015
68
IJTM
1/2
https://doi.org/10.1504/IJTM.2015.068755
db/journals/ijtm/ijtm68.html#AvnimelechF15
Annabel K. Kiernan
Technocratic policy partnerships: a new descriptor for public administration?
384-396
2000
19
IJTM
3/4/5
https://doi.org/10.1504/IJTM.2000.002822
db/journals/ijtm/ijtm19.html#Kiernan00
Douglas B. Fuller
Networks and nations: the interplay of transnational networks and domestic institutions in China's chip design industry.
239-257
2010
51
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2010.033804
db/journals/ijtm/ijtm51.html#Fuller10
Jens Mueller
Maria Rosaria Della Peruta
Manlio Del Giudice
Social media platforms and technology education: Facebook on the way to graduate school.
358-370
2014
66
IJTM
4
https://doi.org/10.1504/IJTM.2014.065005
db/journals/ijtm/ijtm66.html#MuellerPG14
Rolf Wustenhagen
Tarja Teppo
Do venture capitalists really invest in good industries? Risk-return perceptions and path dependence in the emerging European energy VC market.
63-87
2006
34
IJTM
1/2
https://doi.org/10.1504/IJTM.2006.009448
db/journals/ijtm/ijtm34.html#WustenhagenT06
Maurus Büsser
Andreas Ninck
BrainSpace: a virtual environment for collaboration and innovation.
702-713
2004
28
IJTM
7/8
https://doi.org/10.1504/IJTM.2004.005778
db/journals/ijtm/ijtm28.html#BusserN04
Emmo M. Meijer
DSM and innovation: a case study.
260-277
2006
34
IJTM
3/4
https://doi.org/10.1504/IJTM.2006.009459
db/journals/ijtm/ijtm34.html#Meijer06
Ray Pine
Ming Xi Yu
Technology transfer to hotels in China by multinational hotel enterprises in Hong Kong.
183-197
2001
21
IJTM
1/2
https://doi.org/10.1504/IJTM.2001.002905
db/journals/ijtm/ijtm21.html#PineY01
Jimme A. Keizer
Johannes I. M. Halman
Risks in major innovation projects, a multiple case study within a world's leading company in the fast moving consumer goods.
499-517
2009
48
IJTM
4
https://doi.org/10.1504/IJTM.2009.026691
db/journals/ijtm/ijtm48.html#KeizerH09
Takuma Takahashi
The role of knowledge and organisation in the competitiveness of Japanese high-tech industry.
480-502
2001
22
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002974
db/journals/ijtm/ijtm22.html#Takahashi01
Bernard Guilhon
Sandra Montchaud
The dynamics of venture capital industry.
146-160
2006
34
IJTM
1/2
https://doi.org/10.1504/IJTM.2006.009452
db/journals/ijtm/ijtm34.html#GuilhonM06
Rick Middel
David Coghlan
Paul Coughlan
Louis Brennan
Timothy McNichols
Action research in collaborative improvement.
67-91
2006
33
IJTM
1
https://doi.org/10.1504/IJTM.2006.008192
db/journals/ijtm/ijtm33.html#MiddelCCBM06
Robert G. Van Wingerden
Managing change.
487-495
2001
21
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002928
db/journals/ijtm/ijtm21.html#Wingerden01
Thomas Hering
Michael Olbrich
Martin Steinrucke
Valuation of start-up internet companies.
406-419
2006
33
IJTM
4
https://doi.org/10.1504/IJTM.2006.009252
db/journals/ijtm/ijtm33.html#HeringOS06
Jack Baranson
East-West ventures in Belarus.
523-528
2001
21
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002931
db/journals/ijtm/ijtm21.html#Baranson01
Hideaki Miyajima
Yasuhiro Arikawa
Atsushi Kato
Corporate governance, relational banking and R&D: evidence from Japanese large firms in the 1980s and 1990s.
769-787
2002
23
IJTM
7/8
https://doi.org/10.1504/IJTM.2002.003037
db/journals/ijtm/ijtm23.html#MiyajimaAK02
Francesco Schiavone
Concetta Metallo
Rocco Agrifoglio
Extending the DART model for social media.
271-287
2014
66
IJTM
4
https://doi.org/10.1504/IJTM.2014.064967
db/journals/ijtm/ijtm66.html#SchiavoneMA14
Susan Leung
Jerry Tse
Mark Williams
Jianhua Zhong
Howard Davies
The legal framework for technology development and technology import in China.
42-60
2001
21
IJTM
1/2
https://doi.org/10.1504/IJTM.2001.002901
db/journals/ijtm/ijtm21.html#LeungTWZD01
Jens O. Riis
Steen Hildebrandt
Mogens Myrup Andreasen
John Johansen
Implementing change: lessons from five development projects.
13-27
2001
22
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2001.002952
db/journals/ijtm/ijtm22.html#RiisHAJ01
Patrick Dawson
Lisa Daniel
Understanding social innovation: a provisional framework.
9-21
2010
51
IJTM
1
https://doi.org/10.1504/IJTM.2010.033125
db/journals/ijtm/ijtm51.html#DawsonD10
Daniel Palacios Marqués
Fernando José Garrigós Simón
A measurement scale for knowledge management in the biotechnology and telecommunications industries.
358-374
2005
31
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.006639
db/journals/ijtm/ijtm31.html#MarquesS05
Ta-Hsien Lo
Shyhnan Liou
Benjamin Yuan
Organisation innovation and entrepreneurship: the role of the national laboratories in promoting industrial development.
67-84
2005
30
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006352
db/journals/ijtm/ijtm30.html#LoLY05
Holger Ernst
Jan Henrik Soll
An integrated portfolio approach to support market-oriented R&D planning.
540-560
2003
26
IJTM
5/6
https://doi.org/10.1504/IJTM.2003.003422
db/journals/ijtm/ijtm26.html#ErnstS03
Xiaobo Wu
Wei Dou 0003
Jian Du
Yuanlin Jiang
Production network positions, innovation orientation and environmental dynamics: an empirical analysis of Chinese firms.
77-102
2015
67
IJTM
1
https://doi.org/10.1504/IJTM.2015.065888
db/journals/ijtm/ijtm67.html#Wu0DJ15
Ingrid Kissling-Naf
From a learned society to a 21st-century science broker: the Swiss Academy of Sciences as a partner in the dialogue with society.
120-131
2009
46
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.022680
db/journals/ijtm/ijtm46.html#Kissling-Naf09
Amrik S. Sohal
Walter W. C. Chung
Michael Morrison
In search of learning organisations: case experiences from Hong Kong.
656-673
2004
27
IJTM
6/7
https://doi.org/10.1504/IJTM.2004.004908
db/journals/ijtm/ijtm27.html#SohalCM04
Valerie Thorn
Francis Hunt
Rick Mitchell
David Probert
Robert Phaal
Internal technology valuation: real world issues.
149-160
2011
53
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2011.038588
db/journals/ijtm/ijtm53.html#ThornHMPP11
Rongping Mu
Zhongbao Ren
Hefa Song
Fang Chen
Innovative development and innovation capacity-building in China.
427-452
2010
51
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2010.033813
db/journals/ijtm/ijtm51.html#MuRSC10
Miriam Delgado-Verde
Sarah Cooper
Gregorio Martin de Castro
The moderating role of social networks within the radical innovation process: a multidimensionality of human capital-based analysis.
117-138
2015
69
IJTM
2
https://doi.org/10.1504/IJTM.2015.071551
db/journals/ijtm/ijtm69.html#Delgado-VerdeCC15
Takuji Hara
Innovation management of Japanese pharmaceutical companies: the case of an antibiotic developed by Takeda.
351-364
2005
30
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.006711
db/journals/ijtm/ijtm30.html#Hara05
Andreas Kuckertz
Marko Kohtamaki
Cornelia Dröge
The fast eat the slow - the impact of strategy and innovation timing on the success of technology-oriented ventures.
175-188
2010
52
IJTM
1/2
https://doi.org/10.1504/IJTM.2010.035861
db/journals/ijtm/ijtm52.html#KuckertzKD10
Sandy A. Salib
Khaled Wahba
The acceptance of "self-service" technology in the Egyptian telecom industry.
20-38
2005
31
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006620
db/journals/ijtm/ijtm31.html#SalibW05
Robert H. Pitkethly
Intellectual property awareness.
163-179
2012
59
IJTM
3/4
https://doi.org/10.1504/IJTM.2012.047243
db/journals/ijtm/ijtm59.html#Pitkethly12
Christian Le Bas
Fabienne Picard
Models for allocating public venture capital to innovation projects: lessons from a French public agency.
185-198
2006
34
IJTM
1/2
https://doi.org/10.1504/IJTM.2006.009454
db/journals/ijtm/ijtm34.html#BasP06
Luis Sanz-Menéndez
Cecilia Cabello
Clara Eugenia Garcia
Understanding technology foresight: the relevance of its S&T policy context \[1\].
661-679
2001
21
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002942
db/journals/ijtm/ijtm21.html#Sanz-MenendezCG01
Kazuyuki Motohashi
Takanori Tomozawa
Differences in science based innovation by technology life cycles: the case of solar cell technology.
5-18
2016
72
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2016.10001553
db/journals/ijtm/ijtm72.html#MotohashiT16
Hélène Sicotte
Lise Préfontaine
Line Ricard
Mario Bourgault
New product development: customers' and suppliers' assessment of the same project.
176-192
2004
27
IJTM
2/3
https://doi.org/10.1504/IJTM.2004.003951
db/journals/ijtm/ijtm27.html#SicottePRB04
Lars Löfqvist
Motivation for innovation in small enterprises.
242-265
2012
60
IJTM
3/4
https://doi.org/10.1504/IJTM.2012.049441
db/journals/ijtm/ijtm60.html#Lofqvist12
Ferdinando Chiaromonte
From R&D management to strategic technology management: evolution and perspectives.
538-552
2003
25
IJTM
6/7
https://doi.org/10.1504/IJTM.2003.003119
db/journals/ijtm/ijtm25.html#Chiaromonte03
Ricardo Alaez
Javier Bilbao
Vicente Camino
Juan-Carlos Longas
Technology and inter-firm relationships in the automotive industry: the case of the Basque Country and Navarre (Spain).
267-289
2008
42
IJTM
3
https://doi.org/10.1504/IJTM.2008.018107
db/journals/ijtm/ijtm42.html#AlaezBCL08
YongKi Yoon
Kun Shin Im
Evaluating IT outsourcing customer satisfaction and its impact on firm performance in Korea.
160-175
2008
43
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2008.019413
db/journals/ijtm/ijtm43.html#YoonI08
A. Sivathanu Pillai
K. Srinivasa Rao
High technology product development: technical and management review system.
685-698
2000
19
IJTM
7/8
https://doi.org/10.1504/IJTM.2000.002850
db/journals/ijtm/ijtm19.html#PillaiR00
Marek J. Dziura
Innovation: sources and strategies.
612-627
2001
21
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002938
db/journals/ijtm/ijtm21.html#Dziura01
Henk Post
Built to last: why BAAN continues to be successful.
638-658
2000
19
IJTM
6
https://doi.org/10.1504/IJTM.2000.002838
db/journals/ijtm/ijtm19.html#Post00
Chia-Ling Lee
Chin-Tsang Ho
Yun-Lin Chiu
The impact of knowledge management enablers on non-financial performance in small and medium enterprises.
266-283
2008
43
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2008.019419
db/journals/ijtm/ijtm43.html#LeeHC08
Julio J. Garcia-Sabater
Juan A. Marin-Garcia
Can we still talk about continuous improvement? Rethinking enablers and inhibitors for successful implementation.
28-42
2011
55
IJTM
1/2
https://doi.org/10.1504/IJTM.2011.041678
db/journals/ijtm/ijtm55.html#Garcia-SabaterM11
Mariano Corso
Andrea Giacobbe
Antonella Martini
Luisa Pellegrini
Tools and abilities for continuous improvement: what are the drivers of performance?
348-365
2007
37
IJTM
3/4
https://doi.org/10.1504/IJTM.2007.012268
db/journals/ijtm/ijtm37.html#CorsoGMP07
Dimitris Assimakopoulos
Jie Yan
An innovative model of a computer-mediated professional community: China software developer net.
238-251
2008
43
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2008.019417
db/journals/ijtm/ijtm43.html#AssimakopoulosY08
Eleni Apospori
Konstantinos G. Zografos
Solon Magrizos
SME corporate social responsibility and competitiveness: a literature review.
10-31
2012
58
IJTM
1/2
https://doi.org/10.1504/IJTM.2012.045786
db/journals/ijtm/ijtm58.html#AposporiZM12
Paz Estrella Tolentino
Technological innovation and emerging economy multinationals: the product cycle model revisited.
122-139
2017
74
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2017.10004285
db/journals/ijtm/ijtm74.html#Tolentino17
Carla C. J. M. Millar
Chong Ju Choi
Reverse knowledge and technology transfer: imbalances caused by cognitive barriers in asymmetric relationships.
389-402
2009
48
IJTM
3
https://doi.org/10.1504/IJTM.2009.024954
db/journals/ijtm/ijtm48.html#MillarC09
Leo Tan Wee Hin
R. Subramaniam
Science and technology centres as agents for promoting science culture in developing nations.
413-426
2003
25
IJTM
5
https://doi.org/10.1504/IJTM.2003.003110
db/journals/ijtm/ijtm25.html#HinS03
Tobias Kollmann
What is e-entrepreneurship? - fundamentals of company founding in the net economy.
322-340
2006
33
IJTM
4
https://doi.org/10.1504/IJTM.2006.009247
db/journals/ijtm/ijtm33.html#Kollmann06
Michael Stephan
Eric Pfaffmann
Ron Sanchez
Modularity in cooperative product development: the case of the MCC 'smart' car.
439-458
2008
42
IJTM
4
https://doi.org/10.1504/IJTM.2008.019385
db/journals/ijtm/ijtm42.html#StephanPS08
Xin Li
Yuan Zhou
Lan Xue
Lucheng Huang
Roadmapping for industrial emergence and innovation gaps to catch-up: a patent-based analysis of OLED industry in China.
105-143
2016
72
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2016.10001552
db/journals/ijtm/ijtm72.html#LiZXH16
Haowen Cai
Haowen Chen
Yuan Li
Yi Liu
External dynamic capabilities, reconfiguration of cooperation mechanism and new product development: contingent effect of technological resource base.
240-261
2014
65
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2014.060952
db/journals/ijtm/ijtm65.html#CaiCLL14
Jianhuai Shi
George Q. Huang
Kai-Ling Mak
Synchronised Design for X platform for performance measurement on the WWW.
28-44
2003
26
IJTM
1
https://doi.org/10.1504/IJTM.2003.003142
db/journals/ijtm/ijtm26.html#ShiHM03
Bjorn Ambos
Tina C. Ambos
Location choice, management and performance of international R&D investments in peripheral economies.
24-41
2009
48
IJTM
1
https://doi.org/10.1504/IJTM.2009.024598
db/journals/ijtm/ijtm48.html#AmbosA09
Allam Ahmed
Managing knowledge and technology for sustainable development in Africa.
1-9
2009
45
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.021762
db/journals/ijtm/ijtm45.html#Ahmed09
Tina Lundø Tranekjer
Helle Alsted Søndergaard
Sources of innovation, their combinations and strengths - benefits at the NPD project level.
205-236
2013
61
IJTM
3/4
https://doi.org/10.1504/IJTM.2013.052668
db/journals/ijtm/ijtm61.html#TranekjerS13
Se-Hwa Wu
Frederick B. Hsu
Towards a knowledge-based view of OEM relationship building: sharing of industrial experiences in Taiwan.
503-524
2001
22
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002975
db/journals/ijtm/ijtm22.html#WuH01
Rüdiger Wink
Transregional effects of knowledge management: implications for policy and evaluation design.
421-438
2003
26
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2003.003390
db/journals/ijtm/ijtm26.html#Wink03
Joseph P. McGill
Technological knowledge and governance in alliances among competitors.
69-89
2007
38
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.012430
db/journals/ijtm/ijtm38.html#McGill07
Inge Neyens
Dries Faems
Luc Sels
The impact of continuous and discontinuous alliance strategies on startup innovation performance.
392-410
2010
52
IJTM
3/4
https://doi.org/10.1504/IJTM.2010.035982
db/journals/ijtm/ijtm52.html#NeyensFS10
Martin Spring
Robert C. Sweeting
Empowering customers: portals, supply networks and assemblers.
113-128
2002
23
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2002.003001
db/journals/ijtm/ijtm23.html#SpringS02
Max Helander
Robert Bergqvist
Katarina Lund Stetler
Mats Magnusson
Applying lean in product development - enabler or inhibitor of creativity?
49-69
2015
68
IJTM
1/2
https://doi.org/10.1504/IJTM.2015.068774
db/journals/ijtm/ijtm68.html#HelanderBSM15
George Chorafakis
Patrice Laget
Technological cognition and co-adaptation in mesoeconomic plexuses.
235-262
2009
46
IJTM
3/4
https://doi.org/10.1504/IJTM.2009.023375
db/journals/ijtm/ijtm46.html#ChorafakisL09
Doug Love
Jeff Barton
G. Don Taylor
Evaluating approaches to product design and sourcing decisions in multinational companies.
103-119
2003
26
IJTM
1
https://doi.org/10.1504/IJTM.2003.003147
db/journals/ijtm/ijtm26.html#LoveBT03
Xibao Li
Guisheng Wu
In-house R&D, technology purchase and innovation: empirical evidences from Chinese hi-tech industries, 1995-2004.
217-238
2010
51
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2010.033803
db/journals/ijtm/ijtm51.html#LiW10
Oliver Gassmann
Christoph Kausch
Ellen Enkel
Negative side effects of customer integration.
43-63
2010
50
IJTM
1
https://doi.org/10.1504/IJTM.2010.031917
db/journals/ijtm/ijtm50.html#GassmannKE10
Don Oh Choi
Ji Soo Kim
Productivity measurement and evaluation models with application to a military Ramp;D organisation.
408-436
2005
32
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.007339
db/journals/ijtm/ijtm32.html#ChoiK05
Angeles Montoro-Sánchez
Domingo Ribeiro Soriano
Editorial.
1-11
2011
54
IJTM
1
https://doi.org/10.1504/IJTM.2011.038882
db/journals/ijtm/ijtm54.html#Montoro-SanchezS11
Yutao Sun
Fengchao Liu
New trends in Chinese innovation policies since 2009 - a system framework of policy analysis.
6-23
2014
65
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2014.060953
db/journals/ijtm/ijtm65.html#SunL14
He Ni
Tianhong Luan
Yu Cao
Donald C. Finlay
Can venture capital trigger innovation? New evidence from China.
189-214
2014
65
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2014.060957
db/journals/ijtm/ijtm65.html#NiLCF14
Hans-Horst Schröder
Antonie Jetter
Integrating market and technological knowledge in the fuzzy front end: an FCM-based action support system.
517-539
2003
26
IJTM
5/6
https://doi.org/10.1504/IJTM.2003.003421
db/journals/ijtm/ijtm26.html#SchroderJ03
Hailong Ju
Shaojie Zhang
Shukuan Zhao
Xiaowei Ju
Knowledge transfer capacity of universities and knowledge transfer success: evidence from university - industry collaborations in China.
278-300
2016
71
IJTM
3/4
https://doi.org/10.1504/IJTM.2016.078572
db/journals/ijtm/ijtm71.html#JuZZJ16
Russ Price
The role of service providers in establishing networked regional business accelerators in Utah.
465-474
2004
27
IJTM
5
https://doi.org/10.1504/IJTM.2004.004283
db/journals/ijtm/ijtm27.html#Price04
Sven Keski-Seppala
Managing CFD simulation: reflections around a questionnaire.
298-314
2001
21
IJTM
3/4
https://doi.org/10.1504/IJTM.2001.002914
db/journals/ijtm/ijtm21.html#Keski-Seppala01
C. Anne Davies
Desmond Roche
Information processes in support of innovation.
556-568
2000
20
IJTM
5/6/7/8
https://doi.org/10.1504/IJTM.2000.002881
db/journals/ijtm/ijtm20.html#DaviesR00
John Waters
Achieving innovation or the Holy Grail: managing knowledge or managing commitment?
819-838
2000
20
IJTM
5/6/7/8
https://doi.org/10.1504/IJTM.2000.002897
db/journals/ijtm/ijtm20.html#Waters00
Hans-Peter Lorenzen
The significance of communication networks for the success of system evaluations.
150-165
2003
26
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2003.003367
db/journals/ijtm/ijtm26.html#Lorenzen03
Somchai Numprasertchai
Barbara Igel
Managing knowledge in new product and service development: a new management approach for innovative research organisations.
667-684
2004
28
IJTM
7/8
https://doi.org/10.1504/IJTM.2004.005776
db/journals/ijtm/ijtm28.html#NumprasertchaiI04
Jeremy Howells
Andrew D. James
Khaleel Malik
Sourcing external technological knowledge: a decision support framework for firms.
143-154
2004
27
IJTM
2/3
https://doi.org/10.1504/IJTM.2004.003949
db/journals/ijtm/ijtm27.html#HowellsJM04
Junmo Kim
Are industries destined toward "productivity paradox"? An empirical case of Korea.
263-279
2005
29
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.005999
db/journals/ijtm/ijtm29.html#Kim05
Jamal Eddine Azzam
Cécile Ayerbe
Rani Dang
Using patents to orchestrate ecosystem stability: the case of a French aerospace company.
97-120
2017
75
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2017.10006146
db/journals/ijtm/ijtm75.html#AzzamAD17
Iuan-yuan Lu
Tsun-jin Chang
A contingency model for studying R&D-marketing integration in NPD context.
143-164
2002
24
IJTM
2/3
https://doi.org/10.1504/IJTM.2002.003049
db/journals/ijtm/ijtm24.html#LuC02
Davide Aloini
Antonella Martini
Luisa Pellegrini
Effectiveness of different development paths in continuous improvement: empirical results from a (new) methodological approach.
6-27
2011
55
IJTM
1/2
https://doi.org/10.1504/IJTM.2011.041677
db/journals/ijtm/ijtm55.html#AloiniMP11
Pier A. Abetti
General Electric at the crossroads: the end of the last US conglomerate?
345-368
2011
54
IJTM
4
https://doi.org/10.1504/IJTM.2011.041579
db/journals/ijtm/ijtm54.html#Abetti11
Christian Luthje
Christopher Lettl
Cornelius Herstatt
Knowledge distribution among market experts: a closer look into the efficiency of information gathering for innovation projects.
561-577
2003
26
IJTM
5/6
https://doi.org/10.1504/IJTM.2003.003423
db/journals/ijtm/ijtm26.html#LuthjeLH03
René Chester Goduscheit
Jacob Høj Jørgensen
User toolkits for innovation - a literature review.
274-292
2013
61
IJTM
3/4
https://doi.org/10.1504/IJTM.2013.052671
db/journals/ijtm/ijtm61.html#GoduscheitJ13
Christian Sandström
High-end disruptive technologies with an inferior performance.
109-122
2011
56
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2011.042977
db/journals/ijtm/ijtm56.html#Sandstrom11
Shinya Kinukawa
Kazuyuki Motohashi
What determines the outcome of licensing deals in market for technology? Empirical analysis of sellers and buyers in biotechnology alliances.
257-280
2016
70
IJTM
4
https://doi.org/10.1504/IJTM.2016.075885
db/journals/ijtm/ijtm70.html#KinukawaM16
Alfred Li-Ping Cheng
ICT industry development strategies and the formation of industrial innovation systems on the two sides of the Taiwan Strait.
264-276
2005
32
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.007333
db/journals/ijtm/ijtm32.html#Cheng05
Alan Nursall
Building public knowledge: collaborations between science centres, universities and industry.
381-389
2003
25
IJTM
5
https://doi.org/10.1504/IJTM.2003.003107
db/journals/ijtm/ijtm25.html#Nursall03
Jean-Paul Beltramo
Jean-Jacques Paul
Cathy Perret
The recruitment of researchers and the organisation of scientific activity in industry.
811-834
2001
22
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002993
db/journals/ijtm/ijtm22.html#BeltramoPP01
Claudio R. Frischtak
Learning and capability building in industrialising economies: a critical note.
40-42
2006
36
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2006.009960
db/journals/ijtm/ijtm36.html#Frischtak06
Po-Young Chu
Hsing-Hwa Hsiung
Chi-Hung Huang
Chuan-Yi Yang
Determinants of the valuation of intangible assets - a contrast between Taiwanese and American IC design houses.
336-358
2008
41
IJTM
3/4
https://doi.org/10.1504/IJTM.2008.016787
db/journals/ijtm/ijtm41.html#ChuHHY08
Frank Tietze
Tim Schiederig
Cornelius Herstatt
Firms' transition to green product service system innovators: cases from the mobility sector.
51-69
2013
63
IJTM
1/2
https://doi.org/10.1504/IJTM.2013.055579
db/journals/ijtm/ijtm63.html#TietzeSH13
Michel Ferrary
Managing the disruptive technologies life cycle by externalising the research: social network and corporate venturing in the Silicon Valley.
165-180
2003
25
IJTM
1/2
https://doi.org/10.1504/IJTM.2003.003096
db/journals/ijtm/ijtm25.html#Ferrary03
Tiziana Russo Spena
Alessandra De Chiara
CSR, innovation strategy and supply chain management: toward an integrated perspective.
83-108
2012
58
IJTM
1/2
https://doi.org/10.1504/IJTM.2012.045790
db/journals/ijtm/ijtm58.html#SpenaC12
Wei Xie
Steven White
Windows of opportunity, learning strategies and the rise of China's handset makers.
230-248
2006
36
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2006.009970
db/journals/ijtm/ijtm36.html#XieW06
David William Birchall
Jean-Jacques Chanaron
George Tovstiga
Carola Hillenbrand
Innovation performance measurement: current practices, issues and management challenges.
1-20
2011
56
IJTM
1
https://doi.org/10.1504/IJTM.2011.042492
db/journals/ijtm/ijtm56.html#BirchallCTH11
Deepak Hegde
Philip Shapira
Knowledge, technology trajectories, and innovation in a developing country context: evidence from a survey of Malaysian firms.
349-370
2007
40
IJTM
4
https://doi.org/10.1504/IJTM.2007.015757
db/journals/ijtm/ijtm40.html#HegdeS07
Mandar Dabhilkar
Lars Bengtsson
Continuous improvement capability in the Swedish engineering industry.
272-289
2007
37
IJTM
3/4
https://doi.org/10.1504/IJTM.2007.012263
db/journals/ijtm/ijtm37.html#DabhilkarB07
Rodney McAdam
Neil Mitchell
The influences of critical incidents and lifecycle dynamics on innovation implementation constructs in SMEs: a longitudinal study.
189-212
2010
52
IJTM
1/2
https://doi.org/10.1504/IJTM.2010.035862
db/journals/ijtm/ijtm52.html#McAdamM10
Anja Schulze
Thorsten Störmer
Lean product development - enabling management factors for waste elimination.
71-91
2012
57
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2012.043952
db/journals/ijtm/ijtm57.html#SchulzeS12
Wen-Tsao Pan
Using data mining for service satisfaction performance analysis for mainland tourists in Taiwan.
31-44
2014
64
IJTM
1
https://doi.org/10.1504/IJTM.2014.059236
db/journals/ijtm/ijtm64.html#Pan14
Johannes B. Crol
Creating support for a change in strategy.
586-596
2000
19
IJTM
6
https://doi.org/10.1504/IJTM.2000.002833
db/journals/ijtm/ijtm19.html#Crol00
Paul Richards
Martien De Bruin-Hoekzema
Stephen G. Hughes
Comfort Kudadjie-Freeman
Samuel Kwame Offei
Paul C. Struik
Afio Zannou
Seed systems for African food security: linking molecular genetic analysis and cultivator knowledge in West Africa.
196-214
2009
45
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.021528
db/journals/ijtm/ijtm45.html#RichardsBHKOSZ09
Tung-Hsiang Chou
Jia-Lang Seng
Binshan Lin
eTOM and e-services based trouble-management operations: a large scale telecom case study.
383-403
2008
43
IJTM
4
https://doi.org/10.1504/IJTM.2008.020557
db/journals/ijtm/ijtm43.html#ChouSL08
Julien Granata
Mickaël Géraudel
Katherine Gundolf
Johanna Gast
Pierre Marquès
Organisational innovation and coopetition between SMEs: a tertius strategies approach.
81-99
2016
71
IJTM
1/2
https://doi.org/10.1504/IJTM.2016.077975
db/journals/ijtm/ijtm71.html#GranataGGGM16
Moreno Muffatto
Marco Roveda
Product architecture and platforms: a conceptual framework.
1-16
2002
24
IJTM
1
https://doi.org/10.1504/IJTM.2002.003040
db/journals/ijtm/ijtm24.html#MuffattoR02
Gary F. Templeton
Charles A. Snyder
Precursors, contexts and consequences of organisational learning.
765-781
2000
20
IJTM
5/6/7/8
https://doi.org/10.1504/IJTM.2000.002895
db/journals/ijtm/ijtm20.html#TempletonS00
Hannu Kärkkäinen
Kalle Elfvengren
Markku Tuominen
Petteri Piippo
A tool for systematic assessment of customer needs in industrial markets.
588-604
2003
25
IJTM
6/7
https://doi.org/10.1504/IJTM.2003.003124
db/journals/ijtm/ijtm25.html#KarkkainenETP03
Paul Hyland
Karen Becker
Terry Sloan
Frances Jørgensen
CI in the work place: does involving the HRM function make any difference?
427-440
2008
44
IJTM
3/4
https://doi.org/10.1504/IJTM.2008.021048
db/journals/ijtm/ijtm44.html#HylandBSJ08
Junmo Kim
Balancing industry outlooks and technology policy as response.
49-65
2010
49
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2010.029410
db/journals/ijtm/ijtm49.html#Kim10
Harry Boer
Willem E. During
Innovation, what innovation? A comparison between product, process and organisational innovation.
83-107
2001
22
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2001.002956
db/journals/ijtm/ijtm22.html#BoerD01
Eduardo Gonzalez
Ana Carcaba
Efficiency improvement through learning.
628-638
2004
27
IJTM
6/7
https://doi.org/10.1504/IJTM.2004.004906
db/journals/ijtm/ijtm27.html#GonzalezC04
Jiancheng Guan
Shunzhong Liu
Comparing regional innovative capacities of PR China based on data analysis of the national patents.
225-245
2005
32
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.007331
db/journals/ijtm/ijtm32.html#GuanL05
Valerie Merindol
David W. Versailles
Dual-use as Knowledge-Oriented Policy: France during the 1990-2000s.
80-98
2010
50
IJTM
1
https://doi.org/10.1504/IJTM.2010.031919
db/journals/ijtm/ijtm50.html#MerindolV10
Sangkyun Kim
Auditing methodology on legal compliance of enterprise information systems.
270-287
2011
54
IJTM
2/3
https://doi.org/10.1504/IJTM.2011.039315
db/journals/ijtm/ijtm54.html#Kim11a
Ravinder K. Zutshi
Confucian value system and its impact on joint venture formation.
160-182
2006
33
IJTM
2/3
https://doi.org/10.1504/IJTM.2006.008309
db/journals/ijtm/ijtm33.html#Zutshi06
Albert Antoine
Carl B. Frank
Hideaki Murata
Edward Roberts
Acquisitions and alliances in the aerospace industry: an unusual triad.
779-790
2003
25
IJTM
8
https://doi.org/10.1504/IJTM.2003.003137
db/journals/ijtm/ijtm25.html#AntoineFMR03
Benjamin J. C. Yuan
Pao Cheng Chang
A study forecasting the development tendency of the textile industry in Taiwan.
296-310
2002
24
IJTM
2/3
https://doi.org/10.1504/IJTM.2002.003057
db/journals/ijtm/ijtm24.html#YuanC02
Eckhard Lichtenthaler
Organising the external technology exploitation process: current practices and future challenges.
255-271
2004
27
IJTM
2/3
https://doi.org/10.1504/IJTM.2004.003955
db/journals/ijtm/ijtm27.html#Lichtenthaler04
S. Balan
Prem Vrat
Pradeep Kumar
A strategic decision model for the justification of supply chain as a means to improve national development index.
69-86
2007
40
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2007.013527
db/journals/ijtm/ijtm40.html#BalanVK07
G. Shainesh
Understanding buyer behaviour in software services - strategies for Indian firms.
118-127
2004
28
IJTM
1
https://doi.org/10.1504/IJTM.2004.005056
db/journals/ijtm/ijtm28.html#Shainesh04
João Vaz Estêvão
Maria João Carneiro
Leonor Teixeira
Destination management systems: creation of value for visitors of tourism destinations.
64-88
2014
64
IJTM
1
https://doi.org/10.1504/IJTM.2014.059233
db/journals/ijtm/ijtm64.html#EstevaoCT14
Yair Berson
Jonathan D. Linton
Leadership style and quality climate perceptions: contrasting project vs. process environments.
92-110
2006
33
IJTM
1
https://doi.org/10.1504/IJTM.2006.008193
db/journals/ijtm/ijtm33.html#BersonL06
Marian Garcia Martinez
Valentina Lazzarotti
Raffaella Manzini
Mercedes Sánchez García
Open innovation strategies in the food and drink industry: determinants and impact on innovation performance.
212-242
2014
66
IJTM
2/3
https://doi.org/10.1504/IJTM.2014.064588
db/journals/ijtm/ijtm66.html#MartinezLMG14
Ron Sanchez
Modularity in the mediation of market and technology change.
331-364
2008
42
IJTM
4
https://doi.org/10.1504/IJTM.2008.019380
db/journals/ijtm/ijtm42.html#Sanchez08
José F. B. Gieskes
Paul Hyland
Learning barriers in continuous product innovation.
857-870
2003
26
IJTM
8
https://doi.org/10.1504/IJTM.2003.003394
db/journals/ijtm/ijtm26.html#GieskesH03
Celso L. Tacla
Paulo N. Figueiredo
The dynamics of technological learning inside the latecomer firm: evidence from the capital goods industry in Brazil.
62-90
2006
36
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2006.009962
db/journals/ijtm/ijtm36.html#TaclaF06
José Albors-Garrigos
Jose Hervas-Oliver
CI practice in Spain: its role as a strategic tool for the firm. Empirical evidence from the CINet survey analysis.
332-347
2007
37
IJTM
3/4
https://doi.org/10.1504/IJTM.2007.012267
db/journals/ijtm/ijtm37.html#Albors-GarrigosH07
Ole Didrik Laerum
Kim Gunnar Helsvig
Reidun Sirevag
The Norwegian Academy of Science and Letters: current revival of a time-honoured institution.
27-37
2009
46
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.022673
db/journals/ijtm/ijtm46.html#LaerumHS09
Carla C. J. M. Millar
Chong Ju Choi
P. Hartley Millar
Google and global market search: information signals and knowledge indices.
96-106
2008
43
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2008.019409
db/journals/ijtm/ijtm43.html#MillarCM08
Rigas Arvanitis
Wei Zhao
Haixiong Qiu
Jian-niu Xu
Technological learning in six firms in Southern China: success and limits of an industrialisation model.
108-125
2006
36
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2006.009964
db/journals/ijtm/ijtm36.html#ArvanitisZQX06
Jorge Katz
Market-oriented reforms, globalisation and the recent transformation of the production and social structure of developing countries.
21-24
2006
36
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2006.009958
db/journals/ijtm/ijtm36.html#Katz06
Michael T. Clegg
John P. Boright
Adapting to the future: the role of science academies in capacity building.
108-119
2009
46
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.022679
db/journals/ijtm/ijtm46.html#CleggB09
Eduardo Bueno
Patricia Ordóñez de Pablos
Maria Paz Salmador Sanchez
Towards an integrative model of business, knowledge and organisational learning processes.
562-574
2004
27
IJTM
6/7
https://doi.org/10.1504/IJTM.2004.004902
db/journals/ijtm/ijtm27.html#BuenoPS04
Audley Genus
Maria Kaplani
Managing operations with people and technology.
189-200
2002
23
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2002.003005
db/journals/ijtm/ijtm23.html#GenusK02
George Tesar
Hamid Moini
Jerome K. Laurent
Expectations before privatisation and market realities after privatisation: technology transfer.
556-564
2001
21
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002934
db/journals/ijtm/ijtm21.html#TesarML01
Philip Cooke
Economic globalisation and its future challenges for regional development.
401-420
2003
26
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2003.003389
db/journals/ijtm/ijtm26.html#Cooke03a
Tie Wang
Robin Pollard
Selecting a technical strategy for high-tech enterprises in developing countries - a case study.
648-655
2002
24
IJTM
5/6
https://doi.org/10.1504/IJTM.2002.003076
db/journals/ijtm/ijtm24.html#WangP02
Rick Middel
Olaf A. M. Fisscher
Aard Groen
Managing and organising collaborative improvement: a system integrator perspective.
221-236
2007
37
IJTM
3/4
https://doi.org/10.1504/IJTM.2007.012259
db/journals/ijtm/ijtm37.html#MiddelFG07
Farok J. Contractor
James A. Woodley
The influence of asymmetric bargaining power, mutual hostages and task characteristics on the governance structure of cross-border technology alliances.
403-422
2009
48
IJTM
3
https://doi.org/10.1504/IJTM.2009.024955
db/journals/ijtm/ijtm48.html#ContractorW09
Fabienne Autier
Thierry Picq
Is the resource-based "view" a useful perspective for SHRM research? The case of the video game industry.
204-221
2005
31
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.006631
db/journals/ijtm/ijtm31.html#AutierP05
Gianluca Spina
Roberto Verganti
Giulio Zotteri
A model of co-design relationships: definitions and contingencies.
304-321
2002
23
IJTM
4
https://doi.org/10.1504/IJTM.2002.003012
db/journals/ijtm/ijtm23.html#SpinaVZ02
Mario Ferrer
Ricardo Santa
Maree Storer
Paul Hyland
Competences and capabilities for innovation in supply chain relationships.
272-289
2011
56
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2011.042987
db/journals/ijtm/ijtm56.html#FerrerSSH11
B. Bowonder
Nrupesh Mastakar
Strategic business leadership through innovation and globalisation: a case study of Ranbaxy Limited.
176-198
2005
32
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006823
db/journals/ijtm/ijtm32.html#BowonderM05
Jian Wang
Zheng Liang
Lan Xue
Multinational R&D in China: differentiation and integration of global R&D networks.
96-124
2014
65
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2014.060959
db/journals/ijtm/ijtm65.html#WangLX14
Antonella Martini
Bjørge Timenes Laugen
Luca Gastaldi
Mariano Corso
Continuous innovation: towards a paradoxical, ambidextrous combination of exploration and exploitation.
1-22
2013
61
IJTM
1
https://doi.org/10.1504/IJTM.2013.050246
db/journals/ijtm/ijtm61.html#MartiniLGC13
Tetsuya Okuyama
Konomu Matsui
Management of technology through Vision-Driven R&D.
623-630
2003
25
IJTM
6/7
https://doi.org/10.1504/IJTM.2003.003127
db/journals/ijtm/ijtm25.html#OkuyamaM03
Jing Cai
Alison U. Smart
Xuefeng Liu
Innovation exploitation, exploration and supplier relationship management.
134-155
2014
66
IJTM
2/3
https://doi.org/10.1504/IJTM.2014.064589
db/journals/ijtm/ijtm66.html#CaiSL14
Pieter J. D. Drenth
The role of an academy of sciences and humanities.
97-107
2009
46
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.022678
db/journals/ijtm/ijtm46.html#Drenth09
Umberto Del Canuto
Innovation management in Finmeccanica: experiencing a technology matrix.
431-447
2002
23
IJTM
5
https://doi.org/10.1504/IJTM.2002.003019
db/journals/ijtm/ijtm23.html#Canuto02
Peter Gammeltoft
Bersant Hobdari
Emerging market multinationals, international knowledge flows and innovation.
1-22
2017
74
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2017.083619
db/journals/ijtm/ijtm74.html#GammeltoftH17
Gunther Tichy
The decision Delphi as a tool of technology policy - the Austrian experience.
756-766
2001
21
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002948
db/journals/ijtm/ijtm21.html#Tichy01
Elizabeth Garnsey
Christian Longhi
High technology locations and globalisation: converse paths, common processes.
336-355
2004
28
IJTM
3/4/5/6
https://doi.org/10.1504/IJTM.2004.005292
db/journals/ijtm/ijtm28.html#GarnseyL04
Hiroyuki Nagano
Shuichi Ishida
Kiminori Gemba
Exploratory research on the mechanism of latecomer advantages in the Asian LCD industry.
208-233
2017
75
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2017.10006147
db/journals/ijtm/ijtm75.html#NaganoIG17
Massimo Riccaboni
Fabio Pammolli
Technological regimes and the evolution of networks of innovators. Lessons from biotechnology and pharmaceuticals.
334-349
2003
25
IJTM
3/4
https://doi.org/10.1504/IJTM.2003.003104
db/journals/ijtm/ijtm25.html#RiccaboniP03
Hang Wu
Jin Chen
Yang Liu
The impact of OFDI on firm innovation in an emerging country.
167-184
2017
74
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2017.10004284
db/journals/ijtm/ijtm74.html#WuCL17
King Lun Choy
W. B. Lee
Victor Lo
An intelligent supplier relationship management system for selecting and benchmarking suppliers.
717-742
2003
26
IJTM
7
https://doi.org/10.1504/IJTM.2003.003453
db/journals/ijtm/ijtm26.html#ChoyLL03
Ji-zhong Zhou
Chao-ying Tang
Wei Xiong
Interactive relationship between KIBS and knowledge environment.
288-301
2005
32
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.007335
db/journals/ijtm/ijtm32.html#ZhouTX05
Caroline Mothe
Thuc Uyen Nguyen-Thi
Non-technological and technological innovations: do services differ from manufacturing? An empirical analysis of Luxembourg firms.
227-244
2012
57
IJTM
4
https://doi.org/10.1504/IJTM.2012.045544
db/journals/ijtm/ijtm57.html#MotheN12
Fiona Lettice
Menka Parekh
The social innovation process: themes, challenges and implications for practice.
139-158
2010
51
IJTM
1
https://doi.org/10.1504/IJTM.2010.033133
db/journals/ijtm/ijtm51.html#LetticeP10
Frances Jørgensen
Karen Becker
Judy Matthews
The HRM practices of innovative knowledge-intensive firms.
123-137
2011
56
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2011.042978
db/journals/ijtm/ijtm56.html#JorgensenBM11
Wanda D'hanis
Business ethics: myth or reality, tool or essence?
576-582
2000
19
IJTM
6
https://doi.org/10.1504/IJTM.2000.002834
db/journals/ijtm/ijtm19.html#Dhanis00
Anna Minà
Giovanni Battista Dagnino
In search of coopetition consensus: shaping the collective identity of a relevant strategic management community.
123-154
2016
71
IJTM
1/2
https://doi.org/10.1504/IJTM.2016.077981
db/journals/ijtm/ijtm71.html#MinaD16
Denis G. Arnold
Laura H. D. Williams
The paradox at the base of the pyramid: environmental sustainability and market-based poverty alleviation.
44-59
2012
60
IJTM
1/2
https://doi.org/10.1504/IJTM.2012.049105
db/journals/ijtm/ijtm60.html#ArnoldW12
Sandy Thomas
European collaboration in biotechnology: the molecular analysis of genomes.
81-95
2003
25
IJTM
1/2
https://doi.org/10.1504/IJTM.2003.003091
db/journals/ijtm/ijtm25.html#Thomas03
Kevin P. Grant
Cory R. A. Hallam
Team performance in a lean manufacturing operation: it takes the will and a way to succeed.
177-192
2016
70
IJTM
2/3
https://doi.org/10.1504/IJTM.2016.075161
db/journals/ijtm/ijtm70.html#GrantH16
Simon Richir
Bernard Taravel
Henry Samier
Information networks and technological innovation for industrial products.
420-427
2001
21
IJTM
3/4
https://doi.org/10.1504/IJTM.2001.002922
db/journals/ijtm/ijtm21.html#RichirTS01
Lou Y. Liang
Grouping decomposition under constraints for design/build life cycle in project delivery system.
168-187
2009
48
IJTM
2
https://doi.org/10.1504/IJTM.2009.024914
db/journals/ijtm/ijtm48.html#Liang09
John van den Elst
Ronald Tol
Ruud Smits
Innovation in practice: Philips Applied Technologies.
217-231
2006
34
IJTM
3/4
https://doi.org/10.1504/IJTM.2006.009456
db/journals/ijtm/ijtm34.html#ElstTS06
Nanda K. Viswanathan
James B. Pick
Comparison of e-commerce in India and Mexico: an example of technology diffusion in developing nations.
2-19
2005
31
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006619
db/journals/ijtm/ijtm31.html#ViswanathanP05
Rainer Alt
Dimitrios Gizanis
Christine Legner
Collaborative order management: toward standard solutions for interorganisational order management.
78-97
2005
31
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006624
db/journals/ijtm/ijtm31.html#AltGL05
Alexander Gerybadze
Sebastian Merk
Globalisation of R&D and host-country patenting of multinational corporations in emerging countries.
148-179
2014
64
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2014.059949
db/journals/ijtm/ijtm64.html#GerybadzeM14
Ignacio Tamayo-Torres
Leopoldo J. Gutierrez Gutierrez
Carmen Haro-Domínguez
Innovation and operative real options as ways to affect organisational learning.
421-438
2010
49
IJTM
4
https://doi.org/10.1504/IJTM.2010.030167
db/journals/ijtm/ijtm49.html#Tamayo-TorresGH10
Peng Xiaobao
Song Wei
Duan Yuzhen
Framework of open innovation in SMEs in an emerging economy: firm characteristics, network openness, and network information.
223-250
2013
62
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2013.055142
db/journals/ijtm/ijtm62.html#XiaobaoWY13
Serghei Floricel
Deborah Dougherty
Roger Miller
Mihai Ibanescu
Network structures and the reproduction of resources for sustainable innovation.
379-406
2008
41
IJTM
3/4
https://doi.org/10.1504/IJTM.2008.016789
db/journals/ijtm/ijtm41.html#FloricelDMI08
Sang-Chul Park
The city of brain in South Korea: Daedeok Science Town.
602-614
2004
28
IJTM
3/4/5/6
https://doi.org/10.1504/IJTM.2004.005311
db/journals/ijtm/ijtm28.html#Park04
G. D. Sandhya
N. Mrinalini
Changing buyer-supplier relationships: reflections of dynamism and innovation in the automotive industry in India.
155-171
2002
23
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2002.003003
db/journals/ijtm/ijtm23.html#SandhyaM02
Michael J. Bender
Slobodan P. Simonovic
A systems approach for collaborative decision support in water resources planning.
546-556
2000
19
IJTM
3/4/5
https://doi.org/10.1504/IJTM.2000.002813
db/journals/ijtm/ijtm19.html#BenderS00
Karoline Bader
Ellen Enkel
Understanding a firm's choice for openness: strategy as determinant.
156-182
2014
66
IJTM
2/3
https://doi.org/10.1504/IJTM.2014.064590
db/journals/ijtm/ijtm66.html#BaderE14
Ludovic-Alexandre Vidal
Franck Marle
Jean-Claude Bocquet
Building up a project complexity framework using an international Delphi study.
251-283
2013
62
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2013.055158
db/journals/ijtm/ijtm62.html#VidalMB13
Tarek M. Khalil
Hazem A. Ezzat
Management of technology and responsive policies in a new economy.
88-111
2005
32
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006820
db/journals/ijtm/ijtm32.html#KhalilE05
Kalpana J. Chaturvedi
Y. S. Rajan
New product development: challenges of globalisation.
788-805
2000
19
IJTM
7/8
https://doi.org/10.1504/IJTM.2000.002842
db/journals/ijtm/ijtm19.html#ChaturvediR00
Chen-Lung Yang
Chwen Sheu
Achieving supply chain environment management: an exploratory study.
131-156
2007
40
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2007.013531
db/journals/ijtm/ijtm40.html#YangS07
Caroline Hussler
Julien Pénin
Proactive versus reactive motivations for patenting and their impact on patent production at universities.
213-235
2012
58
IJTM
3/4
https://doi.org/10.1504/IJTM.2012.046616
db/journals/ijtm/ijtm58.html#HusslerP12
Fu-Chiang Hsu
Amy J. C. Trappey
Charles V. Trappey
Jiang-Liang Hou
Shang-Jyh Liu
Technology and knowledge document cluster analysis for enterprise R&D strategic planning.
336-353
2006
36
IJTM
4
https://doi.org/10.1504/IJTM.2006.010271
db/journals/ijtm/ijtm36.html#HsuTTHL06
Mary Ellen Mogee
Foreign patenting behaviour of small and large firms.
149-164
2000
19
IJTM
1/2
https://doi.org/10.1504/IJTM.2000.002807
db/journals/ijtm/ijtm19.html#Mogee00
Christian Longhi
Michel Rainelli
Poles of competitiveness, a French dangerous obsession?
66-92
2010
49
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2010.029411
db/journals/ijtm/ijtm49.html#LonghiR10
Christian Serarols-Tarrés
Antonio Padilla-Meléndez
Ana Rosa del Aguila Obra
The influence of entrepreneur characteristics on the success of pure dot.com firms.
373-388
2006
33
IJTM
4
https://doi.org/10.1504/IJTM.2006.009250
db/journals/ijtm/ijtm33.html#Serarols-TarresPO06
Oliver Ehret
Philip Cooke
Conceptualising aerospace outsourcing: Airbus UK and the lean supply approach.
300-317
2010
50
IJTM
3/4
https://doi.org/10.1504/IJTM.2010.032678
db/journals/ijtm/ijtm50.html#EhretC10
Giovanni Bruno
Luigi Orsenigo
Variables influencing industrial funding of academic research in Italy: an empirical analysis.
277-302
2003
26
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2003.003363
db/journals/ijtm/ijtm26.html#BrunoO03
Sam Kurokawa
Karol I. Pelc
Kenzo Fujisue
Strategic management of technology in Japanese firms: literature review.
223-247
2005
30
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.006708
db/journals/ijtm/ijtm30.html#KurokawaPF05
Catherine P. Killen
Robert Hunt
Bradley Ayres
Christopher Janssen
Strategic alliances for world competitiveness.
569-582
2002
24
IJTM
5/6
https://doi.org/10.1504/IJTM.2002.003071
db/journals/ijtm/ijtm24.html#KillenHAJ02
Yuan Zhou 0001
Tim Minshall
Building global products and competing in innovation: the role of Chinese university spin-outs and required innovation capabilities.
180-209
2014
64
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2014.059929
db/journals/ijtm/ijtm64.html#ZhouM14
Ulrich Blum
Falk Kalus
Auctioning public financial support incentives.
270-276
2003
26
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2003.003361
db/journals/ijtm/ijtm26.html#BlumK03
Lars Frode Frederiksen
Sven Hemlin
Kenneth Husted
The role of knowledge management in R&D: a survey of Danish R&D leaders' perceptions and beliefs.
820-839
2004
28
IJTM
7/8
https://doi.org/10.1504/IJTM.2004.005785
db/journals/ijtm/ijtm28.html#FrederiksenHH04
John Bessant
David Knowles
Greg Briffa
David Francis
Developing the agile enterprise.
484-497
2002
24
IJTM
5/6
https://doi.org/10.1504/IJTM.2002.003066
db/journals/ijtm/ijtm24.html#BessantKBF02
Gary S. Lynn
Ali E. Akgün
A new product development learning model: antecedents and consequences of declarative and procedural knowledge.
490-510
2000
20
IJTM
5/6/7/8
https://doi.org/10.1504/IJTM.2000.002889
db/journals/ijtm/ijtm20.html#LynnA00
Bi-Fen Hsu
Wei-Li Wu
Ryh-Song Yeh
Team personality composition, affective ties and knowledge sharing: a team-level analysis.
331-351
2011
53
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2011.038597
db/journals/ijtm/ijtm53.html#HsuWY11
Joan Henderson
Rodney McAdam
Steven Parkinson
An innovative approach to evaluating organisational change.
11-31
2005
30
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006343
db/journals/ijtm/ijtm30.html#HendersonMP05
Mauro Caputo
Francesco Zirpoli
Supplier involvement in automotive component design: outsourcing strategies and supply chain management.
129-159
2002
23
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2002.003002
db/journals/ijtm/ijtm23.html#CaputoZ02
Hagen Habicht
Stefan R. Thallmaier
Understanding the customer value of co-designing individualised products.
114-131
2017
73
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2017.10003243
db/journals/ijtm/ijtm73.html#HabichtT17
Stine Jessen Haakonsson
Julia Kirch Kirkegaard
Configuration of technology networks in the wind turbine industry. A comparative study of technology management models in European and Chinese lead firms.
281-299
2016
70
IJTM
4
https://doi.org/10.1504/IJTM.2016.075892
db/journals/ijtm/ijtm70.html#HaakonssonK16
Sherif Kamel
Building the African information society.
62-81
2009
45
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.021520
db/journals/ijtm/ijtm45.html#Kamel09
Ulrike Rehn
Pier A. Abetti
Transition of R&D and product development procedures after mergers and acquisitions: a case study of Intermagnetics General and Philips Healthcare.
109-131
2013
61
IJTM
2
https://doi.org/10.1504/IJTM.2013.052167
db/journals/ijtm/ijtm61.html#RehnA13
Kuo-Hsiung Chang
Donald F. Gotcher
Relationship learning and dyadic knowledge creation in international subcontracting relationships: the supplier's perspective.
55-74
2008
41
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.015984
db/journals/ijtm/ijtm41.html#ChangG08
Ayuth Jirachaipravit
David Probert
Technology management and broadband internet regulation: the case of Thailand.
157-175
2007
40
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2007.013532
db/journals/ijtm/ijtm40.html#JirachaipravitP07
Kalle Elfvengren
Samuli Kortelainen
Markku Tuominen
A GSS process to generate new product ideas and business concepts.
337-348
2009
45
IJTM
3/4
https://doi.org/10.1504/IJTM.2009.022657
db/journals/ijtm/ijtm45.html#ElfvengrenKT09
Hannu Kärkkäinen
Jukka Hallikas
Decision making in inter-organisational relationships: implications from systems thinking.
144-159
2006
33
IJTM
2/3
https://doi.org/10.1504/IJTM.2006.008308
db/journals/ijtm/ijtm33.html#KarkkainenH06
Ming-Hsien Yang
Wen-Shiu Lin
Shang-Chia Liu
Hung-Yi Chao
Shi-Hwang Chen
Developing the partner relationship management system for franchised electronic stores.
176-193
2008
43
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2008.019414
db/journals/ijtm/ijtm43.html#YangLLCC08
Kudakwashe Dube
Bing Wu
A generic approach to computer-based Clinical Practice Guideline management using the ECA Rule paradigm and active databases.
75-95
2009
47
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2009.024115
db/journals/ijtm/ijtm47.html#DubeW09
Kristian Kreiner
Kristina Lee
Competence and community: post-acquisition learning processes in high-tech companies.
657-669
2000
20
IJTM
5/6/7/8
https://doi.org/10.1504/IJTM.2000.002886
db/journals/ijtm/ijtm20.html#KreinerL00
Xiangyang Wang
Yanqiu Lu
Yingxin Zhao
Shunlong Gong
Bai Li
Organisational unlearning, organisational flexibility and innovation capability: an empirical study of SMEs in China.
132-155
2013
61
IJTM
2
https://doi.org/10.1504/IJTM.2013.052178
db/journals/ijtm/ijtm61.html#WangLZGL13
Elena Moline
Jose Luis de la Fuente
Innovation management: experience from the perspective of the electric power industry.
481-488
2002
23
IJTM
5
https://doi.org/10.1504/IJTM.2002.003022
db/journals/ijtm/ijtm23.html#MolineF02
Tzu-Hsin Liu
Yee-Yeen Chu
Shih-Chang Hung
Shien-Yang Wu
Technology entrepreneurial styles: a comparison of UMC and TSMC.
92-115
2005
29
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006006
db/journals/ijtm/ijtm29.html#LiuCHW05
Pei-Shun Ho
Amy J. C. Trappey
Charles V. Trappey
Data interchange services: use of XML hub approach for the aerospace supply chain.
227-242
2004
28
IJTM
2
https://doi.org/10.1504/IJTM.2004.005063
db/journals/ijtm/ijtm28.html#HoTT04
Ichiro Sakata
Kenzo Fujisue
Hirokazu Okumura
Do R&D and IT tax credits work? Evaluation of the Japanese tax reform.
277-287
2005
32
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.007334
db/journals/ijtm/ijtm32.html#SakataFO05
Steffen Jørgensen
Peter M. Kort
Autonomous and induced learning: an optimal control approach.
655-674
2002
23
IJTM
7/8
https://doi.org/10.1504/IJTM.2002.003032
db/journals/ijtm/ijtm23.html#JorgensenK02
Antonio J. Verdú-Jover
Francisco Javier Lloréns Montes
Víctor Jesús García-Morales
Flexibility, fit and innovative capacity: an empirical examination.
131-146
2005
30
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006348
db/journals/ijtm/ijtm30.html#Verdu-JoverMG05
Terry Sloan
Paul Hyland
Ron Beckett
Learning as a competitive advantage: innovative training in the Australian aerospace industry.
341-352
2002
23
IJTM
4
https://doi.org/10.1504/IJTM.2002.003014
db/journals/ijtm/ijtm23.html#SloanHB02
Catherine L. Wang
Pervaiz K. Ahmed
Leveraging knowledge in the innovation and learning process at GKN.
674-688
2004
27
IJTM
6/7
https://doi.org/10.1504/IJTM.2004.004909
db/journals/ijtm/ijtm27.html#WangA04
John Baldwin
David Sabourin
Innovative activity in Canadian food processing establishments: the importance of engineering practices.
511-527
2000
20
IJTM
5/6/7/8
https://doi.org/10.1504/IJTM.2000.002877
db/journals/ijtm/ijtm20.html#BaldwinS00
Ghita Dragsdahl Lauritzen
Søren Salomo
Anders la Cour
Dynamic boundaries of user communities: exploiting synergies rather than managing dilemmas.
148-168
2013
63
IJTM
3/4
https://doi.org/10.1504/IJTM.2013.056896
db/journals/ijtm/ijtm63.html#LauritzenSC13
Bin Ran
Using traffic prediction models for providing predictive traveller information.
326-339
2000
20
IJTM
3/4
https://doi.org/10.1504/IJTM.2000.002870
db/journals/ijtm/ijtm20.html#Ran00
S. Prasanth
Management of technology in an SME: a case study of Hind High Vacuum Co. Pvt. Ltd.
73-87
2005
32
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006819
db/journals/ijtm/ijtm32.html#Prasanth05
Søren Salomo
Fee Steinhoff
Volker Trommsdorff
Customer orientation in innovation projects and new product development success - the moderating effect of product innovativeness.
442-463
2003
26
IJTM
5/6
https://doi.org/10.1504/IJTM.2003.003417
db/journals/ijtm/ijtm26.html#SalomoST03
Asli Akbulut-Bailey
Jaideep Motwani
Everett M. Smedley
When Lean and Six Sigma converge: a case study of a successful implementation of Lean Six Sigma at an aerospace company.
18-32
2012
57
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2012.043949
db/journals/ijtm/ijtm57.html#Akbulut-BaileyMS12
Ping Gao
R&D knowledge management in a telecommunications consortium: an actor-network perspective.
387-401
2006
36
IJTM
4
https://doi.org/10.1504/IJTM.2006.010274
db/journals/ijtm/ijtm36.html#Gao06
Timothy M. Quey
Naresh K. Malhotra
Technology transformation and purposed play: model development and implications for high tech product development.
62-87
2004
28
IJTM
1
https://doi.org/10.1504/IJTM.2004.005053
db/journals/ijtm/ijtm28.html#QueyM04
Kazuyuki Motohashi
The changing autarky pharmaceutical R&D process: causes and consequences of growing R&D collaboration in Japanese firms.
33-48
2007
39
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.013439
db/journals/ijtm/ijtm39.html#Motohashi07
Bor-Wen Cheng
Wen-Hong Chiu
Maw-Liann Shyu
Chih-Ming Luo
Implementation Methodology of Evidence-Based Medicine based on technological diffusion approach: a case of system establishment within the hospital industry.
37-56
2009
47
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2009.024113
db/journals/ijtm/ijtm47.html#ChengCSL09
Alfred Shiu-ho Wong
Dean Tjosvold
Zhang Pengzhu
Commitment and conflict management for relational marketing in China.
88-105
2002
24
IJTM
1
https://doi.org/10.1504/IJTM.2002.003046
db/journals/ijtm/ijtm24.html#WongTP02
Philip Mendes
Shantha Liyanage
Managing sponsored research rewards to industry and universities.
206-218
2002
24
IJTM
2/3
https://doi.org/10.1504/IJTM.2002.003052
db/journals/ijtm/ijtm24.html#MendesL02
Jan de Leede
Jan C. Looise
Ben C. M. Alders
Innovation, improvement and operations: an exploration of the management of alignment.
353-368
2002
23
IJTM
4
https://doi.org/10.1504/IJTM.2002.003015
db/journals/ijtm/ijtm23.html#LeedeLA02
Philippe Lefebvre
Organising deliberate innovation in knowledge clusters: from accidental brokering to purposeful brokering processes.
212-243
2013
63
IJTM
3/4
https://doi.org/10.1504/IJTM.2013.056899
db/journals/ijtm/ijtm63.html#Lefebvre13
Hong Kim
Michael D. Ames
Business incubators as economic development tools: rethinking models based on the Korea experience.
1-24
2006
33
IJTM
1
https://doi.org/10.1504/IJTM.2006.008189
db/journals/ijtm/ijtm33.html#KimA06
Junmo Kim
Will technology fusion induce the paradigm change of university education?
220-234
2007
38
IJTM
3
https://doi.org/10.1504/IJTM.2007.012711
db/journals/ijtm/ijtm38.html#Kim07
Jacobo Ramirez
Neo-contingency analysis of recruitment and selection: an Anglo-French study of high-tech and mid-tech vs. low-tech firms.
288-316
2005
31
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.006636
db/journals/ijtm/ijtm31.html#Ramirez05
Shuji Kondou
Striving for Kakushin (continuous innovation) for the 21st century.
517-530
2003
25
IJTM
6/7
https://doi.org/10.1504/IJTM.2003.003117
db/journals/ijtm/ijtm25.html#Kondou03
Laure Morel
Claudine Guidat
Innovation in engineering education: a French sample of design and continuous updating of an engineering school to industrial needs.
57-72
2005
32
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006818
db/journals/ijtm/ijtm32.html#MorelG05
William H. A. Johnson
David A. Johnston
Organisational knowledge creating processes and the performance of university-industry collaborative R&D projects.
93-114
2004
27
IJTM
1
https://doi.org/10.1504/IJTM.2004.003883
db/journals/ijtm/ijtm27.html#JohnsonJ04
B. Bowonder
T. Miyake
Technology strategy of Toshiba Corporation: a knowledge evolution perspective.
864-895
2000
19
IJTM
7/8
https://doi.org/10.1504/IJTM.2000.002849
db/journals/ijtm/ijtm19.html#BowonderM00a
Jon Sigurdson
Alfred Li-Ping Cheng
New technological links between national innovation systems and corporations.
417-434
2001
22
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002971
db/journals/ijtm/ijtm22.html#SigurdsonC01
Chun-Yao Tseng
Technology development and knowledge spillover in Africa: evidence using patent and citation data.
50-61
2009
45
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.021519
db/journals/ijtm/ijtm45.html#Tseng09
Sebastian Spaeth
Matthias Stuermer
Georg von Krogh
Enabling knowledge creation through outsiders: towards a push model of open innovation.
411-431
2010
52
IJTM
3/4
https://doi.org/10.1504/IJTM.2010.035983
db/journals/ijtm/ijtm52.html#SpaethSK10
Liang-Hung Lin
Mergers and acquisitions, alliances and technology development: an empirical study of the global auto industry.
295-307
2009
48
IJTM
3
https://doi.org/10.1504/IJTM.2009.024950
db/journals/ijtm/ijtm48.html#Lin09
Kazuhiko Itaya
Kiyoshi Niwa
Trial implementation of a highly autonomous small-team-type R&D management model in a Japanese electronics company.
273-288
2011
53
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2011.038594
db/journals/ijtm/ijtm53.html#ItayaN11
Cristina Martinez-Fernandez
Kim Leevers
Knowledge transfer and industry innovation: the discovery of nanotechnology by South-West Sydney organisations.
560-581
2004
28
IJTM
3/4/5/6
https://doi.org/10.1504/IJTM.2004.005309
db/journals/ijtm/ijtm28.html#Martinez-FernandezL04
Mingjie Rui
Jie Yang
Joe Hutchinson
Jinjun Wang
Managing knowledge for new product performance in the high technology industry.
96-108
2008
41
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.015986
db/journals/ijtm/ijtm41.html#RuiYHW08
Paula E. Stephan
David Audretsch
Richard Hawkins
The knowledge production function: lessons from biotechnology.
165-178
2000
19
IJTM
1/2
https://doi.org/10.1504/IJTM.2000.002810
db/journals/ijtm/ijtm19.html#StephanAH00
Ashish Hosalkar
B. Bowonder
Software development management: critical success factors.
760-772
2000
19
IJTM
7/8
https://doi.org/10.1504/IJTM.2000.002844
db/journals/ijtm/ijtm19.html#HosalkarB00
Harrie F. J. M. van Tuijl
Ton. H. van de Kraats
Value people, the missing link in creating high performance organisations.
559-570
2000
19
IJTM
6
https://doi.org/10.1504/IJTM.2000.002840
db/journals/ijtm/ijtm19.html#TuijlK00
Seung-Rok Park
A review of total factor productivity studies in Korea and a discussion of limits to national and corporate technology strategies.
524-538
2001
22
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002976
db/journals/ijtm/ijtm22.html#Park01
Cengiz Kahraman
An application of fuzzy linear regression to the information technology in Turkey.
330-339
2002
24
IJTM
2/3
https://doi.org/10.1504/IJTM.2002.003059
db/journals/ijtm/ijtm24.html#Kahraman02
Ronny Baierl
Sergey Anokhin
Dietmar Grichnik
Coopetition in corporate venture capital: the relationship between network attributes, corporate innovativeness, and financial performance.
58-80
2016
71
IJTM
1/2
https://doi.org/10.1504/IJTM.2016.077978
db/journals/ijtm/ijtm71.html#BaierlAG16
John J. Liu
Stuart C. K. So
King Lun Choy
Henry C. W. Lau
S. K. Kwok
Performance improvement of third-party logistics providers - an integrated approach with a logistics information system.
226-249
2008
42
IJTM
3
https://doi.org/10.1504/IJTM.2008.018105
db/journals/ijtm/ijtm42.html#LiuSCLK08
Marie-Claude Belis-Bergouignan
Yannick Lung
Jean-Alain Heraud
Public foresight exercises at an intermediate level: the French national programmes and the experience of Bordeaux.
726-738
2001
21
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002946
db/journals/ijtm/ijtm21.html#Belis-BergouignanLH01
Denis Cormier
Michel Magnan
The impact of the web on information and communication modes: the case of corporate environmental disclosure.
393-416
2004
27
IJTM
4
https://doi.org/10.1504/IJTM.2004.004278
db/journals/ijtm/ijtm27.html#CormierM04
Jie Yang
Fujun Lai
Liming Yu
Harnessing value in knowledge acquisition and dissemination: strategic sourcing in product development.
299-317
2006
33
IJTM
2/3
https://doi.org/10.1504/IJTM.2006.008317
db/journals/ijtm/ijtm33.html#YangLY06
John Hagedoorn
Nadine Roijakkers
Hans Van Kranenburg
The formation of subsequent inter-firm R&D partnerships between large pharmaceutical companies and small, entrepreneurial biotechnology firms - how important is inter-organisational trust?
81-92
2008
44
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.020699
db/journals/ijtm/ijtm44.html#HagedoornRK08
Xudong Gao
Jiang Yu
Mingfang Li
Developing effective strategies to address complex challenges: evidence from local high-tech firms in China.
319-341
2010
51
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2010.033808
db/journals/ijtm/ijtm51.html#GaoYL10
Thomas Biedenbach
Agneta Marell
Vladimir Vanyushyn
Industry-university collaboration and absorptive capacity: an empirical study in a Swedish context.
81-103
2018
76
IJTM
1/2
https://doi.org/10.1504/IJTM.2018.10009599
db/journals/ijtm/ijtm76.html#BiedenbachMV18
Edwin Mansfield
Intellectual property protection, direct investment and technology transfer: Germany, Japan and the USA.
3-21
2000
19
IJTM
1/2
https://doi.org/10.1504/IJTM.2000.002805
db/journals/ijtm/ijtm19.html#Mansfield00
Elena Revilla
Juan Acosta
Joseph Sarkis
An empirical assessment of a learning and Knowledge Management typology for Research Joint Ventures.
329-348
2006
35
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2006.009241
db/journals/ijtm/ijtm35.html#RevillaAS06
Jiju Antony
Six Sigma: a strategy for supporting innovation in pursuit of business excellence - invited paper.
8-12
2007
37
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.011800
db/journals/ijtm/ijtm37.html#Antony07
Hong Kim
Yun-Jae Lee
Michael D. Ames
Promoting business incubation for improved competitiveness of small and medium industries in Korea.
350-370
2005
32
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.007338
db/journals/ijtm/ijtm32.html#KimLA05
Gino Cattani
Leveraging in-house R&D competencies for a new market: how Corning pioneered fibre optics.
28-52
2008
44
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.020697
db/journals/ijtm/ijtm44.html#Cattani08
Denis Loveridge
Foresight - seven paradoxes.
781-791
2001
21
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002950
db/journals/ijtm/ijtm21.html#Loveridge01
Ricardo Santa
Phil Bretherton
Mario Ferrer
Claudine Soosay
Paul Hyland
The role of cross-functional teams on the alignment between technology innovation effectiveness and operational effectiveness.
122-137
2011
55
IJTM
1/2
https://doi.org/10.1504/IJTM.2011.041683
db/journals/ijtm/ijtm55.html#SantaBFSH11
Amrik S. Sohal
From privatisation to commercialisation: a case study from the Australian aerospace industry.
513-522
2001
21
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002930
db/journals/ijtm/ijtm21.html#Sohal01
Naubahar Sharif
Hei-Hang Hayes Tang
New trends in innovation strategy at Chinese universities in Hong Kong and Shenzhen.
300-318
2014
65
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2014.060951
db/journals/ijtm/ijtm65.html#SharifT14
Christian Hicks
Tom McGovern
Product life cycle management in engineer-to-order industries.
153-167
2009
48
IJTM
2
https://doi.org/10.1504/IJTM.2009.024913
db/journals/ijtm/ijtm48.html#HicksM09
Chris Ivory
Neil Alderman
Who is the customer? Maintaining a customer orientation in long-term service-focused projects.
140-152
2009
48
IJTM
2
https://doi.org/10.1504/IJTM.2009.024912
db/journals/ijtm/ijtm48.html#IvoryA09
Chihiro Watanabe
Shanyu Lei
The role of techno-countervailing power in inducing the development and dissemination of new functionality - an analysis of Canon printers and Japan's personal computers.
205-233
2008
44
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.020705
db/journals/ijtm/ijtm44.html#WatanabeL08
Tony Kinder
Social innovation in services: technologically assisted new care models for people with dementia and their usability.
106-120
2010
51
IJTM
1
https://doi.org/10.1504/IJTM.2010.033131
db/journals/ijtm/ijtm51.html#Kinder10
Margi Levy
Philip Powell
Small firm transformation through IS.
123-141
2008
43
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2008.019411
db/journals/ijtm/ijtm43.html#LevyP08
Jeff Readman
John Bessant
What challenges lie ahead for improvement programmes in the UK? Lessons from the CINet Continuous Improvement Survey 2003.
290-305
2007
37
IJTM
3/4
https://doi.org/10.1504/IJTM.2007.012264
db/journals/ijtm/ijtm37.html#ReadmanB07
Pier A. Abetti
General Electric after Jack Welch: succession and success?
656-669
2001
22
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002983
db/journals/ijtm/ijtm22.html#Abetti01
Xueli Huang
Renyong Chi
Innovation in China's high-tech industries: barriers and their impact on innovation performance.
35-55
2013
62
IJTM
1
https://doi.org/10.1504/IJTM.2013.053044
db/journals/ijtm/ijtm62.html#HuangC13
Steffen Conn
Marko Torkkeli
Iain Bitran
Assessing the management of innovation with software tools: an application of innovationEnterprizer.
323-336
2009
45
IJTM
3/4
https://doi.org/10.1504/IJTM.2009.022656
db/journals/ijtm/ijtm45.html#ConnTB09
Kees Wim van den Herik
Gert-Jan de Vreede
Experiences with facilitating policy meetings with group support systems.
246-268
2000
19
IJTM
3/4/5
https://doi.org/10.1504/IJTM.2000.002819
db/journals/ijtm/ijtm19.html#HerikV00
Tae Kyung Sung
David V. Gibson
Knowledge and technology transfer grid: empirical assessment.
216-230
2005
29
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.005997
db/journals/ijtm/ijtm29.html#SungG05
Neil Jones
Developing and assessing radical technological changes: lessons from the PBX industry.
287-303
2002
23
IJTM
4
https://doi.org/10.1504/IJTM.2002.003011
db/journals/ijtm/ijtm23.html#Jones02
Tom Bramorski
Privatisation and technology transfer in Central and Eastern Europe.
637-652
2001
21
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002940
db/journals/ijtm/ijtm21.html#Bramorski01
Anders Drejer
Integrating product and technology development.
124-142
2002
24
IJTM
2/3
https://doi.org/10.1504/IJTM.2002.003048
db/journals/ijtm/ijtm24.html#Drejer02
Karen Becker
Unlearning as a driver of sustainable change and innovation: three Australian case studies.
89-106
2008
42
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.018062
db/journals/ijtm/ijtm42.html#Becker08
James C. Hayton
Shaker A. Zahra
Venture team human capital and absorptive capacity in high technology new ventures.
256-274
2005
31
IJTM
3/4
https://doi.org/10.1504/IJTM.2005.006634
db/journals/ijtm/ijtm31.html#HaytonZ05
Richard de Neufville
Dynamic strategic planning for technology policy.
225-245
2000
19
IJTM
3/4/5
https://doi.org/10.1504/IJTM.2000.002825
db/journals/ijtm/ijtm19.html#Neufville00
Susana Pérez López
José Manuel Montes Peón
Camilo José Vázquez Ordás
The organisational context of learning: an empirical analysis.
196-223
2006
35
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2006.009235
db/journals/ijtm/ijtm35.html#LopezPO06
Steve McGuire
Felicia Fai
Toshiya Ozaki
Path dependence as a political construct, the disruptive influence of technology and Japanese aerospace.
367-379
2010
50
IJTM
3/4
https://doi.org/10.1504/IJTM.2010.032682
db/journals/ijtm/ijtm50.html#McGuireFO10
Peter Bond
Knowledge and knowing as structure: a new perspective on the management of technology for the knowledge based economy.
528-544
2000
20
IJTM
5/6/7/8
https://doi.org/10.1504/IJTM.2000.002879
db/journals/ijtm/ijtm20.html#Bond00
Ulrich Lichtenthaler
Intellectual property and open innovation: an empirical analysis.
372-391
2010
52
IJTM
3/4
https://doi.org/10.1504/IJTM.2010.035981
db/journals/ijtm/ijtm52.html#Lichtenthaler10
D. M. Vislosky
Paul S. Fischbeck
A mental model approach applied to R&D decision-making.
453-471
2000
19
IJTM
3/4/5
https://doi.org/10.1504/IJTM.2000.002831
db/journals/ijtm/ijtm19.html#VisloskyF00
Jean-Michel Dalle
Matthijs den Besten
Catalina Martínez
Stéphane Maraut
Microwork platforms as enablers to new ecosystems and business models: the challenge of managing difficult tasks.
55-72
2017
75
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2017.10006152
db/journals/ijtm/ijtm75.html#DalleBMM17
Eleonora Pantano
Vincenzo Corvello
Tourists' acceptance of advanced technology-based innovations for promoting arts and culture.
3-16
2014
64
IJTM
1
https://doi.org/10.1504/IJTM.2014.059232
db/journals/ijtm/ijtm64.html#PantanoC14
Anand Nair
L. Allison Jones-Farmer
Paul Swamidass
Modelling the reciprocal and longitudinal effect of return on sales and R&D intensity during economic cycles.
2-24
2010
49
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2010.029408
db/journals/ijtm/ijtm49.html#NairJS10
Rodney Howes
Making governance mechanisms effective in a coordinated industry: the case of construction in the United Kingdom.
194-213
2000
20
IJTM
1/2
https://doi.org/10.1504/IJTM.2000.002856
db/journals/ijtm/ijtm20.html#Howes00
Roberto Biloslavo
Management of dualities as a critical dimension of a knowledge-era organisation.
4-17
2008
43
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2008.019403
db/journals/ijtm/ijtm43.html#Biloslavo08
Giuditta De Prato
Daniel Nepelski
A framework for assessing innovation collaboration partners and its application to BRICs.
102-127
2013
62
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2013.055164
db/journals/ijtm/ijtm62.html#PratoN13
Jun Jin
Yuandi Wang
Wim Vanhaverbeke
Patterns of R&D internationalisation in developing countries: China as a case.
276-302
2014
64
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2014.059947
db/journals/ijtm/ijtm64.html#JinWV14
Richard Lamming
David Hajee
Mike Horrill
Graham Kay
John Staniforth
Mike Tobyn
Ming Li
Stewart MacGregor
Linda Newnes
Lessons from co-development of a Single Vessel Processor: methodologies for managing innovation in customer-supplier networks.
21-39
2002
23
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2002.002996
db/journals/ijtm/ijtm23.html#LammingHHKSTLMN02
Zhuojun Bao
Computer-supported quality safeguards in the product development process.
329-339
2001
21
IJTM
3/4
https://doi.org/10.1504/IJTM.2001.002916
db/journals/ijtm/ijtm21.html#Bao01
Charles V. Trappey
Amy J. C. Trappey
Tzu-An Chiang
Jen-Yau Kuo
A strategic product portfolio management methodology considering R&D resource constraints for engineering-to-order industries.
258-276
2009
48
IJTM
2
https://doi.org/10.1504/IJTM.2009.024919
db/journals/ijtm/ijtm48.html#TrappeyTCK09
Tomoatsu Shibata
Managing parallel development towards technological transitions.
281-301
2012
60
IJTM
3/4
https://doi.org/10.1504/IJTM.2012.049427
db/journals/ijtm/ijtm60.html#Shibata12
Charles Gregory
Amrik S. Sohal
Global product development in the ceramic tiles industry.
17-26
2002
24
IJTM
1
https://doi.org/10.1504/IJTM.2002.003041
db/journals/ijtm/ijtm24.html#GregoryS02
Subhash Wadhwa
K. Srinivasa Rao
Flexibility: an emerging meta-competence for managing high technology.
820-845
2000
19
IJTM
7/8
https://doi.org/10.1504/IJTM.2000.002851
db/journals/ijtm/ijtm19.html#WadhwaR00
Quey-Jen Yeh
Arthur Jung-Ting Chang
Technology-push and need-pull roles in information system security diffusion.
321-343
2011
54
IJTM
2/3
https://doi.org/10.1504/IJTM.2011.039318
db/journals/ijtm/ijtm54.html#YehC11
Luis Suarez-Villa
High technology clustering in the polycentric metropolis: a view from the Los Angeles metropolitan region.
818-842
2002
24
IJTM
7/8
https://doi.org/10.1504/IJTM.2002.003084
db/journals/ijtm/ijtm24.html#Suarez-Villa02
Carmen Perez Cano
Pilar Quevedo Cano
Human resources management and its impact on innovation performance in companies.
11-28
2006
35
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2006.009227
db/journals/ijtm/ijtm35.html#CanoC06
Sarah Caffyn
Andrew Grantham
Fostering Continuous Improvement within new product development processes.
843-856
2003
26
IJTM
8
https://doi.org/10.1504/IJTM.2003.003393
db/journals/ijtm/ijtm26.html#CaffynG03
Kaisa Still
Jukka Huhtamäki
Martha G. Russell
Neil Rubens
Insights for orchestrating innovation ecosystems: the case of EIT ICT Labs and data-driven network visualisations.
243-265
2014
66
IJTM
2/3
https://doi.org/10.1504/IJTM.2014.064606
db/journals/ijtm/ijtm66.html#StillHRR14
Jan Feller
Annaleena Parhankangas
Riitta Smeds
Inter-partner relationship, knowledge transfer mechanisms, and improved capability to manage R&D alliances: evidence from the telecommunications industry.
346-370
2009
47
IJTM
4
https://doi.org/10.1504/IJTM.2009.024434
db/journals/ijtm/ijtm47.html#FellerPS09
Roel W. Schuring
Clementine Harbers
Martine Kruiswijk
Sander Rijnders
Harry Boer
The problem of using hierarchy for implementing organisational innovation.
903-917
2003
26
IJTM
8
https://doi.org/10.1504/IJTM.2003.003416
db/journals/ijtm/ijtm26.html#SchuringHKRB03
Anne-Marie Coles
Lisa Harris
Keith Dickson
Testing goodwill: conflict and cooperation in new product development networks.
51-64
2003
25
IJTM
1/2
https://doi.org/10.1504/IJTM.2003.003089
db/journals/ijtm/ijtm25.html#ColesHD03
Teresa L. Ju
Patricia H. Ju
Szu-Yuan Sun
A strategic examination of Radio Frequency Identification in Supply Chain Management.
349-362
2008
43
IJTM
4
https://doi.org/10.1504/IJTM.2008.020555
db/journals/ijtm/ijtm43.html#JuJS08
Tai-Yih Yang
Lee-Ing Tong
Benjamin J. C. Yuan
An innovative model of multi-project wafer service in the foundry industry.
172-187
2005
30
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006349
db/journals/ijtm/ijtm30.html#YangTY05
Bianca Poti
Appropriation, tacit knowledge and hybrid social regimes in biotechnology in Europe.
741-761
2001
22
IJTM
7/8
https://doi.org/10.1504/IJTM.2001.002989
db/journals/ijtm/ijtm22.html#Poti01
Julia Jonas
Angela Roth
Stakeholder integration in service innovation - an exploratory case study in the healthcare industry.
91-113
2017
73
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2017.10003242
db/journals/ijtm/ijtm73.html#JonasR17
Junzheng Ding
Jaideep Motwani
Transfer of technology: a critical element in China's privatisation process.
453-462
2001
21
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002925
db/journals/ijtm/ijtm21.html#DingM01
Lars Bengtsson
Outsourcing manufacturing and its effect on engineering firm performance.
373-390
2008
44
IJTM
3/4
https://doi.org/10.1504/IJTM.2008.021045
db/journals/ijtm/ijtm44.html#Bengtsson08
Peter Galvin
John L. Rice
A case study of knowledge protection and diffusion for innovation: managing knowledge in the mobile telephone industry.
426-438
2008
42
IJTM
4
https://doi.org/10.1504/IJTM.2008.019384
db/journals/ijtm/ijtm42.html#GalvinR08
Haiyang Li
Kwaku Atuahene-Gima
The impact of interaction between R&D and marketing on new product performance: an empirical analysis of Chinese high technology firms.
61-75
2001
21
IJTM
1/2
https://doi.org/10.1504/IJTM.2001.002902
db/journals/ijtm/ijtm21.html#LiA01
Murthy D. Halemane
Boudewijn van Dongen
Strategic innovation management of change in the pharmaceutical industry.
314-333
2003
25
IJTM
3/4
https://doi.org/10.1504/IJTM.2003.003103
db/journals/ijtm/ijtm25.html#HalemaneD03
Allam Ahmed
Abdelrazig E. Mohamed
Adam E. Ahmed
Inconsistency of food security information in Sudan.
215-225
2009
45
IJTM
1/2
https://doi.org/10.1504/IJTM.2009.021529
db/journals/ijtm/ijtm45.html#AhmedMA09
Chung-Jen Chen
Wann-Yih Wu
A comparative study of the alliance experiences between US and Taiwanese firms.
136-151
2005
29
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006008
db/journals/ijtm/ijtm29.html#ChenW05
Pier A. Abetti
The globalisation of an Italian family company: Zobele Chemical Industries (1919-2006).
330-348
2007
40
IJTM
4
https://doi.org/10.1504/IJTM.2007.015756
db/journals/ijtm/ijtm40.html#Abetti07
Enno Weiss
Functional market concept for planning technological innovations.
320-330
2004
27
IJTM
2/3
https://doi.org/10.1504/IJTM.2004.003958
db/journals/ijtm/ijtm27.html#Weiss04
Daniela Carlucci
Bernard Marr
Giovanni Schiuma
The knowledge value chain: how intellectual capital impacts on business performance.
575-590
2004
27
IJTM
6/7
https://doi.org/10.1504/IJTM.2004.004903
db/journals/ijtm/ijtm27.html#CarlucciMS04
Norrin Halilem
Catherine Bertrand
Jean Samuel Cloutier
Réjean Landry
Nabil Amara
The knowledge value chain as an SME innovation policy instrument framework: an analytical exploration of SMEs public innovation support in OECD countries.
236-260
2012
58
IJTM
3/4
https://doi.org/10.1504/IJTM.2012.046617
db/journals/ijtm/ijtm58.html#HalilemBCLA12
Tim Mazzarol
Sophie Reboud
Thierry Volery
The influence of size, age and growth on innovation management in small firms.
98-117
2010
52
IJTM
1/2
https://doi.org/10.1504/IJTM.2010.035857
db/journals/ijtm/ijtm52.html#MazzarolRV10
Konstantin M. Golubev
Adaptive learning with e-knowledge systems.
553-559
2003
25
IJTM
6/7
https://doi.org/10.1504/IJTM.2003.003120
db/journals/ijtm/ijtm25.html#Golubev03
Alexandre O. Vera-Cruz
Firms' culture and technological behaviour: the case of two breweries in Mexico.
148-165
2006
36
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2006.009966
db/journals/ijtm/ijtm36.html#Vera-Cruz06
Ruth Cohn
Kathleen M. Carley
John R. Harrald
William A. Wallace
Emotions in crisis management: an analysis of the organisational response of two natural disasters.
313-335
2000
19
IJTM
3/4/5
https://doi.org/10.1504/IJTM.2000.002817
db/journals/ijtm/ijtm19.html#CohnCHW00
Eduardo Bueno Campos
Jose Miguel Rodriguez Anton
Ma Paz Salmador Sánchez
Knowledge creation as a dynamic capability: implications for innovation management and organisational design.
155-168
2008
41
IJTM
1/2
https://doi.org/10.1504/IJTM.2008.015989
db/journals/ijtm/ijtm41.html#CamposAS08
Paul Coughlan
Andy Harbison
Tony Dromgoole
Dermot Duff
Continuous improvement through collaborative action learning.
285-302
2001
22
IJTM
4
https://doi.org/10.1504/IJTM.2001.002965
db/journals/ijtm/ijtm22.html#CoughlanHDD01
Bianca Piachaud
Elisa Muresan
A study of shareholder reaction to technology motivated joint ventures and strategic alliances: strategic and financial perspectives.
343-356
2004
27
IJTM
4
https://doi.org/10.1504/IJTM.2004.004271
db/journals/ijtm/ijtm27.html#PiachaudM04
Richard C. M. Yam
William Lo
H. Y. Sun
Esther P. Y. Tang
Enhancement of global competitiveness for Hong Kong/China manufacturing industries through i-agile virtual enterprising.
88-102
2003
26
IJTM
1
https://doi.org/10.1504/IJTM.2003.003146
db/journals/ijtm/ijtm26.html#YamLST03
Shi-Ji Gao
Gang Xu
Learning, combinative capabilities and innovation in developing countries: the case of video compact disc (VCD) and agricultural vehicles in China.
568-582
2001
22
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002978
db/journals/ijtm/ijtm22.html#GaoX01
Kazuyoshi Ishii
Takaya Ichimura
A method of users' needs assessment.
579-587
2003
25
IJTM
6/7
https://doi.org/10.1504/IJTM.2003.003123
db/journals/ijtm/ijtm25.html#IshiiI03
Sarah Guillou
Christian Longhi
Defense financing of private R&D: evidences from French firms.
99-118
2010
50
IJTM
1
https://doi.org/10.1504/IJTM.2010.031920
db/journals/ijtm/ijtm50.html#GuillouL10
Alain Halley
Jean Nollet
Martin Beaulieu
Jacques Roy
Yvon Bigras
The impact of the supply chain on core competencies and knowledge management: directions for future research.
297-313
2010
49
IJTM
4
https://doi.org/10.1504/IJTM.2010.030160
db/journals/ijtm/ijtm49.html#HalleyNBRB10
Maria Teresa Borzacchiello
Max Craglia
The impact on innovation of open access to spatial environmental information: a research strategy.
114-129
2012
60
IJTM
1/2
https://doi.org/10.1504/IJTM.2012.049109
db/journals/ijtm/ijtm60.html#BorzacchielloC12
Ian McLoughlin
David Preece
'Last orders' at the rural 'cyber pub': a failure of 'social learning'?
75-91
2010
51
IJTM
1
https://doi.org/10.1504/IJTM.2010.033129
db/journals/ijtm/ijtm51.html#McLoughlinP10
Chao-Ton Su
Yung-Hsin Chen
David Yung-Jye Sha
Managing product and customer knowledge in innovative new product development.
105-130
2007
39
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.013443
db/journals/ijtm/ijtm39.html#SuCS07
Minna Forssen
Päivi Haho
Participative development and training for business processes in industry: review of 88 simulation games.
233-262
2001
22
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2001.002963
db/journals/ijtm/ijtm22.html#ForssenH01
Inge Ivarsson
Claes Goran Alvstam
Learning from foreign TNCs: a study of technology upgrading by local suppliers to AB Volvo in Asia and Latin America.
56-76
2009
48
IJTM
1
https://doi.org/10.1504/IJTM.2009.024600
db/journals/ijtm/ijtm48.html#IvarssonA09
Riitta Smeds
Päivi Haho
Jukka Alvesalo
Bottom-up or top-down? Evolutionary change management in NPD processes.
887-902
2003
26
IJTM
8
https://doi.org/10.1504/IJTM.2003.003415
db/journals/ijtm/ijtm26.html#SmedsHA03
Leslie S. Hiraoka
Foreign development of China's motor vehicle industry.
496-512
2001
21
IJTM
5/6
https://doi.org/10.1504/IJTM.2001.002929
db/journals/ijtm/ijtm21.html#Hiraoka01
Mary Ann Allison
Sheila Browning
Competing in the cauldron of the global economy: tools, processes, case studies, and theory supporting economic development.
130-143
2006
33
IJTM
2/3
https://doi.org/10.1504/IJTM.2006.008307
db/journals/ijtm/ijtm33.html#AllisonB06
Liang-Hung Lin
Iuan-Yuan Lu
Process management and technological innovation: an empirical study of the information and electronic industry in Taiwan.
178-192
2007
37
IJTM
1/2
https://doi.org/10.1504/IJTM.2007.011810
db/journals/ijtm/ijtm37.html#LinL07
Jose Hervas-Oliver
José Albors-Garrigos
Antonio Hidalgo
Global value chain reconfiguration through external linkages and the development of newcomers: a global story of clusters and innovation.
82-109
2011
55
IJTM
1/2
https://doi.org/10.1504/IJTM.2011.041681
db/journals/ijtm/ijtm55.html#Hervas-OliverAH11
Hamid Etemad
E-commerce: the emergence of a field and its knowledge network.
776-800
2004
28
IJTM
7/8
https://doi.org/10.1504/IJTM.2004.005783
db/journals/ijtm/ijtm28.html#Etemad04
B. Bowonder
Manoj. T. Thomas
Vamshi Mohan Rokkam
Artie Rokkam
The global pharmaceutical industry: changing competitive landscape.
201-226
2003
25
IJTM
3/4
https://doi.org/10.1504/IJTM.2003.003098
db/journals/ijtm/ijtm25.html#BowonderTRR03
Chi-Chang Chang
Chuen-Sheng Cheng
A Bayesian decision analysis with fuzzy interpretability for aging chronic disease.
176-191
2007
40
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2007.013533
db/journals/ijtm/ijtm40.html#ChangC07a
Georg Krücken
Mission impossible? Institutional barriers to the diffusion of the "third academic mission" at German universities.
18-33
2003
25
IJTM
1/2
https://doi.org/10.1504/IJTM.2003.003087
db/journals/ijtm/ijtm25.html#Krucken03
Marco Zeschky
Bastian Widenmayer
Oliver Gassmann
Organising for reverse innovation in Western MNCs: the role of frugal product innovation capabilities.
255-275
2014
64
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2014.059948
db/journals/ijtm/ijtm64.html#ZeschkyWG14
Jorge Niosi
Majlinda Zhegu
Anchor tenants and regional innovation systems: the aircraft industry.
263-284
2010
50
IJTM
3/4
https://doi.org/10.1504/IJTM.2010.032676
db/journals/ijtm/ijtm50.html#NiosiZ10
Qunhong Shen
Kaidong Feng
From production capacity to technological capability: an institutional and organisational perspective.
258-281
2010
51
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2010.033805
db/journals/ijtm/ijtm51.html#ShenF10
Victor Konde
Internet development in Zambia: a triple helix of government-university-partners.
440-451
2004
27
IJTM
5
https://doi.org/10.1504/IJTM.2004.004280
db/journals/ijtm/ijtm27.html#Konde04
Rudra P. Pradhan
Mak B. Arvin
Jay Mittal
Sahar Bahmani
Relationships between telecommunications infrastructure, capital formation, and economic growth.
157-176
2016
70
IJTM
2/3
https://doi.org/10.1504/IJTM.2016.075158
db/journals/ijtm/ijtm70.html#PradhanAMB16
Seung-Hoon Yoo
Seung-Jun Kwak
Information technology and economic development in Korea: a causality study.
57-67
2004
27
IJTM
1
https://doi.org/10.1504/IJTM.2004.003881
db/journals/ijtm/ijtm27.html#YooK04
Nekane Errasti
Noemi Zabaleta
Aitor Oyarbide
A review and conceptualisation of innovation models from the past three decades.
190-200
2011
55
IJTM
3/4
https://doi.org/10.1504/IJTM.2011.041946
db/journals/ijtm/ijtm55.html#ErrastiZO11
Frank Gertsen
How continuous improvement evolves as companies gain experience.
303-326
2001
22
IJTM
4
https://doi.org/10.1504/IJTM.2001.002966
db/journals/ijtm/ijtm22.html#Gertsen01
Ole Broberg
Workspace design: a case study applying participatory design principles of healthy workplaces in an industrial setting.
39-56
2010
51
IJTM
1
https://doi.org/10.1504/IJTM.2010.033127
db/journals/ijtm/ijtm51.html#Broberg10
Masao Ishihama
Training students on the TRIZ method using a patent database.
568-578
2003
25
IJTM
6/7
https://doi.org/10.1504/IJTM.2003.003122
db/journals/ijtm/ijtm25.html#Ishihama03
Tae Kyung Sung
Government IT strategy and technology transfer in Korea.
123-139
2010
49
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2010.029414
db/journals/ijtm/ijtm49.html#Sung10
Kuang-Hsun Shih
Ching-Wen Lin
Huang-Ta Huang
Wen-Chyuan Chiang
Market information feedback for the high-tech dominated IPO companies.
76-95
2008
43
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2008.019408
db/journals/ijtm/ijtm43.html#ShihLHC08
Lambert T. Koch
Kati Schmengler
Entrepreneurial success and low-budget internet exposure: the case of online-retailing.
438-451
2006
33
IJTM
4
https://doi.org/10.1504/IJTM.2006.009254
db/journals/ijtm/ijtm33.html#KochS06
Shiuh-Nan Hwang
An application of data envelopment analysis to measure the managerial performance of electronics industry in Taiwan.
215-228
2007
40
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2007.013535
db/journals/ijtm/ijtm40.html#Hwang07
Fernando Enrique Garcia Muina
Eva Pelechano-Barahona
José Emilio Navas-López
The effect of knowledge complexity on the strategic value of technological capabilities.
390-409
2011
54
IJTM
4
https://doi.org/10.1504/IJTM.2011.041581
db/journals/ijtm/ijtm54.html#MuinaPN11
AnnaLee Saxenian
Chuen-Yueh Li
Bay-to-bay strategic alliances: the network linkages between Taiwan and the US venture capital industries.
136-150
2003
25
IJTM
1/2
https://doi.org/10.1504/IJTM.2003.003094
db/journals/ijtm/ijtm25.html#SaxenianL03
Nieves L. Diaz-Diaz
Inmaculada Aguiar-Diaz
Petra De Saa-Perez
Technological knowledge assets and innovation.
29-51
2006
35
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2006.009228
db/journals/ijtm/ijtm35.html#Diaz-DiazAS06
Stefan Picker
Albrecht Ruhnke
Jens Leker
Developing knowledge management - what makes the success?
380-389
2009
45
IJTM
3/4
https://doi.org/10.1504/IJTM.2009.022660
db/journals/ijtm/ijtm45.html#PickerRL09
Yifei Sun
Foreign research and development in China: a sectoral approach.
342-363
2010
51
IJTM
2/3/4
https://doi.org/10.1504/IJTM.2010.033809
db/journals/ijtm/ijtm51.html#Sun10
Jutta Gruenberg-Bochard
Petra Kreis-Hoyer
Knowledge-networking capability in German SMEs: a model for empirical investigation.
364-379
2009
45
IJTM
3/4
https://doi.org/10.1504/IJTM.2009.022659
db/journals/ijtm/ijtm45.html#Gruenberg-BochardK09
Hyukjoon Kim
Yongtae Park
The effects of open innovation activity on performance of SMEs: the case of Korea.
236-256
2010
52
IJTM
3/4
https://doi.org/10.1504/IJTM.2010.035975
db/journals/ijtm/ijtm52.html#KimP10
Christine Bernadas
Jacques Verville
Disparity of the infusion of e-business within SMEs: a global perspective.
39-46
2005
31
IJTM
1/2
https://doi.org/10.1504/IJTM.2005.006621
db/journals/ijtm/ijtm31.html#BernadasV05
Tobias Kollmann
Christoph Stöckmann
Antecedents of strategic ambidexterity: effects of entrepreneurial orientation on exploratory and exploitative innovations in adolescent organisations.
153-174
2010
52
IJTM
1/2
https://doi.org/10.1504/IJTM.2010.035860
db/journals/ijtm/ijtm52.html#KollmannS10
Daniele Chauvel
Charles Despres
Organisational logic in the new age of business: the case example of knowledge management at Valtech.
611-627
2004
27
IJTM
6/7
https://doi.org/10.1504/IJTM.2004.004905
db/journals/ijtm/ijtm27.html#ChauvelD04
Manfred M. Fischer
Attila Varga
Technological innovation and interfirm cooperation: an exploratory analysis using survey data from manufacturing firms in the metropolitan region of Vienna.
724-742
2002
24
IJTM
7/8
https://doi.org/10.1504/IJTM.2002.003080
db/journals/ijtm/ijtm24.html#FischerV02
Stefan M. Koruna
External technology commercialisation - policy guidelines.
241-254
2004
27
IJTM
2/3
https://doi.org/10.1504/IJTM.2004.003954
db/journals/ijtm/ijtm27.html#Koruna04
Sangkyun Kim
Framework for e-mail records management in corporate environments.
341-349
2007
38
IJTM
4
https://doi.org/10.1504/IJTM.2007.013405
db/journals/ijtm/ijtm38.html#Kim07a
Zulima Fernandez
María Jesús Nieto
The internet: competitive strategy and boundaries of the firm.
182-195
2006
35
IJTM
1/2/3/4
https://doi.org/10.1504/IJTM.2006.009234
db/journals/ijtm/ijtm35.html#FernandezN06
Martin Bell
Time and technological learning in industrialising countries: how long does it take? How fast is it moving (if at all)?
25-39
2006
36
IJTM
1/2/3
https://doi.org/10.1504/IJTM.2006.009959
db/journals/ijtm/ijtm36.html#Bell06
Regis Cabral
The Cabral-Dahab Science Park Management Paradigm applied to the case of Kista, Sweden.
419-443
2004
28
IJTM
3/4/5/6
https://doi.org/10.1504/IJTM.2004.005297
db/journals/ijtm/ijtm28.html#Cabral04
Jeremy Howells
International coordination of technology flows and knowledge activity in innovation.
806-819
2000
19
IJTM
7/8
dblp.dtd
<!ATTLIST article
key CDATA #REQUIRED
mdate CDATA #IMPLIED
publtype CDATA #IMPLIED
reviewid CDATA #IMPLIED
rating CDATA #IMPLIED
cdate CDATA #IMPLIED
>
<!ATTLIST inproceedings key CDATA #REQUIRED
mdate CDATA #IMPLIED
publtype CDATA #IMPLIED
cdate CDATA #IMPLIED
>
<!ATTLIST proceedings key CDATA #REQUIRED
mdate CDATA #IMPLIED
publtype CDATA #IMPLIED
cdate CDATA #IMPLIED
>
<!ATTLIST book key CDATA #REQUIRED
mdate CDATA #IMPLIED
publtype CDATA #IMPLIED
cdate CDATA #IMPLIED
>
<!ATTLIST incollection key CDATA #REQUIRED
mdate CDATA #IMPLIED
publtype CDATA #IMPLIED
cdate CDATA #IMPLIED
>
<!ATTLIST phdthesis key CDATA #REQUIRED
mdate CDATA #IMPLIED
publtype CDATA #IMPLIED
cdate CDATA #IMPLIED
>
<!ATTLIST mastersthesis key CDATA #REQUIRED
mdate CDATA #IMPLIED
publtype CDATA #IMPLIED
cdate CDATA #IMPLIED
>
<!ATTLIST www key CDATA #REQUIRED
mdate CDATA #IMPLIED
publtype CDATA #IMPLIED
cdate CDATA #IMPLIED
>
<!ATTLIST data key CDATA #REQUIRED
mdate CDATA #IMPLIED
publtype CDATA #IMPLIED
cdate CDATA #IMPLIED
>
<!ATTLIST author
aux CDATA #IMPLIED
bibtex CDATA #IMPLIED
orcid CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST editor
aux CDATA #IMPLIED
orcid CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST address
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST title
bibtex CDATA #IMPLIED
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST booktitle
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST pages
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST year
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST journal
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST volume
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST number
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST month
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST url
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST ee
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST cite
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
ref CDATA #IMPLIED
>
<!ATTLIST school
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST publisher
href CDATA #IMPLIED
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST note
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST isbn
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST series
href CDATA #IMPLIED
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ATTLIST publnr
aux CDATA #IMPLIED
label CDATA #IMPLIED
type CDATA #IMPLIED
>