when i make post in purchase order debugger as link
http://www.mediafire.com/?b9h7e1gwqbgxgzv
it give me this error
IF PurchaseLines.FIND('-') THEN BEGIN
REPEAT
(yellow cursor) IF PurchaseLines."Prepmt. Amt. Inv." <> PurchaseLines."Prepmt. Line Amount" THEN
EXIT(TRUE);
UNTIL PurchaseLines.NEXT = 0;
END;
and message told me "you dont have permission to read purchase line table"
how i solve this proplem
Comments
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
please help me
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
IF PurchaseLines.FIND('-') THEN BEGIN
REPEAT
IF PurchaseLines."Prepmt. Amt. Inv." <> PurchaseLines."Prepmt. Line Amount" THEN
EXIT(TRUE);
PurchaseLines.SETPERMISSIONFILTER;
UNTIL PurchaseLines.NEXT = 0;
END;
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
now i understand what you say i will test then i will told you about result.
thanks