On Mon, Sep 6, 2010 at 1:06 PM, Mansour Al Akeel
<[email protected]>wrote:
> Ravi thank you.
> I got it working. One thing is still missing, how do I extract the
> variable name in the parameter ? See the comments.
>
> <actions>
> <entity-condition entity-name="Product">
> <order-by field-name="internalName" />
> </entity-condition>
> <service service-name="findPartiesById"
> result-map="myParty">
> <!-- I have the value hard coded to 10000, but I want to
> use the manufacturerPartyId. -->
> <field-map field-name="idToFind" value="10000" />
> </service>
> <set field="manufacturerDescription"
> value="${myParty.party['description']}" />
> </actions>
>
>
you have do field-map idToFind from genericValueName.manufacturePartyId in
from-field element and you job is done .
Ravi