<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://communities.bentley.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Need help to solve a PBA problem &amp;quot;URGENT&amp;quot;</title><link>https://communities.bentley.com/products/geospatial/desktop/f/bentley-map-forum/76886/need-help-to-solve-a-pba-problem-urgent</link><description>Hi 
 
 I am trying to create 2 PBA expressions with 2 criterias and I don&amp;acute;t get this to work, the second PBA expression overwrites the first when quering from DB. 
 
 See image: 
 
 
 //Tom</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>Re: Need help to solve a PBA problem "URGENT"</title><link>https://communities.bentley.com/thread/210339?ContentTypeID=1</link><pubDate>Thu, 31 May 2012 11:41:01 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:bd9423ed-4b75-443e-8244-90e8cfa9091f</guid><dc:creator>Lillhannus</dc:creator><description>&lt;p&gt;Hi Sebastien and all.&lt;/p&gt;
&lt;p&gt;We came up with a&amp;nbsp;solution for this issue.&lt;/p&gt;
&lt;p&gt;Here is the solution:&lt;/p&gt;
&lt;p&gt;-&amp;gt;Create a view table &amp;nbsp;to get a &amp;quot;live&amp;quot; copy of FK_FASTTEXT in Oracle and add Metadata and a Primary key to get GSA register the table:&lt;/p&gt;
&lt;p&gt;CREATE or replace VIEW FK_FASTTEXT_VW (&lt;br /&gt;&amp;nbsp; FNR_FDS,&lt;br /&gt;&amp;nbsp; EXTERNID,&lt;br /&gt;&amp;nbsp; DETALJTYP,&lt;br /&gt;&amp;nbsp; KOMMUNKOD,&lt;br /&gt;&amp;nbsp; KOMMUNNAMN,&lt;br /&gt;&amp;nbsp; TRAKT,&lt;br /&gt;&amp;nbsp; BLOCKENHET,&lt;br /&gt;&amp;nbsp; OMRNR,&lt;br /&gt;&amp;nbsp; FASTIGHET,&lt;br /&gt;&amp;nbsp; ADAT,&lt;br /&gt;&amp;nbsp; MI_STYLE,&lt;br /&gt;&amp;nbsp; IDNR,&lt;br /&gt;&amp;nbsp; GEOMETRY,&lt;br /&gt;&amp;nbsp; OMRNR_EJ1,&lt;br /&gt;&amp;nbsp; FASTTYP,&lt;br /&gt;&amp;nbsp; TEXT,&lt;br /&gt;&amp;nbsp; AREAL,&lt;br /&gt;&amp;nbsp; AREAL_1_1000,&lt;br /&gt;&amp;nbsp; AREAL_1_2000,&lt;br /&gt;&amp;nbsp; AREAL_1_5000,&lt;br /&gt;&amp;nbsp; AREAL_1_10000,&lt;br /&gt;&amp;nbsp; FASTTYP_EJ1, &lt;br /&gt;CONSTRAINT FK_FASTTEXT_VW_PK PRIMARY KEY (IDNR) RELY DISABLE NOVALIDATE)&lt;br /&gt;AS &lt;br /&gt;SELECT &lt;br /&gt;&amp;nbsp;FNR_FDS, &lt;br /&gt;&amp;nbsp;EXTERNID,&lt;br /&gt;DETALJTYP,&lt;br /&gt;KOMMUNKOD,&lt;br /&gt;KOMMUNNAMN,&lt;br /&gt;TRAKT,&lt;br /&gt;BLOCKENHET,&lt;br /&gt;OMRNR,&lt;br /&gt;FASTIGHET,&lt;br /&gt;ADAT,&lt;br /&gt;MI_STYLE,&lt;br /&gt;IDNR,&lt;br /&gt;GEOMETRY,&lt;br /&gt;OMRNR_EJ1,&lt;br /&gt;FASTTYP,&lt;br /&gt;TEXT,&lt;br /&gt;AREAL,&lt;br /&gt;AREAL_1_1000,&lt;br /&gt;AREAL_1_2000,&lt;br /&gt;AREAL_1_5000,&lt;br /&gt;AREAL_1_10000,&lt;br /&gt;FASTTYP_EJ1&lt;br /&gt;FROM FK_FASTTEXT WHERE (FASTTYP_EJ1=&amp;#39;FREGNRTX_OMR&amp;#39;) WITH READ ONLY;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;INSERT INTO USER_SDO_GEOM_METADATA (TABLE_NAME,COLUMN_NAME, DIMINFO, SRID) values&lt;br /&gt;(&amp;#39;FK_FASTTEXT_VW&amp;#39;, &amp;#39;GEOMETRY&amp;#39;,&lt;br /&gt;mdsys.SDO_dim_array(MDSYS.SDO_DIM_ELEMENT(&amp;#39;X&amp;#39;,100000,400000,.001),&lt;br /&gt;MDSYS.SDO_DIM_ELEMENT(&amp;#39;Y&amp;#39;,6400000,6700000,.001)), &amp;#39;3011&amp;#39;);&lt;/p&gt;
&lt;p&gt;commit;&lt;/p&gt;
&lt;p&gt;---------------------------------------------------------------------------------------------------------------------------------------------------&lt;/p&gt;
&lt;p&gt;Reregister the schema and add the &amp;#39;FK_FASTTEXT_VW&amp;#39;&lt;/p&gt;
&lt;p&gt;-&amp;gt;Change the criteria FAST Omr&amp;aring;desnummer f&amp;ouml;r fastighet to:&lt;/p&gt;
&lt;p&gt;COMPARE(&amp;quot;[Fk_Fasttext_Vw:Fasttyp_Ej1]&amp;quot;,&amp;quot;FREGNRTX_OMR&amp;quot;,&amp;quot;&amp;quot;)&lt;/p&gt;
&lt;p&gt;-&amp;gt;Set values in the feature Fk_Fasttext_Vw&lt;/p&gt;
&lt;p&gt;&lt;img border="0" alt="" src="http://communities.bentley.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Discussions-Components-Files/5924/5078.View-values.png" /&gt;&lt;/p&gt;
&lt;p&gt;-&amp;gt; we had to add FROM FK_FASTTEXT WHERE (FASTTYP_EJ1=&amp;#39;FREGNRTX_OMR&amp;#39;) WITH READ ONLY; because XFM/GSA is handling &amp;quot;null&amp;quot; values in database very bad, its&amp;acute;s quering &amp;quot;null&amp;quot; values as points (LINE)&lt;/p&gt;
&lt;p&gt;BIG Thanks to:&lt;/p&gt;
&lt;p&gt;Mikko Ala-Juusela (Bentley Finland)&lt;/p&gt;
&lt;p&gt;Carlos Martins (Bentley Netherlands)&lt;/p&gt;
&lt;p&gt;Monica Henriksson (Bjerking Sweden)&lt;/p&gt;
&lt;p&gt;Krister Surell (Surell Consulting Sweden)&lt;/p&gt;
&lt;p&gt;for your help to solve this problem.&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Tom&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Need help to solve a PBA problem "URGENT"</title><link>https://communities.bentley.com/thread/210292?ContentTypeID=1</link><pubDate>Thu, 31 May 2012 01:02:46 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:50deb17d-543c-4781-ab3b-4d018d6babda</guid><dc:creator>Sebastien Lefrancois</dc:creator><description>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;[Tom] I was trying to follow the instructions for creating a sub-feature text but the explanations is NOT from this world, impossible to understand ( I don&amp;acute;t ).&lt;/p&gt;
&lt;p&gt;[Seb] ....&lt;em&gt;you need to make some change into Oracle database&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;[Tom] What do you mean by changes??&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;[Seb] I mean add sub-feature to your main feature into the Oracle Spatial Database, not in GSA/Map.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;[Seb]&lt;/em&gt;&lt;em&gt;....We can set one PBA at time for one feature. If you want a second PBA, you will need a second feature or sub-feature.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;[Tom] Thats why I have 2 criterias, they are 2 different features but they have common property. (see image)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;[Seb] You cannot display more than one PBA to the same feature. The criteria allowed you apllied different PBA regarding the query is tru or not. If two or more criteria are true, it will display the first PBA whihc result to TRUE.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best Regards&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Need help to solve a PBA problem "URGENT"</title><link>https://communities.bentley.com/thread/209384?ContentTypeID=1</link><pubDate>Mon, 21 May 2012 18:18:51 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:4d4c3c90-69e4-41b9-9e37-df87a5511212</guid><dc:creator>Lillhannus</dc:creator><description>&lt;p&gt;Thank you for your answers.&lt;/p&gt;
&lt;p&gt;Jeff:&lt;/p&gt;
&lt;p&gt;My main goal is to query the information from Oracle, this&amp;nbsp;is read only information, but your suggestion is needed for other products.&lt;/p&gt;
&lt;p&gt;Sebastien:&lt;/p&gt;
&lt;p&gt;I was trying to follow the instructions for creating a sub-feature text but the explanations is NOT from this world, impossible to understand ( I don&amp;acute;t ).&lt;/p&gt;
&lt;p&gt;....&lt;em&gt;you need to make some change into Oracle database&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;What do you mean by changes??&lt;/p&gt;
&lt;p&gt;&lt;em&gt;....We can set one PBA at time for one feature. If you want a second PBA, you will need a second feature or sub-feature.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Thats why I have 2 criterias, they are 2 different features but they have common property. (see image)&lt;/p&gt;
&lt;p&gt;&lt;img border="0" alt="" src="http://communities.bentley.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Discussions-Components-Files/275816/5556.PBA_5F00_sub_5F00_feature.png" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;//Tom&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description><enclosure url="https://communities.bentley.com/cfs-file/__key/telligent-evolution-components-attachments/00-5924-01-00-00-20-93-84/PBA_5F00_sub_5F00_feature.png" length="506294" type="image/png" /></item><item><title>Re: Need help to solve a PBA problem "URGENT"</title><link>https://communities.bentley.com/thread/209333?ContentTypeID=1</link><pubDate>Sat, 19 May 2012 03:19:04 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:da446a8c-db7f-4982-8b50-b3c772487f53</guid><dc:creator>Jeff Bielefeld</dc:creator><description>&lt;p&gt;Tom,&lt;/p&gt;
&lt;p&gt;If I understand correctly your objective, I believe this can be solved using a PBA based text feature, one in which the displayed text for the feature instance&amp;nbsp;is always driven by PBA expressions rather than the default text string value. Let me try to explain and in the process confirm whether or not this is what you are attempting to define.&lt;/p&gt;
&lt;p&gt;First in the &amp;quot;Symbology&amp;quot; section of the &amp;quot;Fk_Fasttext&amp;quot; feature class definition I don&amp;#39;t see any problems other that what Sebastien correctly suggested (e.g. adding default values). Your PBA expressions and use of named Criteria are fine. However because &amp;quot;Fk_Fasttext&amp;quot; is a text feature class, by default the text value will come from a user entered text string rather than a business property value. This can be seen by adding placement metadata using &amp;quot;Insert &amp;gt; Text Placement Metadata&amp;quot; command with the &amp;quot;Show Properties At Placement&amp;quot; option enabled. After doing so, under the &amp;quot;Methods&amp;quot; node, take a look at the generated&amp;nbsp;&amp;quot;Place&amp;quot; method parameters, paying special attention to the &amp;quot;&lt;strong&gt;stringSourceType&lt;/strong&gt;&amp;quot; and &amp;quot;&lt;strong&gt;stringSource&lt;/strong&gt;&amp;quot; parameters as shown in the following:&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&lt;img border="0" alt="" src="http://communities.bentley.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Discussions-Components-Files/275816/5241.image_5F00_03-2012.05.19-05.03.56.gif" /&gt;&lt;/p&gt;
&lt;p&gt;This definition by default would use the user entered text string when creating the text rather than evaluating your criteria and PBA expression. Therefore the first change I suggest that you make would be to change the &amp;quot;&lt;strong&gt;stringSourceType&lt;/strong&gt;&amp;quot; and &amp;quot;&lt;strong&gt;stringSource&lt;/strong&gt;&amp;quot; parameters as follows:&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&lt;img border="0" alt="" src="http://communities.bentley.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Discussions-Components-Files/275816/4478.image_5F00_04-2012.05.19-05.04.18.gif" /&gt;&lt;/p&gt;
&lt;p&gt;After making this change and exporting your revised XFM project workspace, you should be able to create instances of the &amp;quot;Fk_Fasttext&amp;quot; that reflect your different PBA expressions based upon evaluation of your named criteria.&lt;/p&gt;
&lt;p&gt;For your reference, I&amp;#39;ve attached an archive containing a&amp;nbsp;modified version of your schema that adds color symbology keys and changes text width based upon your named criteria. Please note that in the provided schema I&amp;#39;ve changed the names of the default project name and user workspace for my local system.&amp;nbsp;The archive also contains a&amp;nbsp;tom1.dgn design file containing 2 &amp;quot;Fk_Fasttext&amp;quot; feature instances, each matching different criteria and therefore using different symbology, levels and PBA expresions as shown here:&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&lt;img border="0" alt="" src="http://communities.bentley.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Discussions-Components-Files/275816/5468.image_5F00_05-2012.05.19-05.12.47.gif" /&gt;&lt;/p&gt;
&lt;p&gt;And finally,&amp;nbsp;you can reference the &amp;quot;Lot&amp;quot; feature class definition in the delivered Bentley Map geo_example_designer workspace for an additional example of the above described technique.&lt;/p&gt;
&lt;p&gt;Please let me know if this solution achieves the desired result.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description><enclosure url="https://communities.bentley.com/cfs-file/__key/telligent-evolution-components-attachments/00-5924-01-00-00-20-93-33/tom1.zip" length="27897" type="application/x-zip-compressed" /></item><item><title>Re: Need help to solve a PBA problem "URGENT"</title><link>https://communities.bentley.com/thread/209323?ContentTypeID=1</link><pubDate>Sat, 19 May 2012 00:54:17 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:72121a64-7c04-4641-9ffb-19247e64866d</guid><dc:creator>Sebastien Lefrancois</dc:creator><description>&lt;p&gt;Hi Tom,&lt;/p&gt;
&lt;p&gt;The issue was causing by the order of criteria resulting TRUE. For a same symbology key, it will apply the first value where the first criteria result is TRUE. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;In your case, each time Critirion &amp;ldquo;FAST Omr&amp;aring;desnummer f&amp;ouml;r fastighet&amp;rdquo; will be true (FASTTYP_EJ1=FREGNRTX_OMR), it will apply as the value of property Omrnr_Ej1 (PBA=[Omrnr_Ej1]), &amp;nbsp;whatever if criterion &amp;ldquo;FAST Registernummer f&amp;ouml;r fastighet&amp;rdquo; is true or not.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://communities.bentley.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Discussions-Components-Files/275816/2654.PBA_5F00_Order_5F00_Priority.png" border="0" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;You will have to create a sub-feature text for the area sub-number; otherwise I do not see how you can set different symbology by comparing different value of different properties. &amp;nbsp;We can set one PBA at time for one feature. If you want a second PBA, you will need a second feature or sub-feature. Here, you need to make some change into Oracle database. We can display text from several properties values, but each text cannot have different symbology.&lt;/p&gt;
&lt;p&gt;I will suggest setting also a default value for each symbology which has been defined by a criterion. &amp;nbsp;In the text features case, it will avoid having no text-features displayed, and it can be use a validation tool in the same time.&lt;/p&gt;
&lt;p&gt;Finally, I will suggest you to read guidelines in &amp;ldquo;Criteria&amp;rdquo; and &amp;ldquo;Criteria Performance Notes&amp;rdquo; section of Help file to improve performance of using of criteria expressions.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;CRITERIA&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://docs.bentley.com/en/MapGeospatialAdmin/GeospatialAdminhelp22.html"&gt;docs.bentley.com/.../GeospatialAdminhelp22.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://docs.bentley.com/en/MapGeospatialAdmin/GeospatialAdminhelp22.html"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;CRITERIA PERFORMANCES NOTES&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://docs.bentley.com/en/MapGeospatialAdmin/GeospatialAdminhelp23.html"&gt;docs.bentley.com/.../GeospatialAdminhelp23.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I hope that is help. Maybe someone will post a better solution by next week.&lt;/p&gt;
&lt;p&gt;Best Regards!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Sebastien Lefrancois&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;QA Bentley`s GeoSpatial Products&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Need help to solve a PBA problem "URGENT"</title><link>https://communities.bentley.com/thread/209277?ContentTypeID=1</link><pubDate>Fri, 18 May 2012 17:32:51 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:29957fb2-4fb5-4cab-9ead-16ab6e31244b</guid><dc:creator>Martin Roy</dc:creator><description>&lt;p&gt;Hi Tom. I think Jeff is the best person to answer your question, and he is a BE Together this week. Sorry for the delay.&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Martin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Need help to solve a PBA problem "URGENT"</title><link>https://communities.bentley.com/thread/209235?ContentTypeID=1</link><pubDate>Thu, 17 May 2012 23:35:53 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:c200b856-a3cb-43fe-a2ed-204fd89b25c4</guid><dc:creator>Lillhannus</dc:creator><description>&lt;p&gt;Anyone??&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Need help to solve a PBA problem "URGENT"</title><link>https://communities.bentley.com/thread/208975?ContentTypeID=1</link><pubDate>Wed, 16 May 2012 02:03:04 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:80f71cc7-8feb-4699-8e00-f2b6e6351f40</guid><dc:creator>Lillhannus</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I want&amp;nbsp;Main property area&amp;nbsp;number (FAST Registernummer f&amp;ouml;r fastighet)(PBA [Text])&amp;nbsp;and Main property area sub-number (FAST Omr&amp;aring;desnummer f&amp;ouml;r fastighet)(PBA [Omrnr_Ej1])&amp;nbsp;&amp;nbsp;two sub-features to be text with different symbology which have properties definied in primary-feature.&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:medium;"&gt;Do &amp;lt;maxOccurs&amp;gt; setting help to resolve this problem???? and if ,is there any examples how to manage this??&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;//Tom&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Need help to solve a PBA problem "URGENT"</title><link>https://communities.bentley.com/thread/208958?ContentTypeID=1</link><pubDate>Tue, 15 May 2012 22:31:11 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:103d7c69-7933-43de-a0d0-237ee4c0b268</guid><dc:creator>Lillhannus</dc:creator><description>&lt;p&gt;Adding the schema as attachment.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;//Tom&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description><enclosure url="https://communities.bentley.com/cfs-file/__key/telligent-evolution-components-attachments/00-5924-01-00-00-20-89-58/TomsFastighetskartaRAW_5F00_OmrNrEJ1.zip" length="20683" type="application/x-zip-compressed" /></item></channel></rss>