Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CMAS Report Different Language

Status
Not open for further replies.

Paolo2308

Technical User
Jan 17, 2011
4
IT
How do I develop a CMS script (ACSAUTO) with language result in different operating system.
For example, if Windows Server is in English I get the result of the report in Italian?
Thanks

'LANGUAGE=ITA
'SERVERNAME=XXX.XXX.XXX.XXX
Public Sub Main()
On Error Resume Next

cvsSrv.Reports.ACD = 1
Set Info = cvsSrv.Reports.Reports("Historical\CMS custom\Multi_Skill")

If Info Is Nothing Then
If cvsSrv.Interactive Then
MsgBox "Il rapporto Historical\CMS custom\Multi_Skill non esiste sull'ACD 1.", vbCritical Or vbOKOnly, "Avaya CMS Supervisor"
Else
Set Log = CreateObject("ACSERR.cvsLog")
Log.AutoLogWrite "Il rapporto Historical\CMS custom\Multi_Skill non esiste sull'ACD 1."
Set Log = Nothing
End If
Else

b = cvsSrv.Reports.CreateReport(Info,Rep)
If b Then

Rep.Window.Top = -60
Rep.Window.Left = -60
Rep.Window.Width = 15480
Rep.Window.Height = 11190



Rep.SetProperty "Split(s)/Skill(s)","42;72"

Rep.SetProperty "Date(s)","09/01/2011"

b = Rep.PrintReport
Rep.Quit
If Not cvsSrv.Interactive Then cvsSrv.ActiveTasks.Remove Rep.TaskID
Set Rep = Nothing
End If

End If
Set Info = Nothing

End Sub
 
I don't think you have posted in the right place, this forum is for Avaya IP Office, which doesn't use CMS :)

ACSS (SME)
APSS (SME)


"I'm just off to Hartlepool to buy some exploding trousers
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top