cancel
Showing results for 
Search instead for 
Did you mean: 

Mapping Help required in Node count

former_member1275317
Participant
0 Kudos

Hi Friends,

i need to count the number of occurences of source node. i'm able to count the occurences.

but i have some problem with this node. Source node happens only some times.

Source node.

<Event>

type- attribute

<Date>20092509</Date>

</Event>

Sometimes Event tag comes as </Event> without any type value then i need to pass " 0 " value.

Cases :

1. if empty Event tag happens then need to Pass "0"

2. <Event>

type

<Date></Date> in this case also need to pass 0.

3. <Event>

type "Order"

<Date>20092509</Date>

</Event>

<Event>

type "Delivery"

<Date>20092509</Date>

</Event>

in this case need to pass node count as "2"

please suggest me on this;

Regards,

Deeps

View Entire Topic
Former Member
0 Kudos

Hi,

One option is to count the attribute.

Other option is using if like if event exists and date exists and date length is greater than zero then count else count 0.

Regards,

---Satish