How to distinguish master elements and aliases

Sorry for possible dublicate of a question, but I tryied to search it in Forums, and has not found any result.

So. In my BPD-diagram I have 3 elements, all the same type (BPMessage): 2 are master view and 1 is an alias view of one of master-elements. For example:

#  Element    View
-- --------   -----
1  Order      Master
2  Report     Master
3  Report     Alias of #2

What construction and what way I should to use to process only master elements in my report? I understand, that is all I needed, but I don’t catch how to use them.

Thanks,
Vladimir Andreyev.

Hi v-andreyev,

Please try:


Best regards,
Jick Yeung

[quote=Jick]Please try:


…[/quote]

It does not work.

If I do this way (without ValueConditionChecker):

<IterationBlock modelTypes = "BPMessage" sortBys = "name">
		<StaticText content = "{hs1}" />
		<StringPropertyText propertyText = "name" />
		<StaticText content = "{/hs1}" />
		<ParagraphBreak/>
</IterationBlock>

then I get all data, master and alias (“Order”, “Report”, “Report”).

If I do by your way (with ValueConditionChecker):

<IterationBlock modelTypes = "BPMessage" sortBys = "name">
	<ValueConditionChecker property="master" operator="equals" value="true">
		<StaticText content = "{hs1}" />
		<StringPropertyText propertyText = "name" />
		<StaticText content = "{/hs1}" />
		<ParagraphBreak/>
	</ValueConditionChecker>
</IterationBlock>

then I get nothing (no any data). :frowning: Why?

Dear Vladimir,

Sorry for my late reply. Could you post the whole file for us to check?

Best regards,
Jick Yeung