Welcome to your ultimate human resource management information


Microsoft Retail Management System and Crystal Reports

Microsoft Retail Management System (MS RMS),Tables  Structure
formerly known as QuickSell 2000, is an
integrated retail management softwareWhen a business entity is processed, the
designed to help small and medium-sizedinformation is written onto the RMS database
retailers to automate their businesstables. The tables structure is
processes. It runs on personal computers andself-explanatory. Entities include Customers,
can be used by practically any type of aTransactions,  Supplier  and  Tender.
retail environment: sporting goods, hobby
stores, convenience food stores, applianceLinks
stores, liquor stores, just to name a few. It
can also help manage a number of store andThe master table in Microsoft RMS usually
headquarters operations including inventorydisplays an ID Column and the Transaction
control, employee management, purchaselinked to it:
orders,  and  sales  tracking.Transaction.CustomerID=CustomerID. If you
were to create a query that will display
Microsoft RMS uses worksheet technology,customer information and sales transactions,
wherein updates from Headquarters aredo  the  following  statement:
deployed to the stores by generating a
worksheet with a specified command. TheSelect b.FirstName, b.LastName, a.* from
stores, on the other hand, upload data[Transaction] a join Customer b on
including sales transaction and receipta.CustomerID=b.ID
journals back to Headquarters. These
transactions are not generated fromUse this knowledge to create links for your
Headquarters. It is, therefore, not wise toreport  creation.
attempt data integration of such transactions
between the two entities (store andSQL  Views  and  Stored  Procedures
headquarters).
Since Microsoft SQL can be deployed in RMS,
Crystal Reports is a report-writing softwareyou have unlimited access to SQL Views and
that can integrate itself to Microsoft RMSexecute a number of Transact-SQL statements
database. It goes beyond the report creationinto  one  using  Stored  Procedures.
process of RMS' own Report Writer. As a
developer, Crystal Reports will help yourAdvanced  Techniques  and  Tips
client access decision-driving information to
aid in managing their businesses moreYou can create a link server in Microsoft SQL
effectively.Enterprise Manager to connect to all ODBC
OLEDB-compliant databases (Ctree,
The following are some guidelines in usingPervasiveSQL/ Btrieve, MS Access, Oracle,
Crystal  Reports  in  Microsoft  RMS:DB2, Unidata) and C/ODBC-compliant database
such  as  Navision.
Microsoft  SQL  Server  or  MSDE
You can also use the OPENROWSET keyword in MS
A native SQL driver can be deployed in RMS toSQL to create a pool of linked databases for
connect to the database targeted for reportyour  Crystal  Reports.
generation.
Need  more  information?
You can also use Open Database Connectivity
(ODBC) - an integration tool to connect aContact  us:
client application to an ODBC-compliant
database. Microsoft RMS uses the ODBC driversFor customization work and advice, please
installed by Microsoft SQL Server. Once itcontact Andrew Karasev, Alba Spectrum Chief
prompts you to connect to the appropriateTechnology Officer. His works include
data source, choose the company database thatdevelopment of applications with the use of
you are targeting that contains the dataDexterity, SQL, C# .NET, Crystal Reports and
needed  for  your  Crystal  Reports.Microsoft CRM SDK.



1 A B C D E 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118