En miñas tentativas en curso na subministración dun columna de investigación máis útil usar BDC, I hit a wall with the BDC picker. If you haven’t see it, the BDC picker is similar to a people picker except that it works with columns of type "business data".
Accede o seleccionador, premendo na icona de unha columna de datos corporativos libro aberto, como se mostra:
The above image shows a business data column called "Master Document Id". That column is connected, vía BDC, to a web service. The web service returns two columns of information: Document ID and Title. The business purpose here is to provide a "this document is based on" función. Users select a "master" documento e cando gardar, un receptor de eventos copias campos de metadatos do mestre referenciada.
Por defecto, the BDC picker looks like this when I search for a document whose ID = "38":
Isto é útil, but not good enough. People don’t think in terms of IDs, they think in terms of titles and/or other meta data. The picker allows you to search on other columns (e.g. Título) pero non vai amosar a lista actual de títulos se atopa, só a súa DocId está como se mostra aquí:
(A pantalla non é tan grande porque eu non incorporarse unha busca que retorna todos os resultados válidos, pero podes ver que houbo algúns resultados, el só mostraría DocId de, nin títulos).
I searched high and low for the answer to this and failed. O meu compañeiro, o venerábel Jonathan Bradshaw, had faced and solved this issue. When I reached out to him for help, el me apuntou na dirección correcta.
Configure the picker to show multiple columns via the "ShowInPicker" propiedade no ADF:
<Propiedade Nome="ShowInPicker" Tipo="System.Boolean">certo</Propiedade>
En máis detalle:
<!-- Título --> <TypeDescriptor TypeName="System.String" Nome="Título" > <LocalizedDisplayNames> <LocalizedDisplayName LCID="1033">Título</LocalizedDisplayName> </LocalizedDisplayNames> <Propiedades> <Propiedade Nome="DisplayByDefault" Tipo="System.Boolean">certo</Propiedade> <Propiedade Nome="ShowInPicker" Tipo="System.Boolean">certo</Propiedade> </Propiedades> </TypeDescriptor>
Setting this property does introduce a minor problem. As soon as you set it once, you need to set it for every column you want to show. No meu caso, BDC picker showed DocId by default. Con todo, once I added "ShowInPicker" Título, DocId no longer displayed. I solved that by explicitly setting the ShowInPicker property for Doc ID.
Aquí está o resultado:
(I’ll explain the odd-looking "168 – CamlSchema.xsd" construction in a future blog post. En resumo, é unha cadea concatenada que permite un pouco mellor experiencia do usuario).
Por suposto, escribir este blog, I just did a search for "ShowInPicker" e atopei moitos logros, incluíndo este: http://msdn2.microsoft.com/en-us/library/ms583986.aspx. It explains the meaning of that property along with some other good BDC stuff.
</final>
Maldición… Este artigo me salvo unha morea de tempo e miña vida :-))
Gran post e seu blog engade aos meus favoritos. A propósito, I found the article by googling "bdc could not find fields to insert all the identifier values" *lol* 😉
Saúdos, Jm
Ola Paulo,
temos un screencast de como pode definir esta propiedade con BDC Meta Man
http://support.lighteningtools.com/default.asp?W12
Grazas
Entalhe