cancel
Showing results for 
Search instead for 
Did you mean: 

no content in chkRC29P-STLKZ[7,0] when reading CS01 BOM table

0 Kudos

I'm using SAP GUI VBS script for reading CS01 BOM table. Other commands are working fine, but if I'm using the following command "session.findById("wnd[0]/usr/tabsTS_ITOV/tabpTCMA/ssubSUBPAGE:SAPLCSDI:0152/tblSAPLCSDITCMAT/chkRC29P-STLKZ[7,0]").text" to read entries in column "Indicator: assembly" then I get no value while the line is one time ticked and one time not ticked. What can I do to get a value, if the field is ticked?

Accepted Solutions (0)

Answers (1)

Answers (1)

Hello again,

Meanwhile I found the answer in the blog "Read check boxes and radio buttons from display Transaction".

I just have to change from

session.findById("wnd[0]/usr/tabsTS_ITOV/tabpTCMA/ssubSUBPAGE:SAPLCSDI:0152/tblSAPLCSDITCMAT/chkRC29P-STLKZ[7,0]").text

to

session.findById("wnd[0]/usr/tabsTS_ITOV/tabpTCMA/ssubSUBPAGE:SAPLCSDI:0152/tblSAPLCSDITCMAT/chkRC29P-STLKZ[7,0]").selected

thanks & kind regards

Marco