![]() |
Bad Length Error on Setting values in SAPGUIEdit - Printable Version +- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums) +-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP) +--- Forum: UFT / QTP Others (https://www.learnqtp.com/forums/Forum-UFT-QTP-Others) +--- Thread: Bad Length Error on Setting values in SAPGUIEdit (/Thread-Bad-Length-Error-on-Setting-values-in-SAPGUIEdit) |
Bad Length Error on Setting values in SAPGUIEdit - Ankesh - 02-03-2012 Hi All, This is very common issue with SAP. There are few fields in SAP which throws 'Bad Length' error on setting values into it during run time(using Script). However you will be able to set the values manually. The problem is with the length assigned to such field during run session. The field length is usually smaller ,say 4, at runtime. So if you are trying to set a value of length more than 4, you will get this error. I figured out a way of doing with using the below undocumented method. Code: SAPGuiSession("Session").SAPGuiWindow("Display Order").SAPGuiEdit("<FieldName>").Object.text="<Your Text>" The above code worked fine for me. Hope this will help few of you. ![]() Regards, Ankesh RE: Bad Length Error on Setting values in SAPGUIEdit - manishk - 12-24-2014 How to deal with a scenario where input value is getting fetched from Excel sheet instead of hard-coding it in the code? |