23. September 2010 16:02
23. September 2010 16:11
23. September 2010 16:19
23. September 2010 16:34
"Comment Line".setrange("Table Name", "Comment Line"."Table Name"::Customer);
"Comment Line".setrange("No.","Sell-to Customer No.");
"Comment Line".setrange(Art, "Comment Line".Art::Auftragspopup);
If "Comment Line".Findset then
REPEAT
MessageString := MessageString + "Comment Line".Comment + '\';
UNTIL "Comment Line".NEXT = 0;
MESSAGE(MessageString);
24. September 2010 08:35
IF CommentLineLocal.COUNT >0 THEN BEGIN
messagelocal := CommentLineLocal.Comment;
IF CommentLineLocal.NEXT > 0 THEN REPEAT
messagelocal := messagelocal+'\'+CommentLineLocal.Comment;
UNTIL CommentLineLocal.NEXT = 0;
MESSAGE(messagelocal);
END;