<div dir="ltr">If you want a real dropdown, you could always hide those 2 attributes using the default template and then create a schema extension attribute,<div><br></div><div><a href="https://wiki.evolveum.com/display/midPoint/Custom+Schema+Extension">https://wiki.evolveum.com/display/midPoint/Custom+Schema+Extension</a><br></div><div><br></div><div>And for a dropdown example,</div><div><br></div><div><div><xsd:schema elementFormDefault="qualified"</div><div>            targetNamespace="<a href="http://my.namespace.com">http://my.namespace.com</a>"</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                   </span>xmlns:tns="<a href="http://my.namespace.com">http://my.namespace.com</a>"</div><div>            xmlns:c="<a href="http://midpoint.evolveum.com/xml/ns/public/common/common-3">http://midpoint.evolveum.com/xml/ns/public/common/common-3</a>"</div><div>            xmlns:a="<a href="http://prism.evolveum.com/xml/ns/public/annotation-3">http://prism.evolveum.com/xml/ns/public/annotation-3</a>"</div><div>            xmlns:xsd="<a href="http://www.w3.org/2001/XMLSchema">http://www.w3.org/2001/XMLSchema</a>"></div><div><br></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">     </span><xsd:simpleType name="myAttribute"></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">            </span><xsd:annotation></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                 </span><xsd:documentation>Choices for Attribute</xsd:documentation></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">               </span></xsd:annotation></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                </span><xsd:restriction base="xsd:string"></div><div>            <xsd:enumeration value="choice1"></div><div>                <xsd:annotation></div><div>                    <xsd:appinfo></div><div>                        <a:label>Choice 1</a:label></div><div>                    </xsd:appinfo></div><div>                </xsd:annotation></div><div>            </xsd:enumeration></div><div>            <xsd:enumeration value="choice2"></div><div>                <xsd:annotation></div><div>                    <xsd:appinfo></div><div>                        <a:label>Choice 2</a:label></div><div>                    </xsd:appinfo></div><div>                </xsd:annotation></div><div>            </xsd:enumeration></div><div>            <xsd:enumeration value="choice3"></div><div>                <xsd:annotation></div><div>                    <xsd:appinfo></div><div>                        <a:label>Choice 3</a:label></div><div>                    </xsd:appinfo></div><div>                </xsd:annotation></div><div>            </xsd:enumeration></div><div>        </xsd:restriction></div><div>    </xsd:simpleType></div><div><br></div><div>    <!-- User Extension --></div><div><br></div><div>    <xsd:complexType name="UserTypeExtensionType"></div><div>        <xsd:annotation></div><div>            <xsd:appinfo></div><div>                <a:extension ref="c:UserType"/></div><div>            </xsd:appinfo></div><div>        </xsd:annotation></div><div>        <xsd:sequence></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                  </span><xsd:element name="myAttribute" type="tns:myAttribute" minOccurs="0" maxOccurs="1"></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                              </span><xsd:annotation></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                 </span><xsd:appinfo></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                            </span><a:indexed>true</a:indexed></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                                </span><a:displayName> My Attribute</a:displayName></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                               </span><a:displayOrder>370</a:displayOrder></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                               </span><a:help>Some help text here</a:help></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                       </span></xsd:appinfo></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                           </span></xsd:annotation></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                        </span></xsd:element></div><div>        </xsd:sequence></div><div>    </xsd:complexType></div><div></xsd:schema></div></div><div><br></div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr">JASON</div></div></div>
<br><div class="gmail_quote">On Mon, Sep 12, 2016 at 4:26 PM,  <span dir="ltr"><<a href="mailto:pdbogen@cernu.us" target="_blank">pdbogen@cernu.us</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Thanks!<br>
<br>
This was extremely helpful. I do have a few comments, though:<br>
<br>
1) I think this would have been easier to find if there was a link to it from<br>
the 'see also' section of<br>
<a href="https://wiki.evolveum.com/display/midPoint/Resource+Schema" rel="noreferrer" target="_blank">https://wiki.evolveum.com/<wbr>display/midPoint/Resource+<wbr>Schema</a><br>
<br>
2) The syntax for the table itself as described on<br>
<a href="https://wiki.evolveum.com/display/midPoint/Lookup+Tables" rel="noreferrer" target="_blank">https://wiki.evolveum.com/<wbr>display/midPoint/Lookup+Tables</a> seems to have two<br>
errors:<br>
<br>
  1. The closing tag for the second entry in the table is missing the `/`; and<br>
  2. The tags for each entry in the table should be 'row' rather than 'table'.<br>
