How to add user in administrator group of project server 2010 with powershell command ?

I want to add one user in Administrator group of Project Server .
Please let me know how to do this through power shell command.

Hello,
You would need to use the PSI in your PowerShell commands. Here is a .Net example to get you started, convert this to PowerShell:
http://blogs.msdn.com/b/ajjose/archive/2013/05/24/creating-a-project-server-user-and-adding-user-to-a-group-through-psi.aspx
Examples of PowerShell and the PSI can be found here in some of the scripts:
http://gallery.technet.microsoft.com/scriptcenter/Update-Server-Lookup-table-bb1ae14f
http://gallery.technet.microsoft.com/scriptcenter/Create-Server-2010-2013-19bd3cc7
http://gallery.technet.microsoft.com/scriptcenter/Bulk-create-Server-Sites-784f7b29
These wont do what you need but will give you an idea of using the PSI in PowerShell
Paul
Paul Mather | Twitter |
http://pwmather.wordpress.com | CPS

Similar Messages

  • How to add the Note board web part to a page with powershell

    Hi everyone,
    I've been looking around everywhere but haven't seen it explicitly mentioned. 
    Does anyone know how to add the Note Board web part to a Team Site page, e.g. Non-publishing site, Left Zone, First webpart in the zone in powershell?
    Examples like this one http://adicodes.com/adding-web-part-to-page-with-powershell/ only talk about custom web parts uploaded from a local drive.
    The example here looks good - http://spcrew.com/blogs/lists/posts/post.aspx?id=21 but is it for the Page Viewer Web Part. How would you go about getting the correct name for the note board web part and configuring it? 
    Many Thanks,
    Ashley
    function main(){
    [void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
    $url = "http://sp2010dev1/sites/test1"
    $OpenWeb = Get-SPWeb $url
    $OpenWeb
    $OpenSite = Get-SPSite $url
    $file = $OpenWeb.GetFile("http://sp2010dev1/sites/test1/SitePages/test1.aspx")
    $WebPartManager = $file.GetLimitedWebPartManager([System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared)
    Add-PageViewerWebPart "http://sp2010dev1/sites/test1" "http://sp2010dev1/sites/test1/SitePages/test1.aspx" "Body" 0 "SPCrew Site" "sp2010dev"
    $OpenWeb.Dispose()
    function Add-PageViewerWebPart($SiteURL, $pageUrl, $webpartzone, $index, $title, $content)
        $site = new-object Microsoft.SharePoint.SPSite($SiteURL)
        $web=$site.OpenWeb()
        $webpartmanager=$web.GetLimitedWebPartManager($pageUrl, [System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared)
        $webpart = new-object Microsoft.SharePoint.WebPartPages.PageViewerWebPart
        $webpart.ChromeType = [System.Web.UI.WebControls.WebParts.PartChromeType]::TitleOnly;
        $webpart.Title = $title
        $webpart.ContentLink = "http://www.spcrew.com";
        $webpartmanager.AddWebPart($webpart, $webpartzone, $index);    
        $web.Close()
        $site.Close()
    function Get-SPSite([string]$url) {
        New-Object Microsoft.SharePoint.SPSite($url)
    function Get-SPWeb([string]$url) {
        $SPSite = Get-SPSite $url
        return $SPSite.OpenWeb()
        $SPSite.Dispose()

    Hi,
    According to your post, my understanding is that you wanted to add the Note board web part to a page with PowerShell.
    The name of the Note Board web part is SocialCommentWebPart.
    I recommend to use the powershell code below:
    $pageUrl="http://sitename/SitePages/test.aspx"
    $SiteURL="http://sitename"
    $site = new-object Microsoft.SharePoint.SPSite($SiteURL)
    $web=$site.OpenWeb()
    $webpartmanager=$web.GetLimitedWebPartManager($pageUrl, [System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared)
    $webpart = new-object Microsoft.SharePoint.Portal.WebControls.SocialCommentWebPart
    $webpart.title="Note Board"
    $webpartmanager.AddWebPart($webpart, "MiddleZone", 0);
    $web.Close()
    Then the Note board web part will be added to the page.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • How to query Process Status from database in Project Server 2010

    Hello All,
    I am using Project Server 2010. 
    I need to query Process Status  from SQL. 
    where can I find Process Status in Database. 
    Thanks,
    Rohit

    Hi Rohit,
    you will not be able to find this information in reporting DB - the only database queries are supported.
    If you really want to go for an unsupported solution, you should be able to find related tables and how to join them in stored proc "MSP_WEB_SP_QRY_Statusing_ReadStatus" in published database.
    Regards
    Barbara
    To increase the value of this forum, please mark the replies that helped to solve your issue as answer. If you find answers to questions from other forum participants to be helpful, please mark them as helpful. Your participation will help others to find
    an appropriate solution faster. Thanks for your support!

  • How to add User Permissions to form created in InfoPath 2010 created for SharePoint document Library

    Hi,
    I created a form in InfoPath 2010 with three views (one for user input, the other two views to be used by supervisors) and published this to a SharePoint 2010 document library. Now the way this form is supposed to work is that when a User goes to the document
    library and adds a document, it is supposed to open the Form with the User's input view. When the User submits the document, only him/her should be able to open and possibly edit the the form. When the Immediate Supervisor opens the form, it should open in
    the Supervisors view and allow them to fill in only their section and not be able to edit or alter the user's data. When the Immediate Supervisor saves the document, the Over-all Supervisor should be able to open it in their view and not be able to edit or
    alter the sections filled out by the User and Immediate Supervisor.
    How would i go about completing this? I have the views created but now have the problem of associating these views with their respective users or groups.

    Hello,
    You need to first create user group in sharepoint site then add user in group according to their role. Later you need to call usergroup.asmx web service to get current logged-In user group name so you can switch view and also apply rule for editing or disabling
    controls in form.
    Follow this link to get group name:
    http://social.technet.microsoft.com/wiki/contents/articles/13271.sharepoint-2010-extracting-user-group-of-current-login-user-in-infopath-2010.aspx
    http://social.msdn.microsoft.com/Forums/en-US/018f5184-5c83-4a53-b66b-8c376fc800fc/how-to-get-current-users-sharepoint-group-name-sharepoint-2010-infopath-2010
    To apply rule on control:
    http://office.microsoft.com/en-in/infopath-help/add-rules-for-performing-other-actions-HA101783373.aspx
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Trying to add Admin account in project server 2010 via powershell

    Dear All
    Unfortunately some one removed admin account from PWA 2010 so i have tried to add admin account via powershell command
    New-SPProjectSiteAdministrator -AdminAccount "dir\santosh" -Url "https://myserver/PWA"
    New-SPProjectSiteAdministrator : <nativehr>0x80070005</nativehr><nativestack></nativestack> At line:1 char:31 + New-SPProjectSiteAdministrator <<<<  -AdminAccount "dir\santosh"
    -Url "https://myserver/PWA"     + CategoryInfo          : InvalidData: (Microsoft.Offic...ewAdministrator:PSCmdletNewAdministrator) [New-SPProjectSiteAdministrator], Unaut   
    horizedAccessException     + FullyQualifiedErrorId : Microsoft.Office.Project.Server.Cmdlet.PSCmdletNewAdministrator
    Getting above error
    Help me
    Regards
    Santhu

    Hello,
    Can't you log in with an account that is already in the Administrators group then add the new account? I think you will need to run the command with a user account that already has admin access to PWA - I don't currently have an environment to test this
    on.
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • OSD: How to add user account to group administrators

    I has a variable named "AdminAccount", I want to add "AdminAccount" to inbuilt administrators Group.
    How to do it? Script?
    Thanks in advance!

    Hi,
    Net add command should do it.
    What format do you have it in the variable?
    net localgroup administrators contoso\AdminAccount /add would do the trick just replace the either accountname or the domain\accountname and you should be fine.
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • Project Server 2010 - Error Adding/Modifying Users

    Thanks in advance for any help you can offer. We are running Project Server 2010 with SharePoint 2010 on Windows Server 2008. Project Server was installed successfully and a new site was created (server.com/pwa). When I attempt to add a new user (via Server
    Settings), or modify the existing account that was added on install, I receive an error on the top of the page. For a new user the following appears:
    0de01bb7-786e-4003-8fe8-6790fae42248 -1 2 false true 3 0 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 false false 0de01bb7-786e-4003-8fe8-6790fae42248 true false
    Once the new user info is entered, and I click "Save", the progress icon spins and nothing happens. No user is added.
    When I go to modify the existing user, I see this on the top of the page:
    •An error was encountered in loading the page. Refresh the page, or contact your server administrator if this problem persists.
    7342ea55-fad1-4a8b-9d7b-1450e468cd2f 1 2 false true 3 0 Admin. SP A DOMAIN\account true 2014-06-30T15:28:55.12-05:00 7342ea55-fad1-4a8b-9d7b-1450e468cd2f 7342ea55-fad1-4a8b-9d7b-1450e468cd2f false false 2014-06-30T10:34:09.95-05:00 2014-06-30T10:34:46.56-05:00
    2 2 10000.000000 false b6635b2e-e747-4771-a78b-24f7509629d0 7342ea55-fad1-4a8b-9d7b-1450e468cd2f DOMAIN\account true false Admin. SP 2 2014-07-01T08:07:42.343-05:00 7342ea55-fad1-4a8b-9d7b-1450e468cd2f 100
    Any ideas on how I can resolve this issue would be greatly appreciated.
    Thanks again!
    AJ

    Much appreciated kbwrecker.  Moving forward, I am developing a plan to deploy SharePoint/Project Server 2013.  So this will hopefully, if done right, alleviate these types of issues. 
    But, as the 2010 system will be in use for awhile, I am still curious as to what is causing my current PWA issues.  I also believe it is a permission issue.  The errors I added to my first post on this topic were not from the logs.  They only
    appear on the user/group webpage in PWA.  I don't see them elsewhere.
    Here are the complete ULS logs (using ULS Viewer) from my PWA add user attempt.  This is very long.  I apologize if this is more than is needed:
    07/10/2014 08:14:43.19    w3wp.exe (0x16A4)    0x1E34    SharePoint Foundation    Logging Correlation Data    xmnv    Medium    Name=Request
    (GET:https://sharepoint.company.com:443/pwa/_layouts/pwa/Admin/ManageUsers.aspx)    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.22    w3wp.exe (0x16A4)    0x1E34    SharePoint Foundation    Logging Correlation Data    xmnv    Medium    Site=/pwa  
     9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.23    w3wp.exe (0x16A4)    0x1E34    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.IPWA' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/SecurityCheckUserPagePermission' MessageId: 'urn:uuid:ea31a728-db44-4c90-9284-2b991597998d'  
     9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.24    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/SecurityCheckUserPagePermission' MessageId:
    'urn:uuid:ea31a728-db44-4c90-9284-2b991597998d'    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.24    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.24    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=1.77368911411925    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.28    w3wp.exe (0x16A4)    0x1E34    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.IPWA' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/ResourceReadResourceCount' MessageId: 'urn:uuid:42f18fb5-adcf-4847-9883-5f8e8bd0c2b5'  
     9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.28    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/ResourceReadResourceCount' MessageId: 'urn:uuid:42f18fb5-adcf-4847-9883-5f8e8bd0c2b5'  
     9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.28    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.29    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=4.15443862278586    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.30    w3wp.exe (0x16A4)    0x1E34    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.IPWA' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/ResourceReadUserListAll' MessageId: 'urn:uuid:5b83c471-7f9c-4fb6-bef1-861b2b6111fc'  
     9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.30    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/ResourceReadUserListAll' MessageId: 'urn:uuid:5b83c471-7f9c-4fb6-bef1-861b2b6111fc'  
     9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.30    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.31    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=3.72645126685095    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.37    w3wp.exe (0x16A4)    0x1E34    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Security.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.ISecurity' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Security/CheckUserGlobalPermission' MessageId:
    'urn:uuid:7787e7fe-44b3-4bb0-9a16-452ac7f8f62b'    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.38    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Security.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Security/CheckUserGlobalPermission' MessageId:
    'urn:uuid:7787e7fe-44b3-4bb0-9a16-452ac7f8f62b'    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.38    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.38    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=1.32977794663847    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.39    w3wp.exe (0x16A4)    0x1E34    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.IPWA' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/ResourceReadUserSummariesAll' MessageId: 'urn:uuid:844ec823-8987-42b2-bd60-e9d33e17ba89'  
     9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.40    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/ResourceReadUserSummariesAll' MessageId: 'urn:uuid:844ec823-8987-42b2-bd60-e9d33e17ba89'  
     9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.40    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.41    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=10.0093726996029    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.70    w3wp.exe (0x16A4)    0x1E34    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (Request (GET:https://sharepoint.company.com:443/pwa/_layouts/pwa/Admin/ManageUsers.aspx)). Execution Time=510.331620359571    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:44.13    w3wp.exe (0x1558)    0x15F4    Excel Services Application    Excel Calculation Services    8jg2    Medium    ResourceManager.PerformCleanup:
    Memory Manager: CurrentSize=528744448.    53fed7f1-cb9f-3737-0000-000050f7b00c
    07/10/2014 08:14:46.23    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (Request (GET:https://sharepoint.company.com:443/pwa/_layouts/PWA/Admin/AddModifyUser.aspx?returnLocation=0))    
    07/10/2014 08:14:46.23    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Logging Correlation Data    xmnv    Medium    Name=Request
    (GET:https://sharepoint.company.com:443/pwa/_layouts/PWA/Admin/AddModifyUser.aspx?returnLocation=0)    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.28    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Logging Correlation Data    xmnv    Medium    Site=/pwa  
     8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.31    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.IPWA' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/SecurityCheckUserPagePermission' MessageId: 'urn:uuid:0b0c9348-49aa-40fc-b5b8-409be0fb64ab'  
     8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.32    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/SecurityCheckUserPagePermission' MessageId:
    'urn:uuid:0b0c9348-49aa-40fc-b5b8-409be0fb64ab'    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.32    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.32    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=1.83626689984342    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.33    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Security.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.ISecurity' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Security/CheckUserGlobalPermission' MessageId:
    'urn:uuid:610e3e65-f190-4f09-9bd7-bdedc0294f06'    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.33    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Security.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Security/CheckUserGlobalPermission' MessageId:
    'urn:uuid:610e3e65-f190-4f09-9bd7-bdedc0294f06'    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.33    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.33    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=1.20350491473078    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.52    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Project.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.IProject' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Project/ReadServerListSeparator' MessageId: 'urn:uuid:79fd41f4-b21a-4c0e-b8ff-022a634722ea'  
     8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.71    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Project.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Project/ReadServerListSeparator' MessageId:
    'urn:uuid:79fd41f4-b21a-4c0e-b8ff-022a634722ea'    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.71    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.71    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=2.86349242711015    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.71    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Monitoring    b4ly    High    Leaving Monitored Scope
    (ExecuteWcfOperation:http://schemas.microsoft.com/office/project/server/webservices/Project/ReadServerListSeparator). Execution Time=192.754107016395    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.86    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Admin.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.IAdmin' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Admin/GetServerCurrency' MessageId: 'urn:uuid:05bc1abb-b84f-4624-a8c8-97ff5fec5128'  
     8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.86    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Admin.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Admin/GetServerCurrency' MessageId: 'urn:uuid:05bc1abb-b84f-4624-a8c8-97ff5fec5128'  
     8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.86    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.87    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=2.57434953325073    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:48.27    w3wp.exe (0x1558)    0x1A14    Excel Services Application    Excel Calculation Services    8jg2    Medium    ResourceManager.PerformCleanup:
    Disk Manager: CurrentSize=170852.    11c5f189-cb9f-3737-0000-000050f7b00c
    07/10/2014 08:14:48.58    w3wp.exe (0x16A4)    0x0A8C    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/3134a6073a474d49a4f6c790255e5237/MetadataWebService.svc' Channel: 'Microsoft.SharePoint.Taxonomy.IMetadataWebServiceApplication' Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges' MessageId:
    'urn:uuid:974be790-09cc-4c85-ba78-002750c5e866'    
    07/10/2014 08:14:48.58    w3wp.exe (0x1558)    0x2094    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/3134a6073a474d49a4f6c790255e5237/MetadataWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges' MessageId: 'urn:uuid:974be790-09cc-4c85-ba78-002750c5e866'  
     3494407d-8a15-4988-9a00-e82b6bd1c016
    07/10/2014 08:14:48.58    w3wp.exe (0x1558)    0x2094    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    3494407d-8a15-4988-9a00-e82b6bd1c016
    07/10/2014 08:14:48.58    w3wp.exe (0x1558)    0x2094    SharePoint Server    Taxonomy    fuc5    Medium    MetadataWebServiceApplication.GetChanges
    called on 'Managed Metadata Service' starting.    3494407d-8a15-4988-9a00-e82b6bd1c016
    07/10/2014 08:14:48.58    w3wp.exe (0x1558)    0x2094    SharePoint Server    Taxonomy    fuc6    Medium    MetadataWebServiceApplication.GetChanges
    called on 'Managed Metadata Service' completed.    3494407d-8a15-4988-9a00-e82b6bd1c016
    07/10/2014 08:14:48.58    w3wp.exe (0x1558)    0x2094    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=1.98935898277574    3494407d-8a15-4988-9a00-e82b6bd1c016
    07/10/2014 08:14:49.14    w3wp.exe (0x1558)    0x15F4    Excel Services Application    Excel Calculation Services    8jg2    Medium    ResourceManager.PerformCleanup:
    Memory Manager: CurrentSize=529596416.    53fed7f1-cb9f-3737-0000-000050f7b00c
    07/10/2014 08:14:49.19    w3wp.exe (0x0A64)    0x08B0    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest:
    RemoteAddress: 'http://spserver:32843/3134a6073a474d49a4f6c790255e5237/MetadataWebService.svc' Channel: 'Microsoft.SharePoint.Taxonomy.IMetadataWebServiceApplication' Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges'
    MessageId: 'urn:uuid:08359816-04b3-4d2c-b5ac-486aa21dbd2b'    
    07/10/2014 08:14:49.20    w3wp.exe (0x1558)    0x2094    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/3134a6073a474d49a4f6c790255e5237/MetadataWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges' MessageId: 'urn:uuid:08359816-04b3-4d2c-b5ac-486aa21dbd2b'  
     8afd4f08-409a-4728-bdee-140f948f7ae3
    07/10/2014 08:14:49.20    w3wp.exe (0x1558)    0x2094    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    8afd4f08-409a-4728-bdee-140f948f7ae3
    07/10/2014 08:14:49.20    w3wp.exe (0x1558)    0x2094    SharePoint Server    Taxonomy    fuc5    Medium    MetadataWebServiceApplication.GetChanges
    called on 'Managed Metadata Service' starting.    8afd4f08-409a-4728-bdee-140f948f7ae3
    07/10/2014 08:14:49.20    w3wp.exe (0x1558)    0x2094    SharePoint Server    Taxonomy    fuc6    Medium    MetadataWebServiceApplication.GetChanges
    called on 'Managed Metadata Service' completed.    8afd4f08-409a-4728-bdee-140f948f7ae3
    07/10/2014 08:14:49.20    w3wp.exe (0x1558)    0x2094    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=1.07806997816762    8afd4f08-409a-4728-bdee-140f948f7ae3
    07/10/2014 08:14:50.89    OWSTIMER.EXE (0x1734)    0x0580    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (Timer Job Search Health Monitoring - Trace Events)    c9d438fc-b6a3-499f-9709-8566b62cb5e0
    07/10/2014 08:14:50.89    OWSTIMER.EXE (0x1734)    0x0580    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (Timer Job Search Health Monitoring - Trace Events). Execution Time=4.99169587196138    c9d438fc-b6a3-499f-9709-8566b62cb5e0
    07/10/2014 08:14:51.10    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/CustomFields.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.ICustomFields' Action: 'http://schemas.microsoft.com/office/project/server/webservices/CustomFields/ReadCustomFieldsByEntity'
    MessageId: 'urn:uuid:4de9e73a-ad47-4bab-891e-bd52c7d1446b'    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.22    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/CustomFields.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/CustomFields/ReadCustomFieldsByEntity'
    MessageId: 'urn:uuid:4de9e73a-ad47-4bab-891e-bd52c7d1446b'    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.22    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.22    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=3.70745443904183    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.23    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Monitoring    b4ly    High    Leaving Monitored Scope
    (ExecuteWcfOperation:http://schemas.microsoft.com/office/project/server/webservices/CustomFields/ReadCustomFieldsByEntity). Execution Time=120.598847060171    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.32    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/LookupTable.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.ILookupTable' Action: 'http://schemas.microsoft.com/office/project/server/webservices/LookupTable/ReadLookupTablesByUids' MessageId:
    'urn:uuid:b196f29b-6c62-48a4-921d-90bf91d78653'    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.43    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/LookupTable.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/LookupTable/ReadLookupTablesByUids' MessageId:
    'urn:uuid:b196f29b-6c62-48a4-921d-90bf91d78653'    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.43    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.44    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=17.8209800407594    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.44    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Monitoring    b4ly    High    Leaving Monitored Scope
    (ExecuteWcfOperation:http://schemas.microsoft.com/office/project/server/webservices/LookupTable/ReadLookupTablesByUids). Execution Time=128.768041748323    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.60    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Calendar.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.ICalendar' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Calendar/ListCalendars' MessageId: 'urn:uuid:4f766fee-c7d6-4a41-9a4a-cfd785f9fd81'  
     8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.70    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Calendar.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Calendar/ListCalendars' MessageId: 'urn:uuid:4f766fee-c7d6-4a41-9a4a-cfd785f9fd81'  
     8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.70    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.70    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=3.05206387962716    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26

  • How to add users from person or group field in a sharepoint list to sharepoint group

    Hi,
    How to add users(single or multiple) from person or group field in a sharepoint list to sharepoint group programmatically?
    Any suggestions would be appreciated.
    Thank you,
    AA.

    Hello,
    Use SPGroup.AddUser() method to add user in group. I have just written sample code in notepad so it is not tested:
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using(SPSite Site = new SPSite(SPContext.Current.Site.Url))
    Using(SPWeb Web = Site.OpenWeb())
    SPList list = web.Lists["ListName"];
    SPQuery query=new SPQuery ();
    query.Query = "<Where><Eq><FieldRef Name='Title' /><Value Type='Text'>Test</Value></Eq></Where>";
    SPListItemCollection items = list.GetItems(query);
    if(items.Count > 0)
    foreach(SPListItem item in items)
    //Get USers from person or group column
    SPFieldUser userField = (SPFieldUser)item.Fields.GetField("Users");
    SPFieldUserValueCollection userFieldValueCollection = (SPFieldUserValueCollection)userField.GetFieldValue(item["Users"].ToString());
    SPGroup spGroup = spSite.RootWeb.Groups[groupName];//group name
    if (users.Count != 0)
    bool isUserInGroup = false;
    foreach (SPFieldUserValue user in users)
    foreach (SPUser item in spGroup.Users)
    string itemUserName = item.LoginName;
    string UserName = user.User.LoginName;
    if (itemUserName == UserName)
    isUserInGroup = true;
    break;
    if (!isUserInGroup)
    spGroup.AddUser(user.User);
    The above code will query list item and then get users from "Users" column. Now it will check whetehr user is already in group not, if not then add user in group.
    http://rajanijilla.blogspot.sg/2012/09/add-users-to-group-programmatically.html
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to add users to group which is present in another AD domain?

    Hi,
    Using JNDI how to add user as a member of group which is present in another AD domain?
    For example: In AD forest test.com their are two domain a.test.com and b.test.com. Group is present in a.test.com and I want to add user present in b.test.com as a member of the group.
    Any pointer around this would be great help.

    See the below link to get an idea on group types.
    http://technet.microsoft.com/en-us/library/cc755692(v=ws.10).aspx
    If the group is a universal group, you can just add members similar to local group even if user and group are in different domains. That is by setting the member attribute of the group.

  • Can I add Users and/or Groups?

    Hi,
    Can I add Users and/or Groups in a Realm from my webapplication?
    (not using administrative console....but from my code)
    Tanks by
    Angelo.

    Yes.
    "Angelo" <[email protected]> wrote:
    >
    Hi,
    Can I add Users and/or Groups in a Realm from my webapplication?
    (not using administrative console....but from my code)
    Tanks by
    Angelo.

  • How to add user defined tab in the Header level of T-Code O4NM?

    How to add user defined tab in the Header level of  T-Code O4NM?
    I tried with BADI but I cant able to find any BADI for it and also searched for screen exit too..

    Can you check the user exits,
    OIJNOM_N and OIJTKT_N
    Cheers,
    Balaji

  • Cannot Add user to CMC Group when they are a member of LDAP group

    On PreProduction Server CMC
    Softerra LDAP browser used to verify user is a member of LDAP group
    User does not show as a member of that group in the CMC
    Cannot add user to LDAP group showing in CMC, the same group shows the member in LDAP browser
    On Production Server CMC
    For kicks I logged into the CMC on Production and I found the user is correctly showing as a member of the Group
    Why doesn't the groups in CMC show what is actually showing in the LDAP browser?

    Hi,
    Check if you have also mapped in both servers the same groups. It might be that there are some groups missing in the Pre-prod.
    Also, try restarting the CMS. I have seen similar issues that are solved after forcing the recreation of the graph.
    If after the restart you still can't see the groups, check the mapping on the LDAP server. It might be that both servers do not use the same attribute mappings.
    Regards,
    Julian

  • Not able to Add users to Secutity Groups in ADS

    Hi all,
    I am successfully able to create the user in ADS in OU & users. I am not able to add them to the any group which is ADS. can any body help me out? it is much appreciated.
    Sriram

    AD gropus are managed by Windows Ad teams. You cannot add users to Ad group from CMC directly.
    Ask your windows team to add users to particular AD group and then update the Windows Ad authenctication from CMC to reflect in BO

  • Add user in OID group from SOA Suite

    Hello All,
    I want to add users in OID groups from a SOA application (BPEL process), is there any way to achieve this?
    Thanks

    It has the functions to add: Use this function from Group class.
    addUniquemember
    public void addUniquemember(javax.naming.directory.DirContext ctx, java.lang.String dn) throws UtilException
    Adds the DN as a uniquemember of this group
    Parameters:
    ctx - a valid DirContext
    dn - the DN representing the object to be added
    Reference Links:-
    LDAPGroup (Oracle Internet Directory API Reference)
    Group (Oracle Internet Directory API Reference)

  • How to add users to OSM using UserAdmin.xsd

    Hi,
    Can you please explain me how to add users to OSM using UserAdmin.xsd i.e xml import/export tool. I need the steps how to do that..
    Thanks in Advance,
    Menaka

    Hi Razvi444,
    You need to use submit data to web service in Submit button rule,where you can use above web service.
    Refer http://office.microsoft.com/en-in/infopath-help/submit-form-data-to-a-web-service-HA010107048.aspx more details
    Thanks

Maybe you are looking for

  • PC calendar Programs that can sync to BB

    Can anyone tell me what PC calendar programs are available that will sync to BB besides Outlook?  Does BB Desktop Manager have a calender built in?  If so I can't find it.  If not, why not? Thanks...totally frustrated with my new Curve.

  • How can i impliment on a B1 screen?

    Hi,   Using this article (Associate a Crystal Report to your own form), i implimented the code in custom screens... but how can i impliment this on a B1 screen? Please help me. Thanks Prasanth

  • Wwsso_api_user_admin.reset_password

    Hi, I need to use the wwsso_api_user_admin.reset_password function to reset a user's password to a chosen new password. But I am unable to execute it from the browser like I was able to execute a similar procedure called wwsso_app_account.reset_passw

  • Validate form field for CE 7.1 SP3

    Hi Experts I want to validate the form field and I follow the example of the SimpleError Form sample: public void checkMandatory(java.lang.String fieldName) { //@@begin checkMandatory() IWDMessageManager messageMgr = wdComponentAPI.getMessageManager(

  • Tocde description change

    HI, Tcode MB58 how to change description of check box Customer consignment to EXHIBITION/TRIAL GOODS Pl suggest