|
|
|
|
SaaSAdminPricingDisableService (Function) In french: SaaSAdminDésactiveService Disables 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) // Disables the CRM service for the subscribers of "Promo 2010" SaaSAdminPricingDisableService(P, CRMService)
Syntax
Disabling a service (via saasxxx variables) Hide the details
<Result> = SaaSAdminPricingDisableService(<Pricing> , <Department>)
<Result>: Boolean - True if the disable operation was performed,
- False otherwise. To get more details on the error, use ErrorInfo.
<Pricing>: saasPricing variable Name of the saasPricing variable corresponding to the pricing to use. The service will be removed from this pricing. <Department>: saasService variable Name of saasService variable identifying the service that will be removed from the list of services supplied by the pricing.
Disabling a service identified by its name Hide the details
<Result> = SaaSAdminPricingDisableService(<Pricing> , <Department> , <SaaS site>)
<Result>: Boolean - True if the disable operation was performed,
- False otherwise. To get more details on the error, use ErrorInfo.
<Pricing>: Character string Name of pricing. The service will have to be removed from this pricing. <Department>: Character string Name of service that will be removed from the list of services supplied by the pricing. <SaaS site>: Character string Name of SaaS site affected by the pricing and service. Remarks The service will automatically become unavailable to all subscribers to this pricing.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|