|
|
|
|
SaaSAdminPricingEnableService (Function) In french: SaaSAdminActiveService Enables a service in a SaaS pricing. Remarks: - To use this function, a SaaS management session must have been started previously with SaaSAdminConnect.
- The use of this function is reserved to the SaaS administrator. A manager of client accounts cannot use this function.
S is dynamic saasSite P is dynamic saasPricing CRMService is dynamic saasService S = SaaSAdminFindSite("Forum") P = SaaSAdminFindPricing("Promo 2010", S) CRMService = SaaSAdminFindService("CRM", S) // The subscribers to the "2010 promo" pricing can now access the CRM section of Forum SaaSAdminPricingEnableService(P, CRMService)
Syntax
Enabling a service (via saasxxx variables) Hide the details
<Result> = SaaSAdminPricingEnableService(<Pricing> , <SaaS service>)
<Result>: Boolean - True if the activation was successfully performed,
- False otherwise. To get more details on the error, use ErrorInfo.
<Pricing>: saasPricing variable Name of saasPricing variable corresponding to the pricing to which a service is added. <SaaS service>: saasService variable Name of the saasService variable corresponding to the SaaS service that will be added to the list of services provided by the pricing.
Enabling a service identified by its name Hide the details
<Result> = SaaSAdminPricingEnableService(<Pricing> , <SaaS service> , <SaaS site>)
<Result>: Boolean - True if the activation was successfully performed,
- False otherwise. To get more details on the error, use ErrorInfo.
<Pricing>: Character string Name of the pricing to which a SaaS service is added. <SaaS service>: Character string Name of the SaaS service that will be added to the list of services provided by the pricing. <SaaS site>: Character string Name of SaaS site affected by the pricing and service. Remarks The service will be automatically made accessible to all subscribers to this pricing (and not only to new subscribers).
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|