cancel
Showing results for 
Search instead for 
Did you mean: 

Parse Export Parameter from RFC

Former Member
0 Kudos

Hi experts

I want to get an export parameter from a RFC.

I am using the following code:

DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
Document doc = builder.parse(resp);
Element node = doc.getElementById("E_MAIL");
String strMail = node.getValue();

How can I take this information?! This code isn't working...

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

VijayKonam
Active Contributor
0 Kudos

Where r you writing this code? What type of object is "resp" in your code?

VJ

Answers (0)