You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need the PriceAsset record to be passed as VAR in the following event
Can we change this IntegrationEvent
[IntegrationEvent(false, false)]
local procedure OnBeforeShowPriceListLines(PriceSource: Record "Price Source"; PriceAsset: Record "Price Asset"; PriceType: Enum "Price Type"; AmountType: Enum "Price Amount Type"; var IsHandled: Boolean)
begin
end
to this:
[IntegrationEvent(false, false)]
local procedure OnBeforeShowPriceListLines(PriceSource: Record "Price Source"; var PriceAsset: Record "Price Asset"; PriceType: Enum "Price Type"; AmountType: Enum "Price Amount Type"; var IsHandled: Boolean)
begin
end
Additional context
We are modifying the pricing interface for one of our client migrating from Navision to BC and when the ShowPriceListLines is called from the Item Card and ItemList, we need to be able to change the Price Asset that is being used to display pricing
From Item table:
procedure ShowPriceListLines(PriceType: Enum "Price Type"; AmountType: Enum "Price Amount Type")
var
PriceAsset: Record "Price Asset";
PriceUXManagement: Codeunit "Price UX Management";
begin
AsPriceAsset(PriceAsset, PriceType);
PriceUXManagement.ShowPriceListLines(PriceAsset, PriceType, AmountType);
end;
The PriceAsset record is never inserted and is not passed as VAR so when we add the logic in the OnBeforeShowPriceListLines Integration Event, the values we changed are ignored.
Internal work item: AB#572765
The text was updated successfully, but these errors were encountered:
Describe the request
We need the PriceAsset record to be passed as VAR in the following event
Can we change this IntegrationEvent
[IntegrationEvent(false, false)]
local procedure OnBeforeShowPriceListLines(PriceSource: Record "Price Source"; PriceAsset: Record "Price Asset"; PriceType: Enum "Price Type"; AmountType: Enum "Price Amount Type"; var IsHandled: Boolean)
begin
end
to this:
[IntegrationEvent(false, false)]
local procedure OnBeforeShowPriceListLines(PriceSource: Record "Price Source"; var PriceAsset: Record "Price Asset"; PriceType: Enum "Price Type"; AmountType: Enum "Price Amount Type"; var IsHandled: Boolean)
begin
end
Additional context
We are modifying the pricing interface for one of our client migrating from Navision to BC and when the ShowPriceListLines is called from the Item Card and ItemList, we need to be able to change the Price Asset that is being used to display pricing
From Item table:
procedure ShowPriceListLines(PriceType: Enum "Price Type"; AmountType: Enum "Price Amount Type")
var
PriceAsset: Record "Price Asset";
PriceUXManagement: Codeunit "Price UX Management";
begin
AsPriceAsset(PriceAsset, PriceType);
PriceUXManagement.ShowPriceListLines(PriceAsset, PriceType, AmountType);
end;
The PriceAsset record is never inserted and is not passed as VAR so when we add the logic in the OnBeforeShowPriceListLines Integration Event, the values we changed are ignored.
Internal work item: AB#572765
The text was updated successfully, but these errors were encountered: