Jump to content

Help needed in SAP UDF _SAPObjValueSet


Recommended Posts

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

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...