@realwillwright thanks for the reply.. this formula which have IfError inside If condition is not working for me:-
If(
IsEmpty(colErrors),
IfError(
SubmitForm(PrintOrderForm),
Notify(
"Error when updating the submitting the Printing Order form",
NotificationType.Error,
10000
),
ForAll(
colRelatedPrintOrderDetails,
If(
IsBlank(ThisRecord.ID),
Patch(
'Printing Orders Details',
Defaults('Printing Orders Details'),
{
'Network ID': ThisRecord.'Network ID',
Quantity: ThisRecord.Quantity,
'Quantity Each Artwork': ThisRecord.'Quantity Each Artwork',
'Printing Order ID': LookUp(
'Printing Processes Printing Orders',
'Printing ID' = varPrintProcessID
).'Printing Order ID',
'Printing Order Type': {Value: ThisRecord.'Printing Order Type'.Value}
}
),
Patch(
'Printing Orders Details',
LookUp(
'Printing Orders Details',
ID = ThisRecord.ID
),
{
'Network ID': ThisRecord.'Network ID',
Quantity: ThisRecord.Quantity,
'Quantity Each Artwork': ThisRecord.'Quantity Each Artwork',
'Printing Order Type': {Value: "Scrolling"}
}
)
)
),
Notify(
"Error when updating the submitting the Printing Order details form",
NotificationType.Error,"10000"
)
),
Notify(
Concat(
colErrors,
ThisRecord.Value
)
)
)