Extracting .currentCellRow fields from SAP to Excel

独自空忆成欢 提交于 2019-12-08 13:07:07

问题


I have been using vba with SAP for a while now and have never run into this particular issue.

Usually, when script recording in SAP, I click on a field and am left with some string of code with a .setfocus as the end. I replace this with .text in order to extract the data in that cell.

I have run into a menu that ends in .currentCellRow= # and thus if I change it, it loses its position and has no idea what field I am talking about.

Is there any way that I can adjust this to pull data from these fields?

Here is an example of a field I scripted

session.findById("wnd[0]/usr/cntlGRID1/shellcont/shell").currentCellRow = 4

回答1:


.getcellvalue(4,"name of column")

see too: https://answers.sap.com/questions/300278/reading-grid-cells-sap-gui-scripting-vbs.html

Regards, ScriptMan



来源:https://stackoverflow.com/questions/52010710/extracting-currentcellrow-fields-from-sap-to-excel

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!