Sure,
In Codeunit:
99000813 - Carry Out Action
Function:
InsertTransLine(ReqLine : Record "Requisition Line";VAR TransHeader : Record "Transfer Header")
Add the following right to the beginning of the function:
//EBS:NJF - Consolidate Documents per day
TransLineRec.SETRANGE("Shipment Date",ReqLine."Transfer Shipment Date");
TransLineRec.SETRANGE("Transfer-from Code",ReqLine."Transfer-from Code");
TransLineRec.SETRANGE("Transfer-to Code",ReqLine."Location Code");
IF TransLineRec.FINDSET(FALSE,FALSE) THEN
TransHeader.GET(TransLineRec."Document No.");
//EBS:NJF - Consolidate Documents per day
No warranty on the code but shout if you have any questions and i would be happy to help,
Cheers
Nev