Dynamic Variables Environment Variables

Master List: Idoc Script by Type 3-11 LkRefreshErrorsAllowed on page 10-66 LkRefreshErrorThreshold on page 10-67

3.2.5 Pop-Up Calendar Configuration Variables

The following variables are used to configure the Pop-Up Calendar application. These variables are set in the IntradocDirconfigconfig.cfg file. pucDefaultTime on page 10-103 pucEnableOnSearch on page 10-104 pucHideTimeInDateFields on page 10-105 pucUseMonthLocale on page 10-106 pucUseWeekdayLocale on page 10-107 pucXOffset on page 10-108 pucYOffset on page 10-109 pucZIndex on page 10-110

3.2.6 Record Manager and Retention Manager Configuration Variables

The following variables are used to configure the Record Manager and Retention Manager applications. These variables are set in the IntradocDirucmurmbinconfig.cfg file. AllowRetentionPeriodWithoutCutoff on page 10-3 AllowRetentionPeriodWithoutCutoff on page 10-3 dodSkipCatFolderRequirement on page 10-39 HideVitalReview on page 10-47 RecordsManagementDenyAuthorFreePassOnRMSecurity on page 10-112 RecordsManagementNumberOverwriteOnDelete on page 10-113 RmaAddDocWhereClauseForScreening on page 10-114 RmaAllowKeepOrDestroyMetadataOption on page 10-115 RmaEnableFilePlan on page 10-116 RmaEnableFixedClones on page 10-117 RmaEnablePostFilterOnScreening on page 10-118 RmaFilePlanVolumePrefix and RmaFilePlanVolumeSuffix on page 10-119 RmaFixedClonesTitleSuffix on page 10-120 RMAHideExternalFieldsFromCheckInUpdate on page 10-121 RMAHideExternalFieldsFromSearchInfo on page 10-122 RmaNotifyDispReviewerAndCatAuthor on page 10-123 RmaNotifyReviewerAndAlternateReviewer on page 10-124 ShowContentForStorageBrowse on page 10-160 SimpleProfilesEnabled on page 10-162 UieHideSearchCheckboxes on page 10-166

3.3 Dynamic Variables

A dynamic variable is evaluated on each occurrence of the variable. Thus, each time the variable is encountered the value is recalculated from code. In contrast, a value variable is evaluated once at the beginning of the service call and that value is used throughout the service call. See Section 3.9, Value Variables. Dynamic variables generally return a value such as a string or an integer. The following is a list of Idoc Script dynamic variables. AfterLogin on page 8-5 HttpIgnoreWebServerInternalPortNumber on page 6-81 3-12 Oracle Fusion Middleware Idoc Script Reference Guide

3.4 Environment Variables

Web server variables are the CGI environment variables that are set when the server executes the gateway program. In order to pass data about the information request from the server to the script, the server uses command-line arguments and environment variables. These environment variables can be used to output information to a log file or can be used within Idoc Script statements and as part of evaluations. For example, this Idoc Script statement evaluates whether the remote host address matches a specific string: if strEquals207.0.0.1,REMOTE_HOST This HTML and Idoc Script markup displays a list of web server environment information on the page: PHTTP_INTERNETUSER=HTTP_INTERNETUSERP PREMOTE_HOST=REMOTE_HOSTP PSCRIPT_NAME=SCRIPT_NAMEP The following is a list of web server variables. CONTENT_LENGTH on page 6-24 GATEWAY_INTERFACE on page 6-59 HTTP_ACCEPT on page 6-73 HTTP_ACCEPT_ENCODING on page 6-74 HTTP_ACCEPT_LANGUAGE on page 6-75 HTTP_COOKIE on page 6-76 HTTP_HOST on page 6-77 HTTP_INTERNETUSER on page 6-78 HTTP_REFERER on page 6-79 HTTP_USER_AGENT on page 6-80 PATH_INFO on page 6-189 PATH_INFO on page 6-189 QUERY_STRING on page 6-198 REMOTE_ADDR on page 6-203 REMOTE_HOST on page 6-204 REQUEST_METHOD on page 6-205 SCRIPT_NAME on page 6-219 SERVER_NAME on page 6-233 SERVER_PORT on page 6-234 SERVER_PROTOCOL on page 6-235 SERVER_SOFTWARE on page 6-236

3.5 Global Functions