Micro Focus QTP (UFT) Forums
QTP 9.5 - Oracle DFF Form - 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 Beginners (https://www.learnqtp.com/forums/Forum-UFT-QTP-Beginners)
+--- Thread: QTP 9.5 - Oracle DFF Form (/Thread-QTP-9-5-Oracle-DFF-Form)



QTP 9.5 - Oracle DFF Form - Prashant - 03-05-2008

Hi ,
I am using QTP 9.5 to load some data in Oracle applications.The form in which I am trying to load the data has a DFF form. While recording I click/tab on the DFF the DFF window opens up. But while running the recording the QTP is hangs and stops at the text field just before DFF form. The DFF form does not open if the text field just before the DFF does not have any value.
If I put any value in the penultimate field then it runs fine and opens the DFF form. As soon as I remove the data from the penultimate text field QTP stops and is not able to open the DFF form.

Has any one come across such senario and can help me with this.

Thanks
Prashant


RE: QTP 9.5 - Oracle DFF Form - Ankur - 03-11-2008

Interesting...have not come across such issue... as you said, you can probably do a workaround...fill the text field..open DFF and then delete the text field


RE: QTP 9.5 - Oracle DFF Form - Prashant - 03-11-2008

Hi,

I found the solution.I had to force the DFF from to open up.Added the middle line in my code.

Code:
OracleFormWindow("Specification Elements").OracleTabbedRegion("Reasonable Range").OracleTable("Q_SPEC_CHARS").EnterField 1,"Higher Reasonable Limit",""
'------------------------------------------------------------------
OracleFormWindow("Specification Elements").OracleTabbedRegion("Reasonable Range").OracleTable("Q_SPEC_CHARS").InvokeSoftkey "NEXT FIELD"
'----------------------------------------------------------------
OracleFlexWindow("Specification Elements").OracleTextField("UOM").Enter "PCT"

Thanks
Prashant


RE: QTP 9.5 - Oracle DFF Form - Ankur - 03-11-2008

Nice.