Get current user language in JavaScript in CRM 2011/ CRM 2013/ CRM 2015


https://gallery.technet.microsoft.com/scriptcenter/LCID-JavaScript-Helper-7cfb0829

Hide “Page-“ from title of SharePoint Page


To hide the “Page -“text from the page title

Open the BlankWebPartPage.aspx in the page designer and remove the tag highlighted in green.

http://stackoverflow.com/questions/13303764/page-layouts-not-available-in-sharepoint-designer

However, sometimes the Page Layouts link is missing. This is a common scenario:

•you have a subsite in a site collection

•the publishing feature is activated in the subsite, but not in the site collection

•you want to edit/add page layouts on the site collection level, to be used within your subsite

•when you open the site collection in SharePoint Designer, you can’t see Page Layouts in the Site Objects panel You now have 2 options: you can either activate the publishing feature in the site collection (and the Page Layouts link comes back), or you can use the All Files link and browse to the master pages and page layouts library (_catalogs > masterpage.) Either option will do, unless you really don’t want the publishing feature in the site collection

 

ERD Generator for Dynamics CRM 2011/2013


deepeshsomani2013's avatarMSDYNAMICSBLOG BY DEEPESH

ERD Generator for Dynamics CRM 2011/2013 is a Windows Form application that is can be used for Dynamics CRM 2011 or Dynamics CRM 2013.

URL:

This tool allows you to build ERD (Entity relationship diagrams) that are dynamically updated based on the published CRM entities and Fields. You can pick a source entity and build ERD around it. It generate a VISIO output but also lets you pick CSV to document Entity relationships.

clip_image002

It generates a CSV having details like:

image

It generates ERD in VISIO:

image

Hope it helps!

View original post

Hide Ribbon on SharePoint 2013 using CSS


Mohit Vashishtha's avatarShare SharePoint Points !

Hi Guys,

I recently experienced the migration from SharePoint 2010 to 2013. I was earlier hiding Ribbon using the SPSecurityTrimmedControl and CSS. But in SP 2013 MS has divided whole ribbon in two section: s4-ribbonrow and suiteBar

Hiding the ribbon is as much as easier as it was in 2010 version. But here we just need to take care of above two mentioned sections. I have gone thorough some of the blogs where people are saying that we have change the html file(Seattle.html or oslo.html) and design manger will take care of creating master page for you (ref: Hide Ribbon).

But there is another traditional way of doing same, follow the given steps:

1) Open the master page file in the SharePoint designer.

2) Add the style tag to hide the ribbon for all the user:

#s4-ribbonrow, #suiteBar { display : none; }

3) Now we have to do…

View original post 59 more words

SLA in CRM 2015 – Part 1


There are two types of SLA available now.

Standard which was introduced in Leo and other is Enhanced.

Pause and resume features has been added to Enhanced SLA.

To enable this we need to go to Settings à Service Management à Service Configuration Settings

The pause feature is based on Status value.

In System Settings we can specify the status values on which the SLA should pause.

Let use create a new SLA

And the following SLA Item in it

SLA Item is based on First Response by KPI.

Here we can also see new Success Criteria and Success Action added to SLA.

The SLA would run if the Case Priority equals High and will wait for 5 minutes before warning and will fail after 30 minutes.

Now I go and create a new case and set its Priority as High.

The following Timer control would start running in the Case Form.

And now if I go and set the Status of Case as “Waiting for details” i.e. our pause condition.

The timer will be paused.

Now as soon as I change the Status of Case to something else

The time control will resume

Now I go and mark the case as Resolved which is our success criteria. The First response in will show Succeeded.

Hiding new item, edit, view selector from List View Web Part in SharePoint 2013


We had a requirement to hide the new item button, edit button etc. from a List View Web Part.

 

The way we achieved it was using a Content Editor Web Part and pointing it to Jscript File with the following CSS,

By finding the following id(s) and setting display as none.

List View with hidden controls.

Nishant Rana's Weblog

Everything related to Microsoft .NET Technology

Skip to content ↓