$ImgInf: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
(Automatically generated page update)
Line 48: Line 48:
<li>[[Janus Web Server]]</li>
<li>[[Janus Web Server]]</li>
<li>[[Japanese functions]]</li>
<li>[[Japanese functions]]</li>
<li>[[Sir2000 Field Migration Facility]]</li>
<li>[http://m204wiki.rocketsoftware.com/images/4/4b/SirfieldNew.pdf Sir2000 Field Migration Facility]</li>
</ul>
</ul>
<p>.</p>
<p>.</p>


[[Category:$Functions|$ImgInf]]
[[Category:$Functions|$ImgInf]]

Revision as of 17:24, 13 September 2013

Retrieve image item by variable name

Note: Most Sirius $functions have been deprecated in favor of Object Oriented methods. There is no OO equivalent for the $ImgInf function.

This function returns a string containing the current value of a specified image item. All errors cause request cancellation.

The $ImgInf function accepts two arguments and returns a string result.

The first argument is either a string that contains an image name or any image item in the source image. If an image item is specified, only the image portion is relevant for this function since the second argument indicates the actual item from which data is to be extracted. Nevertheless, it is more efficient to specify an image item rather than an image name unless the image name itself is to be variable at run time. This is because an image name must be hashed and then NTBL must be searched for the hash value, both moderately expensive operations.

The second argument is a string that contains the name of the image item from which the value is to be retrieved.

Syntax

%result = $ImgInf(image_identifier, item_name)

%result is a string that contains the value of the image item specified by item_name in the image specified by image_identifier.

Usage notes

$ImgInf is provided to get around the fact that Model 204 has no support for image name variables in the way it has support for screen name variables. That is, if the image or image item from which data is to be extracted is unknown at compile time, $ImgInf can be used to retrieve the image data based on values set at evaluation time.

Example

%name = $ImgInf(%rectype, 'NAME')

extracts the value of an image item called "NAME" from the image associated with the variable %RECTYPE.

%data = $ImgInf(%BIGIMG:ID, %field)

extracts the value of an image item whose name is indicated by %FIELD from the image BIGIMG.

Obviously, if both image and item name are known at evaluation time a simple assignment should be performed as in

%data = %bigimg:CUSTID

Products authorizing $ImgInf

.