Summary
In some cases it may be desired to remove Test Resource types "Monitor Over Firewall" and "Monitor Profile" . These are added to a project when a LoadRunner Scenario is saved to an ALM project
Question
In some cases it may be desired to remove Test Resource types "Monitor Over Firewall" and "Monitor Profile" . These are added to a project when a LoadRunner Scenario is saved to an ALM project
Answer
- Perform a full back of the project db/schema and file repository
- Login to the project in question
- Go to the Test Plan
- Switch to Grid View
- Filter by the ‘Type’ field, specifying a value of “LR-SCENARIO”, only scenarios should be visible
- Delete all “LR-SCENARIO” test types from the Test Plan. This will also delete instances and runs for the scenario(s)
- At the database directly, open a tool and issue the following query to the project db/schema…
delete from ENTITY_SUBTYPES where EST_ID in ('Monitor Over Firewall','Monitor Profile')
delete from ENTITY_SUBTYPE_FIELDS where ESTF_SUBTYPE_ID in ('Monitor Over Firewall','Monitor Profile');
update SEQUENCES set SQ_SEQ_VALUE=SQ_SEQ_VALUE+1 where SQ_SEQ_NAME='ENTITY_SUBTYPE_REL_VERSION';
(if using oracle be sure to commit changes or use the line: commit;
- Restart the ALM service - because the values changed at the database are cached at ALM it is necessary to restart the ALM service
- Login to the project, the resource types "Monitor Over Firewall" and "Monitor Profile" will be gone.