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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Noob connection question

Status
Not open for further replies.

jnel

Programmer
Jan 18, 2007
6
0
0
US
Hey i'm new to actuate and clarity as well. I have created a report int eh actuate wizard that has a odbc connection and runs fine on the computer creating it. When I move it over to the clarity server however, it says login failed. The server has the same ODBC connections as my computer. Also when I look at the 'canned' reports .bas in actuate, all the odbc info just has a "datasource" and the username with "" which is followed by a "super-connect".

Class ODBCConnection Subclass Of AcODBCConnection

Sub SetProperties( )
Super::SetProperties( )
DataSource = "niku"
UserName = ""
End Sub

'----------------------------------------
' User-defined methods
'----------------------------------------

#Location "ODBCConnection%Connect"
Function Connect( ) As Boolean
Datasource = NikuSequential::Host_string
UserName = NikuSequential::User_name
Password = NikuSequential::pass_word
Connect = Super::Connect( )
End Function
#Pop

End Class

yet, when I configure the dobc set up in the actuate wizard it fills all of these fields in. PLEASE HELP and thank you
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top