Phranakorn Rajabhat University Library

Innovation management and new product development /

Trott, Paul

Innovation management and new product development / Paul Trott - 6th ed. - Harlow, England : Pearson, 2017 - xxix, 635 p. : ill. ; 25 cm.

Part 1 Innovation management : Innovation management: an introduction pp. 1-47 -- National systems of innovation and entrepreneurship pp. 48-85 -- Market adoption and technology diffusion pp. 86-115 -- Managing innovation within firms pp. 116-153 -- Operations and process innovation pp. 154-187 -- Managing intellectual property pp. 188-224 Part 2 Turning technology into business : Managing organisational knowledge pp. 225-263 -- Strategic alliances and networks pp. 264-303 -- Management of research and development pp. 304-341 -- Managing R&D projects pp. 342-377 -- Open innovation and technology transfer pp. 378-408 Part 3 New product development : Business models pp. 409-445 -- Product and brand strategy pp. 446-479 -- New product development pp. 480-521 -- New service innovation pp. 522-551 -- Market research and its influence on new product development pp. 552-585 -- Managing the new product development process pp. 586-620

9781292133423 1145.00


TECHNOLOGICAL INNOVATIONS--MANAGEMENT
INDUSTRIAL MANAGEMENT
PRODUCT MANAGEMENT
NEW PRODUCTS--MANAGEMENT
HUMANITIES AND SOCIAL SCIENCES

HF 5415.153 / T76I 2017

มหาวิทยาลัยศรีปทุม (กทม.)
2410/2 ถ.พหลโยธิน เขตจตุจักร กรุงเทพฯ 10900
Tel : 02-579-1111, 02-561-2222
มหาวิทยาลัยศรีปทุม (ชลบุรี)
79 หมู่ 1 ถ.บางนา-ตราด ต.คลองตำหรุ อ.เมือง จ.ชลบุรี 20000
Tel : 038-146-123
มหาวิทยาลัยศรีปทุม (ขอนแก่น)
182/12 หมู่ 4 ถ.ศรีจันทร์ ต.ในเมือง อ.เมือง จ.ขอนแก่น 40000
Tel : 043-224-111


 

$(document).ready(function() { // Basic detection of search var searchBox = $('#transl1'); // This is standard OPAC search input id ?? // Actually standard is 'q' or 'idx'. // We want to trigger when the user sees results. // Usually we check if we are on search results page. if ($('body').hasClass('opac-results')) { var params = new URLSearchParams(window.location.search); var query = params.get('q'); if (query) { // Show Loading var container = $('
'); container.append('

✨ AI Recommendations

'); container.append('
Searching with AI...
'); // Prepend to main content // Selector depends on theme. 'div.maincontent' or '#opac-main' $('#userresults').prepend(container); $.ajax({ url: '/api/v1/contrib/aisearch/search?q=' + encodeURIComponent(query), method: 'GET', success: function(data) { container.find('.spinner').remove(); if (data && data.length > 0) { var ul = ''; container.append(ul); } else { container.append('

No AI recommendations found.

'); } }, error: function() { container.find('.spinner').remove(); container.append('

Error loading AI recommendations.

'); } }); } } });