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

PSO707P.m

Go to the documentation of this file.
  1. PSO707P ;ORLFO/FJF/WC - post install ; Mar 20, 2023@12:57:56
  1. ;;7.0;OUTPATIENT PHARMACY;**707**;DEC 1997;Build 18
  1. ;
  1. ; External calls:
  1. ;
  1. ; Description ICR Notes
  1. ; ----------- ------ -------
  1. ; Reference to NEW PERSON (#200) file (reads) in #10060
  1. ; Reference to OPTION (#19) file (reads) in #2246
  1. ; Reference to FIND1^DIC in #2051
  1. ; Reference to CREATE^XUSAP in #4677
  1. ; Reference to UPDATE^DIE in #2053
  1. ; Reference to BMES^XPDUTL in #10141
  1. ;
  1. ; Post Install routine for patch PSO*7.0*707
  1. ;
  1. POST ; Update Proxy user with CRMS secondary menu option context
  1. ;
  1. N FDA,ERR,OIEN,IEN,PSOA
  1. S PSOA=$$CREATE^XUSAP("PSOVCC,APPLICATION PROXY","","PSO WEB CHART")
  1. ; USER found:
  1. I +PSOA'<0 D
  1. . S IEN=$$FIND1^DIC(200,,"M","PSOVCC,APPLICATION PROXY")
  1. . S OIEN=$$FIND1^DIC(19,,"M","PSO WEB CHART")
  1. . I $D(^VA(200,IEN,203,"B",OIEN)) Q ; check for existence, Quit if found
  1. . S FDA(200.03,"+1,"_IEN_",",.01)=OIEN ; add if needed
  1. . D UPDATE^DIE("","FDA",,"ERR")
  1. . I '$D(ERR) D BMES^XPDUTL("Proxy user updated successfully.") Q
  1. . I $D(ERR) D
  1. . . D BMES^XPDUTL("***********************")
  1. . . D BMES^XPDUTL("Proxy user not updated.")
  1. . . D BMES^XPDUTL("***********************")
  1. ; User not found:
  1. I +PSOA<0 D
  1. . D BMES^XPDUTL("*************************************")
  1. . D BMES^XPDUTL("APPLICATION PROXY USER not created.")
  1. . D BMES^XPDUTL("Please contact the Service Desk.")
  1. . D BMES^XPDUTL("*************************************")
  1. Q