? QA Design Gurus: Test and verify your testdb details stored in sytem tables

Sep 30, 2015

Test and verify your testdb details stored in sytem tables

You can find your test tables created using your test suite with the area name assigned to them using below ABL-


for each _Area, each _Storageobject
 where (_Storageobject._Area-number = _Area._Area-number),
 each _File
 where (_File._File-Number = _Storageobject._Object-number)
 and (_File._File-Number > 0)
 and (_StorageObject._Object-type eq 1)
 break by _File._File-name:
 display _File._File-name label "Table name" _Area._Area-name .
end. 


You can add a reference file for verification of table names and area name in your test as well.

No comments:

Post a Comment