LookupTable.ReadLookupTablesMultiLang Method

Gets multi-language custom field lookup tables and corresponding code masks.

Namespace:  WebSvcLookupTable
Assembly:  ProjectServerWebServices (in ProjectServerWebServices.dll)

Syntax

'Declaration
<SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/LookupTable/ReadLookupTablesMultiLang", RequestNamespace := "http://schemas.microsoft.com/office/project/server/webservices/LookupTable/",  _
    ResponseNamespace := "http://schemas.microsoft.com/office/project/server/webservices/LookupTable/",  _
    Use := SoapBindingUse.Literal, ParameterStyle := SoapParameterStyle.Wrapped)> _
Public Function ReadLookupTablesMultiLang ( _
    xmlFilter As String, _
    autoCheckOut As Boolean _
) As LookupTableMultiLangDataSet
'Usage
Dim instance As LookupTable
Dim xmlFilter As String
Dim autoCheckOut As Boolean
Dim returnValue As LookupTableMultiLangDataSet

returnValue = instance.ReadLookupTablesMultiLang(xmlFilter, _
    autoCheckOut)
[SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/LookupTable/ReadLookupTablesMultiLang", RequestNamespace = "http://schemas.microsoft.com/office/project/server/webservices/LookupTable/", 
    ResponseNamespace = "http://schemas.microsoft.com/office/project/server/webservices/LookupTable/", 
    Use = SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Wrapped)]
public LookupTableMultiLangDataSet ReadLookupTablesMultiLang(
    string xmlFilter,
    bool autoCheckOut
)

Parameters

  • autoCheckOut
    Type: System.Boolean
    If true, check out for making changes.

Return Value

Type: WebSvcLookupTable.LookupTableMultiLangDataSet

Remarks

The primary DataTable in a LookupTableMultiLangDataSet is the LookupTablesDataTable.

Note

The xmlFilter parameter works with the Criteria operators to filter rows only in the primary LookupTablesDataTable. For example, you cannot use filter with the ReadLookupTables method to filter rows in the LookupTableLanguagesDataTable. If you try to filter rows in a secondary DataTable, the PSI returns a FilterInvalid exception.

However, you can use the Fields.Add method to filter columns in the primary LookupTablesDataTable and the in secondary LookupTableLanguagesDataTable, LookupTableMaskStructuresDataTable, LookupTableMaskValuesDataTable, LookupTableStructuresDataTable, or LookupTableValuesDataTable.

Project Server Permissions

Permission

Description

LogOnToProjectServerFromProjectProfessional

Connect to the Project Server database from Project Professional. Global permission.

ManageEnterpriseCustomFields

Modify the definitions of Enterprise custom fields and lookup table values. Global permission.

See Also

Reference

LookupTable Class

LookupTable Members

WebSvcLookupTable Namespace

Other Resources

How to: Use a Filter Parameter with PSI Methods