Hi,
I have three stores for which the Pay in/out data is not coming up.
I have a store number as 495,714,780.
I can see the Pay in/out data in the RetailTransactionTable, RetailTransactionIncomeExpenseTrans.
When I run a query as - I get 20 rows for both the tables.
-- Returns 20 rows - OK
select *
from retailtransactiontable
where [type] = 18 -- income expense/payout type
and store in (495,714,780)
and transdate >= '20161001'
-- Returns 20 rows - OK
select *
from retailtransactionincomeexpensetrans
where store in (495,714,780)
and transdate >= '20161001'
Whereas RetailTransactionInfoCodeTrans table has no information / rows visible. This is happeneing only in this three stores:
-- Returns 0 results - MISSING
select *
from retailtransactioninfocodetrans
where store in (495,714,780)
and infocodeid = 'Pay In/Out'
No results.