Home Page link  

Off-line zreport simulation

 

Point-Of-Sale Software - - MS Point Of Sale software discussed here

 Post an article  get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content  add this group's latest topics to your Google content  YahooMyWeb Yahoo!  Google Google  Windows Live Favorites Windows Live  del.icio.us del.icio.us  digg digg  Add to Netscape Netscape
Subject Author Date
Off-line zreport simulation Danny 05-16-2007
Posted by Danny on May 16, 2007, 9:40 am
Please log in for more thread options
Hi Folks

Once in a while, we do trade shows and use the off-line mode. I would like
to have the ability to simulate z-report - in order to know how well I did
at the show. I would be interested in knowing what other people are doing...


Not sure which of the transaction tables to use... Transaction,
TransactionEntry , TransactionHold, TransactionHoldEntry


I did a few tsql report scripts - this is what I have so far -
- listing of stuff sold..
SELECT [Transaction].Time, [Transaction].TransactionNumber,
item.ItemLookUpCode,
TransactionEntry.Price, TransactionEntry.Quantity,
Item.Description
FROM TransactionEntry
INNER JOIN [Transaction] ON TransactionEntry.TransactionNumber =
[Transaction].TransactionNumber
INNER JOIN Customer ON [Transaction].CustomerID=Customer.ID
LEFT JOIN Item ON TransactionEntry.ItemID = Item.ID


list of total sales
SELECT [Transaction].TransactionNumber, [Transaction].Time,
[Transaction].Total, [Transaction].SalesTax, [Customer].FirstName
FROM [Transaction]
INNER JOIN Customer ON [Transaction].CustomerID=Customer.ID


This appears to work but not user friendly for some of my staff. Could I do
this with qsrules or VB?

I know that once reconnected a z-report can be done but sometimes we are at
a trade shows for three days...


Danny




Posted by Patrick on May 16, 2007, 1:53 pm
Please log in for more thread options

Can you do an X report in offline mode? That would be my solution if it is
possible.

Patrick

Posted by Todd Berger [MSFT] on May 21, 2007, 9:13 am
Please log in for more thread options
: 7bit

Good morning Danny,

Thank you for posting your offline question.

You are not able to run a Zreport or Xreport while in Offline mode.

If Graphs (Shift+F6) will not show you enough information about your sales
then you would need to run SQL scripts as you have documented.

You can download a table/column schema from the following site; but here is
a listing of what the transaction tables you listed are used for:
https://mbs.microsoft.com/downloads/customer/Microsoft_Dynamics_RMS_20_DB_Sc
hema.zip

Transaction - This table holds the transaction information.

TransactionEntry - This table shows the items that are in the transactions.

TransactionHold - This table shows a listing of transactions that are on
hold.

TransactionHoldEntry - This table shows the items that are in the
transactions that are on hold.


Please let me know if this answers your questions.

Todd Berger
Microsoft Online Support Engineer

Get Secure! - www.microsoft.com/security
=====================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.


--------------------
Subject: Off-line zreport simulation
Date: Wed, 16 May 2007 10:40:59 -0300

Hi Folks

Once in a while, we do trade shows and use the off-line mode. I would like
to have the ability to simulate z-report - in order to know how well I did
at the show. I would be interested in knowing what other people are doing...


Not sure which of the transaction tables to use... Transaction,
TransactionEntry , TransactionHold, TransactionHoldEntry


I did a few tsql report scripts - this is what I have so far -
- listing of stuff sold..
SELECT [Transaction].Time, [Transaction].TransactionNumber,
item.ItemLookUpCode,
TransactionEntry.Price, TransactionEntry.Quantity,
Item.Description
FROM TransactionEntry
INNER JOIN [Transaction] ON TransactionEntry.TransactionNumber =
[Transaction].TransactionNumber
INNER JOIN Customer ON [Transaction].CustomerID=Customer.ID
LEFT JOIN Item ON TransactionEntry.ItemID = Item.ID


list of total sales
SELECT [Transaction].TransactionNumber, [Transaction].Time,
[Transaction].Total, [Transaction].SalesTax, [Customer].FirstName
FROM [Transaction]
INNER JOIN Customer ON [Transaction].CustomerID=Customer.ID


This appears to work but not user friendly for some of my staff. Could I do
this with qsrules or VB?

I know that once reconnected a z-report can be done but sometimes we are at
a trade shows for three days...


Danny




------=_NextPart_0001_3AB6E136
Content-Type: text/x-rtf
Content-Transfer-Encoding: 7bit

