Regarding Item 3,
Below is the script that I used to fix this issue. We've had a support call open with Epicor for weeks, and had to fix this ourselves as Epicor support is still lost.
I hope you aren't still dealing with this, but I will post this here for future searchers.
Basically, several receipt detail lines had null received dates, or null arrived dates. This replaces the null date with the date from the header, and all seems to be well.
Adam
----BEGIN SQL SCRIPT----
SELECT DISTINCT VendorNum, PackSlip, ReceiptDate
INTO #tmpPackSlipDates
FROM RcvHead
UPDATE rd
SET rd.ReceiptDate = td.ReceiptDate,
rd.ArrivedDate = td.ReceiptDate
FROM RcvDtl rd
inner join #tmpPackSlipDates td
ON rd.VendorNum = td.VendorNum
AND rd.PackSlip = td.PackSlip
WHERE rd.ReceiptDate is null OR rd.ArrivedDate is null
----END SQL SCRIPT----
Below is the script that I used to fix this issue. We've had a support call open with Epicor for weeks, and had to fix this ourselves as Epicor support is still lost.
I hope you aren't still dealing with this, but I will post this here for future searchers.
Basically, several receipt detail lines had null received dates, or null arrived dates. This replaces the null date with the date from the header, and all seems to be well.
Adam
----BEGIN SQL SCRIPT----
SELECT DISTINCT VendorNum, PackSlip, ReceiptDate
INTO #tmpPackSlipDates
FROM RcvHead
UPDATE rd
SET rd.ReceiptDate = td.ReceiptDate,
rd.ArrivedDate = td.ReceiptDate
FROM RcvDtl rd
inner join #tmpPackSlipDates td
ON rd.VendorNum = td.VendorNum
AND rd.PackSlip = td.PackSlip
WHERE rd.ReceiptDate is null OR rd.ArrivedDate is null
----END SQL SCRIPT----
--- In vantage@yahoogroups.com, Paul Lipham <pml@...> wrote:
>
> We upgraded January 29th weekend from Vantage 6.1 to Epicor 904.507A and are having some major issues. I just wanted to see if anyone had any answers. Epicor support is working with us, but it's taking forever.
>
>
> 1.) All of our un-invoiced receipts that were in 6.1 and upgraded to E904 will not let us pull them into a AP invoice when adding a receipt line to the AP invoice. The PO looks good, the Receipt looks good and shows that the lines are not invoiced. But the AP side can't pull in the received lines. If I delete and re-enter a receipt then it seems to pull over fine.
>
> 2.) Our General Ledger opening balances are off. Not on all accounts, but lots of them. We have run the GL Verify balances as instructed by Epicor support, and it ran for 28 hours, but fixed little if anything.
>
> 3.) We have some strange things showing up in time phased inquiry. All related to a PO receipt and the exception is "inspection" however nothing is in inspection.
>
> Any help would be appreciated!!
>
>
> Paul Lipham
> Information Technology Manager
> Alabama Specialty Products, Inc.
> 152 Metal Samples Road
> Munford, AL 36268
>
>
>
>
> [Non-text portions of this message have been removed]
>