How To: Obtain Workflow Trace in SharePoint

You can get a LOG file with your workflow trace following this steps:1. Edit web.config.2. Insert the following code just BEFORE <appSettings> (always AFTER </System.Workflow.ComponentModel.WorkflowCompiler>): <system.diagnostics> <sources> <source name="System.Workflow.Runtime" > <listeners> <add name = "System.Workflow"/> </listeners> </source> <source name="System.Workflow.Runtime.Hosting"> <listeners> <add name="System.Workflow"/> </listeners> </source> <source name="System.Workflow.Activities"> <listeners> <add name="System.Workflow"/> </listeners> </source> </sources> <sharedListeners> <add name="System.Workflow" type="System.Diagnostics.TextWriterTraceListener" initializeData="C:MyWorkflowTrace.log" …

Sigue leyendo How To: Obtain Workflow Trace in SharePoint

Allow Users To Create New Terms in SharePoint’s Taxonomy Term Store

If you go to the Term Store Management you can add new term sets in the taxonomy term store whenever you want. However, maybe you want to allow users to create new term sets, so you've to do this: 1. Go to the Term Store Management. 2. Select the Term Set that you want. 3. …

Sigue leyendo Allow Users To Create New Terms in SharePoint’s Taxonomy Term Store

Hide Elements List in ‘Details View’ and See Only its Properties in SharePoint

If you want to use the details view on a list or library and you don't want to see the list of elements (maybe you need to show only one item, or you're going to select that item on another webpart) you can hide it doing the following: 1. Edit Page. 2. Create a new …

Sigue leyendo Hide Elements List in ‘Details View’ and See Only its Properties in SharePoint

Añadir LOG en VBA (O Como Escribir en un Fichero TXT)

Tenemos nuestro código en VBA listo para ejecutarse, con variables, condiciones, bucles... Puede que depurando nos baste, pero en ocasiones podemos necesitar escribir en un fichero externo que al ejecutarse nos pueda dar en un solo lugar toda la información que queramos. En primer lugar, creamos una función que se encargue de comprobar si un …

Sigue leyendo Añadir LOG en VBA (O Como Escribir en un Fichero TXT)

SharePoint 2010 – Seguridad de Windows Pide un Certificado al Abrir un Documento Word en Cliente (HTTPS)

Tenemos nuestro Sitio de SharePoint con documentos guardados y queremos abrirlos en Office cliente para editarlos. Si estamos entrando por HTTPS es posible que cuando intentemos abrirlos nos aparezca una ventana dándonos a elegir un certificado. Seguramente, escojamos el que escojamos no va a funcionar. Para solucionarlo, podemos ir al servidor donde esta alojado el …

Sigue leyendo SharePoint 2010 – Seguridad de Windows Pide un Certificado al Abrir un Documento Word en Cliente (HTTPS)

SharePoint 2013 – The search request was unable to connect to the Search Service

Error The search request was unable to connect to the Search Service. Solution 1. Central Administration 2. Application Management 3. Manage Web Applications 4. Select the Web Application 5. Ribbon: Service Connections 6. Search Application must be checked If you don't se any Search Application, do the following 1. Central Administration 2. Application Management 3. …

Sigue leyendo SharePoint 2013 – The search request was unable to connect to the Search Service

Obtener Última Celda de Excel Aunque No Todas Tengan Información con Visual Basic For Applications

Podemos encontrarnos con una situación en la que necesitemos saber el número de filas o de columnas de una tabla dinámica (por ejemplo) en la que hay campos que para no repetirse están ocultos. Si queremos saber cuantas filas tiene una columna, pero puede que haya elementos ocultos, no nos sirve utilizar el simple "xlDown" …

Sigue leyendo Obtener Última Celda de Excel Aunque No Todas Tengan Información con Visual Basic For Applications