Package com.veeva.vault.sdk.api.data
Interface RecordDisplayService
- All Superinterfaces:
Service
Provides methods to retrieve UI display values from records. For example, object fields configured with a
Format Mask.
-
Method Summary
Modifier and TypeMethodDescriptionCreates an operation to retrieve the display values for the records specified in theRecordDisplayRequest.Creates aRecordDisplayRequest.Builder.
-
Method Details
-
newRecordDisplayRequestBuilder
RecordDisplayRequest.Builder newRecordDisplayRequestBuilder()Creates aRecordDisplayRequest.Builder.- Returns:
- an
RecordDisplayRequest.Builder
-
batchProcessRecordDisplayValues
BatchOperation<RecordDisplayResult,BatchOperationError> batchProcessRecordDisplayValues(RecordDisplayRequest request) Creates an operation to retrieve the display values for the records specified in theRecordDisplayRequest. The List of records inRecordDisplayRequestcannot be null or empty. All Records in the List must be records from the same object. To check the object a record belongs to, use (Record.getObjectName()).- Parameters:
request- contains the List of Records representing object records to format. List cannot exceed 500 Records.- Returns:
- an operation to retrieve the display values of the records specified in
RecordDisplayRequest.
-