Syntax
string[] GetBudgetScenariosAccessibleToUser(string userLogin, string loginName, string password, string TenantCode)Usage
This API extracts existing scenario access data stored in Planful. Existing data is required to compare with source data to locate change records.
This API extracts a list of scenarios that are accessible to the user.
Sample
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.Planful.com/API/SOAP/StateFree/Common/2009/03/19">
<soapenv:Header/>
<soapenv:Body>
<ns:GetBudgetScenariosAccessibleToUser>
<ns:userLogin>benbrandley@planful.com</ns:userLogin>
<ns:loginName>benparker@planful.com</ns:loginName>
<ns:password>password</ns:password>
<ns:TenantCode>TESTCPMTENANTBASEQA</ns:TenantCode>
</ns:GetBudgetScenariosAccessibleToUser>
</soapenv:Body>
</soapenv:Envelope>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetBudgetScenariosAccessibleToUserResponse xmlns="http://www.Planful.com/API/SOAP/StateFree/Common/2009/03/19">
<GetBudgetScenariosAccessibleToUserResult>
<string>Budget 2009</string>
<string>Budget 2010</string>
</GetBudgetScenariosAccessibleToUserResult>
</GetBudgetScenariosAccessibleToUserResponse>
</soap:Body>
</soap:Envelope>