GetSessionFeatureLevel

Description

Gets the version number of the DevOps Plan application currently running on this machine.

Syntax

Perl


$session->GetSessionFeatureLevel(); 
Identifier
Description
session
The Session object that represents the current database-access session.
Return value
A Long containing the feature level.

The feature level is read-only.

Example

Perl


use CQPerlExt;

#Start a DevOps Plan session

$Session = CQSession::Build();



$Session->UserLogon("admin","","SAMPL","");



$level = $Session->GetSessionFeatureLevel();

print "Level:$level\n";

CQSession::Unbuild($Session);