{rtf1ansiansicpg1252deff0deflang1033{fonttbl{f0fnilfprq2fcharset0 MS
Sans Serif;}}
viewkind4uc1pardf0fs20 Good morning Danny,
par
par Thank you for posting your offline question.
par
par You are not able to run a Zreport or Xreport while in Offline mode.
par
par If Graphs (Shift+F6) will not show you enough information about your sales
then you would need to run SQL scripts as you have documented.
par
par You can download a table/column schema from the following site; but here is
a listing of what the transaction tables you listed are used for:
par
https://mbs.microsoft.com/downloads/customer/Microsoft_Dynamics_RMS_20_DB_Schema.zip
par
par Transaction - This table holds the transaction information.
par
par TransactionEntry - This table shows the items that are in the transactions.
par
par TransactionHold - This table shows a listing of transactions that are on
hold.
par
par TransactionHoldEntry - This table shows the items that are in the
transactions that are on hold.
par
par
par Please let me know if this answers your questions.
par
par Todd Berger
par Microsoft Online Support Engineer
par
par Get Secure! - www.microsoft.com/security
par =====================================================
par When responding to posts, please "Reply to Group" via your newsreader so
par that others may learn and benefit from your issue.
par =====================================================
par This posting is provided "AS IS" with no warranties, and confers no rights.
par
par
par pardli720 --------------------
par Subject: Off-line zreport simulation
par Date: Wed, 16 May 2007 10:40:59 -0300
par
par Hi Folks
par
par Once in a while, we do trade shows and use the off-line mode. I would like
par to have the ability to simulate z-report - in order to know how well I did
par at the show. I would be interested in knowing what other people are doing...
par
par
par Not sure which of the transaction tables to use... Transaction,
par TransactionEntry , TransactionHold, TransactionHoldEntry
par
par
par I did a few tsql report scripts - this is what I have so far -
par \ - listing of stuff sold..
par SELECT [Transaction].Time, [Transaction].TransactionNumber,
par item.ItemLookUpCode,
par TransactionEntry.Price, TransactionEntry.Quantity,
par Item.Description
par FROM TransactionEntry
par INNER JOIN [Transaction] ON TransactionEntry.TransactionNumber =
par [Transaction].TransactionNumber
par INNER JOIN Customer ON [Transaction].CustomerID=Customer.ID
par LEFT JOIN Item ON TransactionEntry.ItemID = Item.ID
par
par
par \ list of total sales
par SELECT [Transaction].TransactionNumber, [Transaction].Time,
par [Transaction].Total, [Transaction].SalesTax, [Customer].FirstName
par FROM [Transaction]
par INNER JOIN Customer ON [Transaction].CustomerID=Customer.ID
par
par
par This appears to work but not user friendly for some of my staff. Could I do
par this with qsrules or VB?
par
par I know that once reconnected a z-report can be done but sometimes we are at
par a trade shows for three days...
par
par
par Danny
par
par
par
par pard
par
par }
------=
Posted by Danny on May 21, 2007, 10:31 am
Please log in for more thread options
Todd

Thanks - didn't think of using Shift+F6 ( good idea).
Anyway to launch some sql queries from within RMS POS- via a HTML page or
maybe qsrules?

Danny
> Good morning Danny,
>
> Thank you for posting your offline question.
>
> You are not able to run a Zreport or Xreport while in Offline mode.
>
> If Graphs (Shift+F6) will not show you enough information about your sales
> then you would need to run SQL scripts as you have documented.
>
> You can download a table/column schema from the following site; but here
> is
> a listing of what the transaction tables you listed are used for:
> https://mbs.microsoft.com/downloads/customer/Microsoft_Dynamics_RMS_20_DB_Sc
> hema.zip
>
> Transaction - This table holds the transaction information.
>
> TransactionEntry - This table shows the items that are in the
> transactions.
>
> TransactionHold - This table shows a listing of transactions that are on
> hold.
>
> TransactionHoldEntry - This table shows the items that are in the
> transactions that are on hold.
>
>
> Please let me know if this answers your questions.
>
> Todd Berger
> Microsoft Online Support Engineer
>
> Get Secure! - www.microsoft.com/security
> =====================================================
> When responding to posts, please "Reply to Group" via your newsreader so
> that others may learn and benefit from your issue.
> =====================================================
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
>
>
> --------------------
> Subject: Off-line zreport simulation
> Date: Wed, 16 May 2007 10:40:59 -0300
>
> Hi Folks
>
> Once in a while, we do trade shows and use the off-line mode. I would like
> to have the ability to simulate z-report - in order to know how well I did
> at the show. I would be interested in knowing what other people are
> doing...
>
>
> Not sure which of the transaction tables to use... Transaction,
> TransactionEntry , TransactionHold, TransactionHoldEntry
>
>
> I did a few tsql report scripts - this is what I have so far -
> - listing of stuff sold..
> SELECT [Transaction].Time, [Transaction].TransactionNumber,
> item.ItemLookUpCode,
> TransactionEntry.Price, TransactionEntry.Quantity,
> Item.Description
> FROM TransactionEntry
> INNER JOIN [Transaction] ON TransactionEntry.TransactionNumber =
> [Transaction].TransactionNumber
> INNER JOIN Customer ON [Transaction].CustomerID=Customer.ID
> LEFT JOIN Item ON TransactionEntry.ItemID = Item.ID
>
>
> list of total sales
> SELECT [Transaction].TransactionNumber, [Transaction].Time,
> [Transaction].Total, [Transaction].SalesTax, [Customer].FirstName
> FROM [Transaction]
> INNER JOIN Customer ON [Transaction].CustomerID=Customer.ID
>
>
> This appears to work but not user friendly for some of my staff. Could I
> do
> this with qsrules or VB?
>
> I know that once reconnected a z-report can be done but sometimes we are
> at
> a trade shows for three days...
>
>
> Danny
>
>
>
>



