SAP Certified Associate – SAP Integration Suite — Question 15
You configured a content modifier as follows:
Action: Create -
Name: ProductID -
Source Type: XPath -
Source Value: //ProductID -
Data Type: java.lang.string -
After testing the content modifier, you receive an error message that contains the following fragment:
“java.lang.ClassNotFoundException:java.lang.string..”
What caused the error message?
Answer options
- A. Incorrect name
- B. Incorrect source type
- C. Incorrect data type
- D. Incorrect source value
Correct answer: C
Explanation
The error message indicates that the specified class 'java.lang.string' could not be found, suggesting that the data type is incorrectly defined. The correct data type should be 'java.lang.String' with an uppercase 'S'. The other options (name, source type, and source value) do not affect the class loading for the data type.