Micro Focus QTP (UFT) Forums

Full Version: QTP 9.5 - Oracle DFF Form
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
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
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
Nice.