Posted by Todd Berger [MSFT] on May 21, 2007, 1:38 pm
Please log in for more thread options
: 7bit

Good afternoon Danny,

Thank you for the follow up.

I am not aware of a way to run queries from within POS.

Todd Berger
Microsoft Online Support Engineer

Get Secure! - www.microsoft.com/security
=====================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.


--------------------
Subject: Re: Off-line zreport simulation
Date: Mon, 21 May 2007 11:31:31 -0300

Todd

Thanks - didn't think of using Shift+F6 ( good idea).
Anyway to launch some sql queries from within RMS POS- via a HTML page or
maybe qsrules?

Danny
> Good morning Danny,
>
> Thank you for posting your offline question.
>
> You are not able to run a Zreport or Xreport while in Offline mode.
>
> If Graphs (Shift+F6) will not show you enough information about your sales
> then you would need to run SQL scripts as you have documented.
>
> You can download a table/column schema from the following site; but here
> is
> a listing of what the transaction tables you listed are used for:
>
https://mbs.microsoft.com/downloads/customer/Microsoft_Dynamics_RMS_20_DB_Sc
> hema.zip
>
> Transaction - This table holds the transaction information.
>
> TransactionEntry - This table shows the items that are in the
> transactions.
>
> TransactionHold - This table shows a listing of transactions that are on
> hold.
>
> TransactionHoldEntry - This table shows the items that are in the
> transactions that are on hold.
>
>
> Please let me know if this answers your questions.
>
> Todd Berger
> Microsoft Online Support Engineer
>
> Get Secure! - www.microsoft.com/security
> =====================================================
> When responding to posts, please "Reply to Group" via your newsreader so
> that others may learn and benefit from your issue.
> =====================================================
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
>
>
> --------------------
> Subject: Off-line zreport simulation
> Date: Wed, 16 May 2007 10:40:59 -0300
>
> Hi Folks
>
> Once in a while, we do trade shows and use the off-line mode. I would like
> to have the ability to simulate z-report - in order to know how well I did
> at the show. I would be interested in knowing what other people are
> doing...
>
>
> Not sure which of the transaction tables to use... Transaction,
> TransactionEntry , TransactionHold, TransactionHoldEntry
>
>
> I did a few tsql report scripts - this is what I have so far -
> - listing of stuff sold..
> SELECT [Transaction].Time, [Transaction].TransactionNumber,
> item.ItemLookUpCode,
> TransactionEntry.Price, TransactionEntry.Quantity,
> Item.Description
> FROM TransactionEntry
> INNER JOIN [Transaction] ON TransactionEntry.TransactionNumber =
> [Transaction].TransactionNumber
> INNER JOIN Customer ON [Transaction].CustomerID=Customer.ID
> LEFT JOIN Item ON TransactionEntry.ItemID = Item.ID
>
>
> list of total sales
> SELECT [Transaction].TransactionNumber, [Transaction].Time,
> [Transaction].Total, [Transaction].SalesTax, [Customer].FirstName
> FROM [Transaction]
> INNER JOIN Customer ON [Transaction].CustomerID=Customer.ID
>
>
> This appears to work but not user friendly for some of my staff. Could I
> do
> this with qsrules or VB?
>
> I know that once reconnected a z-report can be done but sometimes we are
> at
> a trade shows for three days...
>
>
> Danny
>
>
>
>



------=_NextPart_0001_3BA8E36F
Content-Type: text/x-rtf
Content-Transfer-Encoding: 7bit

