...
PROCEDURE GetDocNoDocDateServTariffNo@1130023() : Text[27];
VAR
OutText@1130000 : Text[27];
BEGIN
// Delete the following line.
OutText += FormatAlphaNum("Intra - form Buffer"."Document No.",15);
// End of the deleted line.
OutText += FORMAT("Intra - form Buffer".Date,0,'<Day,2><Month,2><Year,2>');
OutText += FormatNum(GetNumericVal("Intra - form Buffer"."Service Tariff No."),6);
EXIT(OutText);
END;
...
...
PROCEDURE GetDocNoDocDateServTariffNo@1130023() : Text[27];
VAR
OutText@1130000 : Text[27];
BEGIN
// Add the following lines.
//OutText += FormatAlphaNum("Intra - form Buffer"."Document No.",15);
OutText += FormatAlphaNum("Intrastat Jnl. Line"."Corrected Document No.",15);
// End of the added lines.
OutText += FORMAT("Intra - form Buffer".Date,0,'<Day,2><Month,2><Year,2>');
OutText += FormatNum(GetNumericVal("Intra - form Buffer"."Service Tariff No."),6);
EXIT(OutText);
END;
...