GETTOKENSBYRANGEDATE
Get the token array between the specific dates applied on CREATION_DATE
or LAST_ACCESS_DATE
, indicated by "COLUMNIDENTIFIER" from the token vault.
Import Parameters
STARTDATE - A valid calendar date starting from which the tokens are required.
ENDDATE - A valid calendar date till which the tokens are required.
COLUMNIDENTIFIER - The particular column which is required as a criterion for searching tokens. Valid value can be either creation date (100) or last accessed date (101).
From the common parameters, refer to the source code below for exact parameters.
Table Parameters
- TOKEN - An array of tokens created between a specified date range (Output parameter).
Source Code
FUNCTION GETTOKENSBYRANGEDATE.
*"----------------------------------------------------------------------
*"*"Local Interface:
*" IMPORTING
*" VALUE(NAEUSER) TYPE STRING
*" VALUE(NAEPASSWORD) TYPE STRING
*" VALUE(DBUSER) TYPE STRING
*" VALUE(DBPASSWORD) TYPE STRING
*" VALUE(TABLENAME) TYPE STRING
*" VALUE(STARTDATE) TYPE STRING
*" VALUE(ENDDATE) TYPE STRING
*" VALUE(CUSTOMDATA) TYPE STRING
*" VALUE(COLUMNIDENTIFIER) TYPE INTEGER
*" TABLES
*" TOKEN STRUCTURE ZSTR_STRUCTURE
*"----------------------------------------------------------------------
ENDFUNCTION.