{rtf1ansiansicpg1252deff0deflang1033{fonttbl{f0fnilfprq2fcharset0 MS
Sans Serif;}}
viewkind4uc1pardf0fs20 Good afternoon Danny,
par
par Thank you for the follow up.
par
par I am not aware of a way to run queries from within POS.
par
par Todd Berger
par Microsoft Online Support Engineer
par
par Get Secure! - www.microsoft.com/security
par =====================================================
par When responding to posts, please "Reply to Group" via your newsreader so
par that others may learn and benefit from your issue.
par =====================================================
par This posting is provided "AS IS" with no warranties, and confers no rights.
par
par
par pardli720 --------------------
par Subject: Re: Off-line zreport simulation
par Date: Mon, 21 May 2007 11:31:31 -0300
par
par Todd
par
par Thanks - didn't think of using Shift+F6 ( good idea).
par Anyway to launch some sql queries from within RMS POS- via a HTML page or
par maybe qsrules?
par
par Danny
par > Good morning Danny,
par >
par > Thank you for posting your offline question.
par >
par > You are not able to run a Zreport or Xreport while in Offline mode.
par >
par > If Graphs (Shift+F6) will not show you enough information about your sales
par > then you would need to run SQL scripts as you have documented.
par >
par > You can download a table/column schema from the following site; but here
par > is
par > a listing of what the transaction tables you listed are used for:
par >
https://mbs.microsoft.com/downloads/customer/Microsoft_Dynamics_RMS_20_DB_Sc
par > hema.zip
par >
par > Transaction - This table holds the transaction information.
par >
par > TransactionEntry - This table shows the items that are in the
par > transactions.
par >
par > TransactionHold - This table shows a listing of transactions that are on
par > hold.
par >
par > TransactionHoldEntry - This table shows the items that are in the
par > transactions that are on hold.
par >
par >
par > Please let me know if this answers your questions.
par >
par > Todd Berger
par > Microsoft Online Support Engineer
par >
par > Get Secure! - www.microsoft.com/security
par > =====================================================
par > When responding to posts, please "Reply to Group" via your newsreader so
par > that others may learn and benefit from your issue.
par > =====================================================
par > This posting is provided "AS IS" with no warranties, and confers no
par > rights.
par >
par >
par > --------------------
par > Subject: Off-line zreport simulation
par > Date: Wed, 16 May 2007 10:40:59 -0300
par >
par > Hi Folks
par >
par > Once in a while, we do trade shows and use the off-line mode. I would like
par > to have the ability to simulate z-report - in order to know how well I did
par > at the show. I would be interested in knowing what other people are
par > doing...
par >
par >
par > Not sure which of the transaction tables to use... Transaction,
par > TransactionEntry , TransactionHold, TransactionHoldEntry
par >
par >
par > I did a few tsql report scripts - this is what I have so far -
par > \ - listing of stuff sold..
par > SELECT [Transaction].Time, [Transaction].TransactionNumber,
par > item.ItemLookUpCode,
par > TransactionEntry.Price, TransactionEntry.Quantity,
par > Item.Description
par > FROM TransactionEntry
par > INNER JOIN [Transaction] ON TransactionEntry.TransactionNumber =
par > [Transaction].TransactionNumber
par > INNER JOIN Customer ON [Transaction].CustomerID=Customer.ID
par > LEFT JOIN Item ON TransactionEntry.ItemID = Item.ID
par >
par >
par > \ list of total sales
par > SELECT [Transaction].TransactionNumber, [Transaction].Time,
par > [Transaction].Total, [Transaction].SalesTax, [Customer].FirstName
par > FROM [Transaction]
par > INNER JOIN Customer ON [Transaction].CustomerID=Customer.ID
par >
par >
par > This appears to work but not user friendly for some of my staff. Could I
par > do
par > this with qsrules or VB?
par >
par > I know that once reconnected a z-report can be done but sometimes we are
par > at
par > a trade shows for three days...
par >
par >
par > Danny
par >
par >
par >
par >
par
par
par pard
par
par }
------=
Similar ThreadsPosted
Transfer out offline inventory to other offline inventory store,Ho February 9, 2007, 10:39 am
Offline Batches not in SO database, still in SO Offline database March 16, 2007, 12:46 pm
OFFLINE November 20, 2007, 2:41 pm
Offline January 21, 2008, 10:27 am
creating offline db July 19, 2005, 8:19 pm
Offline Inventory December 28, 2005, 11:15 am
Offline Inventory April 11, 2006, 3:29 pm
Offline Inventory May 11, 2006, 1:50 pm
Offline Database June 7, 2006, 6:13 am
x and z read all at zero after going offline June 8, 2006, 10:43 am

Contact Us | Privacy Policy
This site is not affiliated with Intuit - makers of Quickbooks and Quicken software
This site is not affiliated with Sage Software - makers of Peachtree accounting software
XML SitemapXML Sitemap