NAME
Siebel::COM::Constants - export Siebel constants to use
SYNOPSIS
use Siebel::COM::Constants;
sub query {
my $self = shift;
my $cursor_type = shift; # optional parameter
$cursor_type = FORWARD_ONLY
unless ( defined($cursor_type) ); # default cursor type
$self->get_ole()->ExecuteQuery( $cursor_type, $self->get_return_code() );
$self->check_error();
}
DESCRIPTION
This module exports constants to be used by all other modules related to Siebel::COM.
EXPORT
The constants below are exported by default:
- Search mode functions
-
- FORWARD_ONLY
- FORWARD_BACKWARD
- View mode functions
-
- SALES_REP_VIEW
- MANAGER_VIEW
- PERSONAL_VIEW
- ALL_VIEW
- ORG_VIEW
- GROUP_VIEW
- CATALOG_VIEW
- SUB_ORG_VIEW
SEE ALSO
AUTHOR
Alceu Rodrigues de Freitas Junior, <arfreitas@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2012 of Alceu Rodrigues de Freitas Junior, <arfreitas@cpan.org<>
This file is part of Siebel COM project.
Siebel COM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Siebel COM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Siebel COM. If not, see <http://www.gnu.org/licenses/>.