sagarphirke Posted March 19, 2015 Share Posted March 19, 2015 Hi; I need a help in executing 1 SAP transaction. I am reading a XLS file & passing that value to SAP Transaction. Here I am using the _SAPObjValueSet with variable ; but it seems to fail. For $i = 1 To $rows ;Loop Local $sCellValue = _ExcelReadCell($oexcel, $i, 1) _SAPObjValueSet("usr/txtTERMSCHL-LOW","$sCellValue") _SAPObjValueSet("usr/ctxtABRDATV", "01.01.2001") _SAPObjValueSet("usr/ctxtABRDATB", "31.12.2020") _SAPVKeysSend("F8") Next Can any one help me please ? Link to comment Share on other sites More sharing options...
FireFox Posted March 20, 2015 Share Posted March 20, 2015 Hi, I'm not familiar with this UDF, but I know that autoit doesn't support string interpolation. Just pass the variable directly instead of enclosing it with quotes. _SAPObjValueSet("usr/txtTERMSCHL-LOW", $sCellValue) Br, FireFox. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now