Extension Management - How to get OperationId #21402
Replies: 2 comments
-
Hi @vividreportsryan you should check out the table /// <summary>
/// Retrieves a list of all the Deployment Status Entries
/// </summary>
/// <param name="TempExtensionDeploymentStatus">Gets the list of all the Deployment Status Entries in a temporary record.</param>
procedure GetAllExtensionDeploymentStatusEntries(var TempExtensionDeploymentStatus: Record "Extension Deployment Status" temporary)
begin
ExtensionOperationImpl.GetAllExtensionDeploymentStatusEntries(TempExtensionDeploymentStatus);
end; |
Beta Was this translation helpful? Give feedback.
-
Thank you for that reply @pri-kise! I think I see that I could iterate through the records of "Extension Deployment Status" and feed the OperationId through to GetDeployOperationInfo/GetDeploymentDetailedStatusMessage. The question I would like to be able to answer is: which OperationId matches the UploadExtension() that I just started? |
Beta Was this translation helpful? Give feedback.
-
Hello,
Various functions in the Extension Management module require an OperationId as input. Where/how would I get that value?
Specifically, after calling UploadExtension(), I would like to check the status of the upload/installation by calling GetDeployOperationInfo() and/or GetDeploymentDetailedStatusMessage() but both of these functions require an OperationId as input.
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions