![]() ![]() |
Reference Type: Supported, Category: KIDS, ICR#: 2172
The UPDATE^XPDID API updates the KIDS progress bar to show the percentage complete for the installation of the current number of items specified (i.e., n input parameter).
Update^XPDID(n)
Make sure to perform the following steps before calling this API:
XPDIDTOT: | (required) This variable is the total number of items that are being updated. |
n: | (required) The current number of items being updated. |
none. |
|
If you are converting 100 records and want to update the user every time you have completed 10% of the records you would do the following:
>Set XPDIDTOT=100 >F%=1:1:100 D CONVERT I'(%#10) D UPDATE^XPDID(%) |