Installation information
Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure. However, they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements. Note Before you install this hotfix, verify that all Microsoft Navision client users are logged off the system. This includes Microsoft Navision Application Services (NAS) client users. You should be the only client user who is logged on when you implement this hotfix.To implement this hotfix, you must have a developer license.
We recommend that the user account in the Windows Logins window or in the Database Logins window be assigned the "SUPER" role ID. If the user account cannot be assigned the "SUPER" role ID, you must verify that the user account has the following permissions: - The Modify permission for the object that you will be changing.
- The Execute permission for the System Object ID 5210 object and for the System Object ID 9015 object.
Note You do not have to have rights to the data stores unless you have to perform data repair.
Code changes
Note Always test code fixes in a controlled environment before you apply the fixes to your production computers. To resolve this problem, change the code in the Customer Bills List report (12117) as follows:
Existing code 1
...
OnAfterGetRecord=BEGIN
CALCFIELDS("Amount (LCY)","Remaining Amt. (LCY)");
// Delete the following line.
IF ((OnlyOpened) OR ("Document Type" IN ["Document Type"::Payment,"Document Type"::"Credit Memo","Document Type"::" "])) AND
("Remaining Amt. (LCY)" = 0)
THEN
CurrReport.SKIP;
...
Replacement code 1
...
OnAfterGetRecord=BEGIN
CALCFIELDS("Amount (LCY)","Remaining Amt. (LCY)");
// Add the following line.
IF ((OnlyOpened) OR ("Document Type" IN ["Document Type"::Payment,"Document Type"::Refund,"Document Type"::" "])) AND
("Remaining Amt. (LCY)" = 0)
THEN
CurrReport.SKIP;
...
Existing code 2
...
RemainingAmountLCY := 0;
ExposureAmount := 0;
// Delete the following lines.
IF ("Document Type" = "Document Type"::Invoice) OR
("Document Type" = "Document Type"::"Finance Charge Memo") OR
("Document Type" = "Document Type"::Reminder)
THEN BEGIN
IF ("Bank Receipt Issued") AND
("Due Date" > ExposureDate)
...
Replacement code 2
...
RemainingAmountLCY := 0;
ExposureAmount := 0;
// Add the following lines.
IF "Document Type" IN
["Document Type"::Invoice,
"Document Type"::"Credit Memo",
"Document Type"::"Finance Charge Memo",
"Document Type"::Reminder]
// End of the lines.
THEN BEGIN
IF ("Bank Receipt Issued") AND
("Due Date" > ExposureDate)
...
Existing code 3
...
END;
OnAfterGetRecord=BEGIN
// IT0015.begin
//VSTF275923 begin
// VSTF305887.begin
...
Replacement code 3
...
OnAfterGetRecord=BEGIN
// Add the following lines.
IF ("Entry No." = 0) OR ("Unapplied by Entry No." <> 0) OR
("Document Type" IN
["Document Type"::Payment,"Document Type"::Refund,"Document Type"::Dishonored,"Document Type"::" "])
THEN
ShowDetailedCustLedgerEntry := TRUE
ELSE
ShowDetailedCustLedgerEntry := FALSE;
// End of the lines.
// IT0015.begin
//VSTF275923 begin
// VSTF305887.begin
...
Existing code 4
...
SectionWidth=24450;
SectionHeight=846;
OnPreSection=BEGIN
// Delete the following lines.
// IT0009.begin
// IT0012.begin
IF (CustLedgEntry1."Document Type" = CustLedgEntry1."Document Type"::Payment) OR
(CustLedgEntry1."Document Type" = CustLedgEntry1."Document Type"::"Credit Memo") OR
//VSTF275923 begin
(CustLedgEntry1."Document Type" = CustLedgEntry1."Document Type"::Dishonored) OR
//VSTF275923 end
(CustLedgEntry1."Document Type" = CustLedgEntry1."Document Type"::" ") OR
("Unapplied by Entry No." <> 0)
THEN
// IT0012.end
CurrReport.SHOWOUTPUT(FALSE)
ELSE
CurrReport.SHOWOUTPUT(TRUE);
// IT0009.end
// IT0010.begin
//IF ("Unapplied by Entry No." <> 0) THEN
// CurrReport.SHOWOUTPUT(FALSE);
// IT0010.end
// End of the lines.
END;
}
...
Replacement code 4
...
SectionWidth=24450;
SectionHeight=846;
OnPreSection=BEGIN
// Add the following line.
CurrReport.SHOWOUTPUT(ShowDetailedCustLedgerEntry)
END;
}
...
Existing code 5
...
ForeColor=65535;
SourceExpr="Document Type" = "Document Type"::Dishonored;
DataSetFieldName=Document_Type_____Document_Type___Dishonored }
}
}
{ PROPERTIES
...
Replacement code 5
...
ForeColor=65535;
SourceExpr="Document Type" = "Document Type"::Dishonored;
DataSetFieldName=Document_Type_____Document_Type___Dishonored }
// add the following lines.
{ 1130123;TextBox ;24000;0 ;150 ;423 ;Visible=No;
SourceExpr=ShowDetailedCustLedgerEntry;
DataSetFieldName=ShowDetailedCustLedgerEntry }
// End of the lines.
}
}
{ PROPERTIES
...
Existing code 6
...
NULL@1130013 : DateFormula;
CustLedgEntry3@1130130 : Record 21;
PrintCustLedgEntry2@1130014 : Boolean;
BEGIN
{
...
Replacement code 6
...
NULL@1130013 : DateFormula;
CustLedgEntry3@1130130 : Record 21;
PrintCustLedgEntry2@1130014 : Boolean;
// Add the following line.
ShowDetailedCustLedgerEntry@1130015 : Boolean INDATASET;
BEGIN
{
...
Existing code 7
...
</TableRows>
</Header>
<Visibility>
// Delete the following line.
<Hidden>=IIF(Fields!Detailed_Cust__Ledg__Entry_Cust__Ledger_Entry_No_.Value = 0,true,false)</Hidden>
</Visibility>
</TableGroup>
</TableGroups>
...
Replacement code 7
...
</TableRows>
</Header>
<Visibility>
// Add the following line.
<Hidden>=IIF(Fields!ShowDetailedCustLedgerEntry.Value,TRUE,FALSE)</Hidden>
</Visibility>
</TableGroup>
</TableGroups>
...
Existing code 8
...
<Field Name="Detailed_Cust__Ledg__Entry_Cust__Ledger_Entry_No_">
<DataField>Detailed_Cust__Ledg__Entry_Cust__Ledger_Entry_No_</DataField>
</Field>
</Fields>
<Query>
<CommandText />
...
Replacement code 8
...
<Field Name="Detailed_Cust__Ledg__Entry_Cust__Ledger_Entry_No_">
<DataField>Detailed_Cust__Ledg__Entry_Cust__Ledger_Entry_No_</DataField>
</Field>
// Add the following lines.
<Field Name="ShowDetailedCustLedgerEntry">
<DataField>ShowDetailedCustomerLedgerEntry</DataField>
</Field>
// end of the lines.
</Fields>
<Query>
<CommandText />
...
Prerequisites
You must have one of the following products installed to apply this hotfix:
- The Italian version of Microsoft Dynamics NAV 2009 R2
- The Italian version of Microsoft Dynamics NAV 2009 Service Pack 1
Removal information
You cannot remove this hotfix.