About ProjectServer customized project center page_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:50:21
Original
1358 people have browsed it

Many customers cannot accept the ProjectServer interface. Users can display pages according to their own needs, but most domestic users like a certain style. I just want such a page, no personal customization.

The only way is to embed the webpart in the project center yourself, which has always been a problem for displaying projects based on logged-in user permissions.

After querying N data, find the corresponding SQL statement.


declare @PermUid UniqueIdentifier;
set @PermUid = 'a120a079-75bc-4f0f-b376-3fb0ae9ac940';
declare @ViewUid UniqueIdentifier;
set @ViewUid = '3524BB38 -C387-4D21-BCDC-CDBC33305AD8';
declare @ResUid UniqueIdentifier;
set @ResUid = '47390293-429A-4A7B-AE27-D004CA19DAAF';

select * from dbo.MSP_WEB_FN_SE C_GetAllProjectsResCanViewByViewID( @ResUid, @PermUid, @ViewUid, 3)

ViewUid Find [WSEC_OBJ_UID] according to [MSP_WEB_SECURITY_CATEGORY_OBJECTS] PermUid According to WSEC_FEA_ACT_UID of MSP_WEB_SECURITY_SP_CAT_PERMISSIONS Found.

I won’t introduce you where to find ResUid.

The test is as follows

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!