Home   Package List   Routine Alphabetical List   Global Alphabetical List   FileMan Files List   FileMan Sub-Files List   Package Component Lists   Package-Namespace Mapping  
Routine: ABSPOSN8

ABSPOSN8.m

Go to the documentation of this file.
  1. ABSPOSN8 ; IHS/FCS/DRS - NCPDP Fms F ILC A/R ; [ 09/12/2002 10:17 AM ]
  1. ;;1.0;PHARMACY POINT OF SALE;**3**;JUN 21, 2001;Build 38
  1. ;--------------------------------------------------------------------
  1. ; Calculate payments F billing ITEM.
  1. ;
  1. ; Inputs: BITEMIEN - Billing ITEM internal entry number.
  1. ;
  1. ; Returns: TotPay - Total of payments.
  1. ;--------------------------------------------------------------------
  1. PAYINFO(BITEMIEN) ;
  1. N TOTPAY,J
  1. ;
  1. Q:$G(BITEMIEN)="" 0
  1. ;
  1. ; Loop through the payment multiple of the billing ITEMs file.
  1. S (TOTPAY,J)=0
  1. F S J=$O(^ABSBITMS(9002302,BITEMIEN,7,J)) Q:'J D
  1. . S TOTPAY=TOTPAY+$P($G(^ABSBITMS(9002302,BITEMIEN,7,J,0)),U,2)
  1. ;
  1. Q TOTPAY