Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help me Day end error

Status
Not open for further replies.

paopaozero

Technical User
Jun 16, 2008
19
TH
We keep recieving the following error message when doing day end processing.

Description: Internal error. Cannot read OESHCD (8281 OEPOSTI1.C). Write down the message, leave ACCPAC for Windows and Windows and return to the system prompt. Reset your computer and try the task again. See Appendix A in the OE User Guide.

Would anyone know what would be causing this error. We are using ACCPAC ERP 5.4 (all Modules) and is in SQL. Thank you.
 
From the other Accpac forum:

You are having missed records. Use the following query to find out the missing records as well to insert into the OESHCD table:

SELECT OESHCH.SHIUNIQ, OESHCH.SHINUMBER
FROM OESHCH
WHERE OESHCH.SHIUNIQ NOT IN (SELECT SHIUNIQ FROM OESHCD)


INSERT INTO OESHCD select ____ AS SHIUNIQ,DETAILNUM,AUDTDATE,AUDTTIME,
AUDTUSER,AUDTORG,SHINUMBER,QTYSHIPPED,PRICEUNIT,UNITCONV,
MOSTREC AS COST,MOSTREC AS ACTUALCOST from OEINVD where SHINUMBER ='____'

 
I user query followed below.


SELECT OESHCH.SHIUNIQ, OESHCH.SHINUMBER
FROM OESHCH
WHERE OESHCH.SHIUNIQ NOT IN (SELECT SHIUNIQ FROM OESHCD)


INSERT INTO OESHCD select 256129 AS SHIUNIQ,DETAILNUM,AUDTDATE,AUDTTIME,
AUDTUSER,AUDTORG,SHINUMBER,QTYSHIPPED,PRICEUNIT,UNITCONV,
MOSTREC AS COST,MOSTREC AS ACTUALCOST from OEINVD where SHINUMBER ='SO49/003753'

But qurey result : (0 row(s) affected).Help me please.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top