I have added two fields in 81 table. while Posting I want transfer value into G/L entry table into custom field.
In which codeunit we can add these fields
Codeunit 12, function InitGLEntry() and siblings. If you're on NAV2013R2 or later, then you should do the change in Table 17, function CopyFromGenJnlLine(). This should be the only change then, too. Depends a little on the nature of the new fields.
Very nice, I did it in Table 17, function CopyFromGenJnlLine
with follwoing two lines
//kris
"Cheque No" := GenJnlLine."Cheque No";
"Cheque Date" := GenJnlLine."Cheque Date";
//===
Answers
Codeunit 12, function InitGLEntry() and siblings. If you're on NAV2013R2 or later, then you should do the change in Table 17, function CopyFromGenJnlLine(). This should be the only change then, too. Depends a little on the nature of the new fields.
with best regards
Jens
Very nice, I did it in Table 17, function CopyFromGenJnlLine
with follwoing two lines
//kris
"Cheque No" := GenJnlLine."Cheque No";
"Cheque Date" := GenJnlLine."Cheque Date";
//===
Warm regards
Kris