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 would like the Parameter/-s Date added to the following event (and ProfileQuestionnaireLine with var)
Original
local procedure FindCustomerValues(ProfileQuestionnaireLine: Record "Profile Questionnaire Line")
<...>
repeat
OnFindCustomerValuesOnBeforeCustLoop(ProfileQuestionnaireLine, Cust);
<...>
[IntegrationEvent(true, false)]
local procedure OnFindCustomerValuesOnBeforeCustLoop(ProfileQuestionnaireLine: Record "Profile Questionnaire Line"; var Customer: Record Customer)
begin
end;
local procedure FindContactValues(ProfileQuestionnaireLine: Record "Profile Questionnaire Line")
<...>
repeat
OnFindContactValuesOnBeforeContLoop(ProfileQuestionnaireLine, Cont);
<...>
[IntegrationEvent(true, false)]
local procedure OnFindContactValuesOnBeforeContLoop(ProfileQuestionnaireLine: Record "Profile Questionnaire Line"; var Contact: Record Contact)
begin
end;
Change
[IntegrationEvent(true, false)]
local procedure OnFindContactValuesOnBeforeContLoop(var ProfileQuestionnaireLine: Record "Profile Questionnaire Line"; var Contact: Record Contact; Date: Date) // <-- ADDED
begin
end;
[IntegrationEvent(true, false)]
local procedure OnFindCustomerValuesOnBeforeCustLoop(var ProfileQuestionnaireLine: Record "Profile Questionnaire Line"; var Customer: Record Customer; Date: Date) // <-- ADDED
begin
end;
Additional context
In order to use custom Date-Formulas based on accounting periods the parameter "ProfileQuestionnaireLine" should be modifyable with "var" and the global variable "Date" should be accessible and be part of the parameters.
The text was updated successfully, but these errors were encountered:
Describe the request
We would like the Parameter/-s Date added to the following event (and ProfileQuestionnaireLine with var)
Original
Change
Additional context
In order to use custom Date-Formulas based on accounting periods the parameter "ProfileQuestionnaireLine" should be modifyable with "var" and the global variable "Date" should be accessible and be part of the parameters.
The text was updated successfully, but these errors were encountered: