To implement this hotfix, you must have a developer license.
You do not have to have rights to the data stores unless you have to perform data repair.
...
IF InvtSetup.GET THEN
"Outbound Whse. Handling Time" := InvtSetup."Outbound Whse. Handling Time";
END;
UpdateShipToAddress;
CreateDim(
DATABASE::"Responsibility Center","Responsibility Center",
DATABASE::Customer,"Bill-to Customer No.",
DATABASE::"Salesperson/Purchaser","Salesperson Code",
DATABASE::Campaign,"Campaign No.",
...
...
IF InvtSetup.GET THEN
"Outbound Whse. Handling Time" := InvtSetup."Outbound Whse. Handling Time";
END;
UpdateShipToAddress;
// Add the following lines.
IF RespCenter.GET("Responsibility Center") THEN BEGIN
"Bank No." := RespCenter."Bank No.";
"Bank Name" := RespCenter."Bank Name";
"Bank Account No." := RespCenter."Bank Account No.";
"Bank Branch No." := RespCenter."Bank Branch No.";
IBAN := RespCenter.IBAN;
END;
// End of the lines.
CreateDim(
DATABASE::"Responsibility Center","Responsibility Center",
DATABASE::Customer,"Bill-to Customer No.",
DATABASE::"Salesperson/Purchaser","Salesperson Code",
DATABASE::Campaign,"Campaign No.",
...