<br>
These two changes allowed me to create and import a table properly; I was not<br>
able to do so when each entry was in `<table></table>`.<br>
<br>
3) The rendering of a field that is restricted in this way is not perfect- it<br>
still behaves a bit like a text field in that I can type arbitrary values into<br>
it. It does indeed prohibit disallowed values, but I think that the user<br>
experience would be a little nicer if it were rendered as a drop-down. This is<br>
a very minor issue, thuogh.<br>
<br>
4) No error is indicated when I _do_ try to provide a prohibited value. Since<br>
the field is a text field, it seems to allow me to type an arbitrary value in<br>
and submit it.<br>
<br>
Thanks again!<br>
- Patrick<br>
<div><div class="h5"><br>
On Mon, Sep 12, 2016 at 03:09:16PM -0500, Jason Everling wrote:<br>
> Yep, Lookup Tables work great, I started using not long after it was added!<br>
> I think also if they try to add a value not in the table it will not save<br>
> it so they can only choose those specific values.<br>
><br>
><br>
><br>
> JASON<br>
><br>
> On Mon, Sep 12, 2016 at 3:02 PM, Pálos Gustáv <<a href="mailto:gustav.palos@evolveum.com">gustav.palos@evolveum.com</a>><br>
> wrote:<br>
><br>
> > Hi,<br>
> ><br>
> > Please see:<br>
> > <a href="https://wiki.evolveum.com/display/midPoint/Lookup+Tables" rel="noreferrer" target="_blank">https://wiki.evolveum.com/<wbr>display/midPoint/Lookup+Tables</a><br>
> ><br>
> > Gustav<br>
> ><br>
> > On Sep 12, 2016 9:51 PM, <<a href="mailto:pdbogen@cernu.us">pdbogen@cernu.us</a>> wrote:<br>
> ><br>
> >> Hi!<br>
> >><br>
> >> To simplify the UI somewhat for the expected end users of midpoint, I'd<br>
> >> like<br>
> >> to restrict a couple properties to a predefined set of options.<br>
> >><br>
> >> I've already figured out how to suppress/require options (by changing the<br>
> >> global user template and adding either minOccurs=1 or ignore=true, but it<br>
> >> wasn't clear to me how to extend this to change an option from a freeform<br>
> >> field into a selection.<br>
> >><br>
> >> I _suppose_ I could do this with roles and then induce the value of the<br>
> >> property, but that seems a little less intuitive than what I would like.<br>
> >><br>
> >> I also suppose I could create an overlay that changes the actual UI, but<br>
> >> that<br>
> >> seems somewhat complex, and I was hoping to avoid it for what seems to be<br>
> >> to<br>
> >> be a straightforward requirement. (But I'm already using an overlay to<br>
> >> prepopulate a whole bunch of different artifacts, so maybe it's not that<br>
> >> much<br>
> >> extra work.)<br>
> >><br>
> >> The fields I'd like to restrict are 'Organization' and 'Locality.'<br>
> >><br>
> >> Any help is appreciated!<br>
> >> Thanks,<br>
> >> --<br>
> >>              .<br>
> >> Patrick Bogen .<br>
> >>             ...<br>
> >><br>
> >> ______________________________<wbr>_________________<br>
> >> midPoint mailing list<br>
> >> <a href="mailto:midPoint@lists.evolveum.com">midPoint@lists.evolveum.com</a><br>
> >> <a href="http://lists.evolveum.com/mailman/listinfo/midpoint" rel="noreferrer" target="_blank">http://lists.evolveum.com/<wbr>mailman/listinfo/midpoint</a><br>
> >><br>
> >><br>
> > ______________________________<wbr>_________________<br>
> > midPoint mailing list<br>
> > <a href="mailto:midPoint@lists.evolveum.com">midPoint@lists.evolveum.com</a><br>
> > <a href="http://lists.evolveum.com/mailman/listinfo/midpoint" rel="noreferrer" target="_blank">http://lists.evolveum.com/<wbr>mailman/listinfo/midpoint</a><br>
> ><br>
> ><br>
><br>
</div></div>> --<br>
><br>
><br>
> CONFIDENTIALITY NOTICE:<br>
> This e-mail together with any attachments is proprietary and confidential;<br>
> intended for only the recipient(s) named above and may contain information<br>
> that is privileged. You should not retain, copy or use this e-mail or any<br>
> attachments for any purpose, or disclose all or any part of the contents to<br>
> any person. Any views or opinions expressed in this e-mail are those of the<br>
> author and do not represent those of the Baptist School of Health<br>
> Professions. If you have received this e-mail in error, or are not the<br>
> named recipient(s), you are hereby notified that any review, dissemination,<br>
> distribution or copying of this communication is prohibited by the sender<br>
> and to do so might constitute a violation of the Electronic Communications<br>
> Privacy Act, 18 U.S.C. section 2510-2521. Please immediately notify the<br>
> sender and delete this e-mail and any attachments from your computer.<br>
<div class="HOEnZb"><div class="h5"><br>
> ______________________________<wbr>_________________<br>
> midPoint mailing list<br>
> <a href="mailto:midPoint@lists.evolveum.com">midPoint@lists.evolveum.com</a><br>
> <a href="http://lists.evolveum.com/mailman/listinfo/midpoint" rel="noreferrer" target="_blank">http://lists.evolveum.com/<wbr>mailman/listinfo/midpoint</a><br>
<br>
<br>
--<br>
             .<br>
Patrick Bogen .<br>
            ...<br>
</div></div><br>______________________________<wbr>_________________<br>
midPoint mailing list<br>
<a href="mailto:midPoint@lists.evolveum.com">midPoint@lists.evolveum.com</a><br>
<a href="http://lists.evolveum.com/mailman/listinfo/midpoint" rel="noreferrer" target="_blank">http://lists.evolveum.com/<wbr>mailman/listinfo/midpoint</a><br>
<br></blockquote></div><br></div>

<br>
<font size="2"><br><br>CONFIDENTIALITY NOTICE:<br>This e-mail together with any attachments is proprietary and confidential; intended for only the recipient(s) named above and may contain information that is privileged. You should not retain, copy or use this e-mail or any attachments for any purpose, or disclose all or any part of the contents to any person. Any views or opinions expressed in this e-mail are those of the author and do not represent those of the Baptist School of Health Professions. If you have received this e-mail in error, or are not the named recipient(s), you are hereby notified that any review, dissemination, distribution or copying of this communication is prohibited by the sender and to do so might constitute a violation of the Electronic Communications Privacy Act, 18 U.S.C. section 2510-2521. Please immediately notify the sender and delete this e-mail and any attachments from your computer. </font><br>