We want to get a message for if fields are missing or empty while extracting data using Document Understanding. or any alternate method to get message?
After extracting the data you can check if the specific string is empty. @raju_alakuntla
Check this:
Option 1:
String.IsNullOrWhiteSpace(stringVariableName)
Option 2: (if you are expecting null)
stringVariableName Is Nothing
can’t we do while extracting in DU
@raju_alakuntla , Could you Explain what you mean by "While" extracting in DU ?
We get the Extraction Results, after the Data Extraction Scope has been Completed execution.
Hence, We can Check the Extracted Data Contents either it is Empty/Null/Missing after the Data Extraction Scope.
Thank you for your solution
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.