Hi Arthur,
No Worries.
1. Assign the whole output to a variable.
2. Execute the strategy. Now you will be able to see what format/data you are getting from the RFC. You can see that in the URS logs or you can even debug the strategy with out executing it. From that we could proceed further.
3. It will return the whole result in a XML format. From that you will know which tag values you have to take. For example. it will return something like below.
<XML>
<GetResponse xmlns="http://www.webservice.com/services/">
<GetResult>
<Result1>$$$</Result1>
<Result2>1234</Result2>
<Result3>Genesys</Result3>
</GetResult>
</GetResponse>
<\XML>
varResult = GetResponse.GetResult.Result2 will return 1234.
Is this what you want? Please let me know.
Thanks,
Kumar.