$FunImg: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
m (misc cleanup)
 
(5 intermediate revisions by 3 users not shown)
Line 2: Line 2:
<span class="pageSubtitle">Retrieve data from active Fast/Unload request into image</span>
<span class="pageSubtitle">Retrieve data from active Fast/Unload request into image</span>


This retrieves data from an active ''[[Fast/Unload]]'' request into an image.  
This retrieves data from an active <var class="product">[[Fast/Unload]]</var> request into an image.  


The first argument is the request identifier returned by [[$FunLoad]] for the request from which data is to be retrieved. This is a required argument.  
The first argument is the request identifier returned by <var>[[$FunLoad]]</var> for the request from which data is to be retrieved. This is a required argument.
 
The second argument is the image item to which data is to be returned. Data is returned starting at that image item and continuing to the end of the image or until no more <var class="product">Fast/Unload</var> data is available in the current record.


The second argument is the image item to which data is to be returned. Data is returned starting at that image item and continuing to the end of the image or until no more ''[[Fast/Unload]]'' data is available in the current record.
==Syntax==
==Syntax==
<p class="syntax"><span class="term">%result</span> = $FunImg(req_num, image_item)
<p class="syntax"><span class="term">%result</span> = <span class="literal">$FunImg</span>(<span class="term">req_num</span>, <span class="term">image_item</span>)
</p>
</p>
<p>
<p>
</p>
<var class="term">%result</var> is set to either of these: </p>
<p>%result is set either to the number of bytes returned, or to an error code if no data was returned.</p>
<ul>
<p class="code">  
<li>The number of bytes returned </li>
  >0 - Number of bytes in unloaded record
 
  0 - &amp;FUNL completed with return code 0; no more data
<li>An error code if no data was returned:
  -1 - Request not found
<p class="code"> >0 - Number of bytes in unloaded record
  -2 - Invalid image item
  0 &mdash; <var class="product">Fast/Unload</var> completed with return code 0; no more data
<-2 - &amp;FUNL completed with non-zero return code, value
-1 &mdash; Request not found
returned is negative of return code; no more data
-2 &mdash; Invalid image item
</p>
<-2 &mdash; <var class="product">Fast/Unload</var> completed with non-zero return code, and value returned
<p class="caption">$FunImg Error Codes
      is negative of return code; no more data </p></li>
</p>
</ul>


If ''[[Fast/Unload]]'' has not unloaded any records yet, <var>$FunImg</var> will wait for the first record. Each invocation of <var>$FunImg</var> skips over the record processed so that the next invocation will retrieve the next unloaded record.  
==Usage notes==
<ul>
<li>If <var class="product">Fast/Unload</var> has not unloaded any records yet, <var>$FunImg</var> waits for the first record. Each invocation of <var>$FunImg</var> skips over the record processed, so the next invocation retrieves the next unloaded record. </li>


$FunImg's can be mixed with [[$FunSkip]] and [[$FunsStr]] calls for the same request. In addition, multiple unloads can be performed simultaneously with <var>$FunImg</var> calls for the different requests mixed freely.  
<li><var>$FunImg</var> calls can be mixed with <var>[[$FunSkip]]</var> and <var>[[$FunsStr]]</var> calls for the same request. In addition, multiple unloads can be performed simultaneously with <var>$FunImg</var> calls for the different requests mixed freely. </li>
</ul>


For example
==Example==
<p class="code">  
This fragment starts an unload request and then returns the first record into image <code>IMAGE</code>, starting at item <code>ITEM</code> in the image:
%REQ = $FunLoad('DATA', , , '*')
<p class="code">%req = $FunLoad('DATA', , , '*')
  IF %REQ LE 0 THEN
  If %req le 0 then
STOP
  Stop
  END IF
  End if  
   
%rc = $FunImg( %req, %image:ITEM )  
%RC = $FunImg( %REQ, %IMAGE:ITEM )
</p>
</p>
starts an unload request and then returns the first record into image 'IMAGE', starting at item 'ITEM' in the image. If the record is shorter than the rest of the image (starting at 'ITEM'), then only as much data as is in the ''[[Fast/Unload]]'' record is used to overlay the image. All other data in the image is left unchanged. If the record is longer than the rest of the image, the record is truncated before overlaying the image. In all cases, when %RC is positive, it contains the length of the original ''[[Fast/Unload]]'' record.<p>
 
If the record is shorter than the rest of the image (starting at <code>ITEM</code>), then only as much data as is in the <var class="product">Fast/Unload</var> record is used to overlay the image. All other data in the image is left unchanged. If the record is longer than the rest of the image, the record is truncated before overlaying the image. In all cases, when <var class="term">%rc</var> is positive, it contains the length of the original <var class="product">Fast/Unload</var> record.<p>


==Products authorizing {{PAGENAMEE}}==  
==Products authorizing {{PAGENAMEE}}==  
<ul class="smallAndTightList">
<ul class="smallAndTightList">
<li>[[Fast/Unload User Language Interface]]
<li>[[Fast/Unload SOUL Interface]]
</ul>
</ul>
</p>
<p>
</p>


[[Category:$Functions|$FunImg]]
[[Category:$Functions|$FunImg]]
[[Category:Fast/Unload User Language Interface]]
[[Category:Fast/Unload SOUL Interface]]

Latest revision as of 19:47, 16 March 2015

Retrieve data from active Fast/Unload request into image

This retrieves data from an active Fast/Unload request into an image.

The first argument is the request identifier returned by $FunLoad for the request from which data is to be retrieved. This is a required argument.

The second argument is the image item to which data is to be returned. Data is returned starting at that image item and continuing to the end of the image or until no more Fast/Unload data is available in the current record.

Syntax

%result = $FunImg(req_num, image_item)

%result is set to either of these:

  • The number of bytes returned
  • An error code if no data was returned:

    >0 - Number of bytes in unloaded record 0 — Fast/Unload completed with return code 0; no more data -1 — Request not found -2 — Invalid image item <-2 — Fast/Unload completed with non-zero return code, and value returned is negative of return code; no more data

Usage notes

  • If Fast/Unload has not unloaded any records yet, $FunImg waits for the first record. Each invocation of $FunImg skips over the record processed, so the next invocation retrieves the next unloaded record.
  • $FunImg calls can be mixed with $FunSkip and $FunsStr calls for the same request. In addition, multiple unloads can be performed simultaneously with $FunImg calls for the different requests mixed freely.

Example

This fragment starts an unload request and then returns the first record into image IMAGE, starting at item ITEM in the image:

%req = $FunLoad('DATA', , , '*') If %req le 0 then Stop End if %rc = $FunImg( %req, %image:ITEM )

If the record is shorter than the rest of the image (starting at ITEM), then only as much data as is in the Fast/Unload record is used to overlay the image. All other data in the image is left unchanged. If the record is longer than the rest of the image, the record is truncated before overlaying the image. In all cases, when %rc is positive, it contains the length of the original Fast/Unload record.

Products authorizing $FunImg