Skip to content

Commit

Permalink
Full
Browse files Browse the repository at this point in the history
  • Loading branch information
freddydk committed Mar 25, 2018
1 parent 5c1f402 commit cca0497
Show file tree
Hide file tree
Showing 3 changed files with 3,571 additions and 0 deletions.
38 changes: 38 additions & 0 deletions Full/COD50100.TXT
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
OBJECT Codeunit 50100 MyCodeunit
{
OBJECT-PROPERTIES
{
Date=03/05/18;
Time=10:05:42 PM;
Modified=Yes;
Version List=;
}
PROPERTIES
{
TableNo=18;
OnRun=BEGIN
MESSAGE(MyFunction(Rec."My Field",2));
END;

}
CODE
{

PROCEDURE MyFunction@50102(Str@50100 : Text;Cnt@50101 : Integer) : Text;
VAR
Res@1170000002 : Text;
BEGIN
Res := '';
WHILE(Cnt > 0) DO
BEGIN
Res := Res + Str;
Cnt := Cnt -1;
END;
EXIT(Res);
END;

BEGIN
END.
}
}

Loading

0 comments on commit cca0497

Please sign in to comment.