Scenario Access Data Extract - Based on User
- 1 Minute to read
- Print
- DarkLight
- PDF
Scenario Access Data Extract - Based on User
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
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>test1a1@ha.com</ns:userLogin>
<ns:loginName>anilvkbabu@planful.com</ns:loginName>
<ns:password>testUser123#</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>
Was this article helpful?