Forum Discussion
7 Replies
- Hi,
you can prevent this only if the whole row is empty but not in the case of single empty value in row.
To achieve this just check "Ignore Empty" check box in Data Source (Excel) configuration.
Hope this helps
regards
nebojsa
SmartBear Software - Logica_BV_SuppoNew ContributorIs there no way at all ? scripting/filtering/event or whatever to do this?
Regards, Rob - M_McDonaldSuper ContributorSince you can put script directly into a request, try this for each element that could be empty:
${=context.expand("${DataSource#field1}")!=''?'<field1>'+context.expand("${DataSource#field1}")+'</field1>':''}
- Logica_BV_SuppoNew ContributorYes but this causes the field to be sent out.
I just dont want it in the outgoing message.
<field1>value</field1>
<field2></field2>
<field3>value</field3>
This is not what i iwant.
I want:
<field1>value</field1>
<field3>value</field3> - M_McDonaldSuper Contributor
- Logica_BV_SuppoNew ContributorThis explains it all to me .... Thank you very much
or in swedish : tack så mycket - RTiwariOccasional ContributorHi all ,
Is there is any other solution to resolve this issue by using the SOAP request ?
Its urgent.
Please do the needful .