Announcements
Dear Experts,
I have customized the new page, name is 'Purchase Line Details'. Here I have calculated the the PO approval date. it is working fine. Now, I want to make a difference between indent date and PO approval date....my code is giving the below error. Please help me to short it.
OnAfterGetRecord()
CLEAR(dtApproval);
ApprovalEntry.RESET;
ApprovalEntry.SETRANGE(ApprovalEntry."Document No.","Document No.");
IF ApprovalEntry.FINDLAST THEN BEGIN
AppID:=ApprovalEntry."Approver ID";
dtApproval:=ApprovalEntry."Approval Date-Time";
END;
dtApprove:=DT2DATE(dtApproval); //(conversion date time to date field)
dateDifference:=(dtApprove)-("Requisition Date");
when i try to run my customized page...it is showing the below error...
i have already tried...but still getting the same error messages. please help me to resolve it.
Put an if condition like below
if dtApprove <> 0D then begin
dtApprove:=DT2DATE(dtApproval); //(conversion date time to date field)
dateDifference:=(dtApprove)-("Requisition Date");
end;
Yes, your are right. Most of the documents, dtApprove and 'Requisition Date' are blank in purchase line. what should i do sir. Please help me to resolve it.
Thanks in advance for any help you're able to give with this.
Please make sure you have the value in dtApproval and also in dtApprove before you calculate the difference.
André Arnaud de Cal... 291,359 Super User 2024 Season 2
Martin Dráb 230,370 Most Valuable Professional
nmaenpaa 101,156