Phranakorn Rajabhat University Library

Accounting Information Systems /

Romney, Marshall B.

Accounting Information Systems / Marshall B. Romney & Paul John Steinbart - 11th ed. - America : Pearson/Prentice Hall, 2009 - 831 p.: ill.; 28 cm.

Part I Conceptual foundations of accounting information systems page 23 -- Chapter 1: Accounting information systems: An overview page 24-47 --Chapter 2: Overview of business processes page 48-81 -- Chapter 3: Systems development and documentation techniques page 82-123 -- Chapter 4: Relational databases page 124-159 -- Part II Control and audit of accounting information systems page 160-161 -- Chapter 5: Computer fraud and abuse page 162-217 -- Chapter 6: Control and accounting information systems page 218-269 -- Chapter 7: Information systems controls for systems reliability-part 1: Information security page 270-313 -- Chapter 8. Information systems controls for systems reliability-Part 2: Confidentiality, privacy, processing integrity, and availability page 314-349 -- Chapter 9: Auditing computer-based information systems page 350-384 -- Part III Accounting information systems applications page 385-389 -- Chapter 10: The revenue cycle: Sales to cash collection page 390-437 -- Chapter 11. The expenditure cycle: Purchasing to cash disbursements page 438-481 -- Chapter 12: The production cycle page 482-517 -- Chapter 13: The human resources management and payroll cycle page 518-549 -- Chapter 14: General ledger and reporting system page 550-580 -- Part IV The REA data model part 581 -- Chapter 15: Database design using the REA data model page 582-615 -- Chapter 16: Implementing an REA model in a relational database page 616-641 -- Chapter 17: Special topics in REA modeling page 642-676 -- Part V The system development process page 677 -- Chapter 18: Introduction yo systems development and systems analysis page 678-725 -- Chapter 19: AIS development strategies page 726-765 -- Chapter 20: Systems design, implementation, and operation page 766-800

9780135009376


ACCOUNTING--DATA PROCESSING
INFORMATION STORAGE AND RETRIEVAL SYSTEMS--ACCOUNTING
ACCOUNTING

HF 5679 / R65A 2009

มหาวิทยาลัยศรีปทุม (กทม.)
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.

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