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" …
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
Backup your Site Collection in SharePoint
You can backup your Site Collection by this steps: 1. Open new Terminal window. 2. Go to: C:Program FilesCommon FilesMicrosoft SharedWeb Server Extensions14BIN 3. Execute the following: ststsadm -o backup -url http://yourSite.com -filename C:oneFolderanotherFolderyourBackupFile
Hide the Quick Launch on a Specific Page
If you want to hide the quick launch (vertical menu) on a specific page you've to do the following: 1. Edit your page. 2. Insert Content Editor wherever you want (Insert -> Web Part and add Content Editor in Media and Content category). 3. Edit HTML. Once you can write in your Content Editor, select …
SharePoint Calendar – View All Resources By Default
If we create a calendar for resource reservation may not be able to see the items created, because each time we enter this list you must select which resources you want to see. To show you all we have to create the default calendar as follows: 1. Create New Group Calendar. Before click the "Create" …
Sigue leyendo SharePoint Calendar – View All Resources By Default
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 …
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" …