Hey guys,
I've done many implementations regarding SAP via RFC in PHP.
One stranger problem that I have is that we've created a new CLIENT and I want to connect to it.
- I've created a brand new user with all the required parameters and authorizations, direct copy from the main client server
- I've changed the client number from 200 to 300
- PHP extension is installed and it's working with the client 200
- My credentials are 100% correct
- Everything seems to be okay until the next message
Warning: RFC Error Info : Group : 103 Key : RFC_ERROR_LOGON_FAILURE Message : Name or password is incorrect (repeat logon)
My configuration look like this
require_once("sap/saprfc.php"); $login = array ( "ASHOST" => "myIp", "SYSNR" => "00", "CLIENT" => "300", "USER" => "myUser", "PASSWD" => "myPass", "LANG" => "EN", "CODEPAGE" => "1100" );
Any suggestions regarding this weird problem ?
Thank you